Hello,

Sign up to join our community!

Welcome Back,

Please sign in to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

ABAP

ABAP Programming

Share
Followers
2 Answers
109 Questions

SAP EWM Help Latest Questions

  • 0
DPM125
Beginner

Dynamic Internal Tables are tables created at RUN TIME Using Field Symbols. It’s useful in creating a program where you don’t know name of table till run time. In other words, it’s very useful in creating Dynamic Programs. Dynamic internal tables can ...

  • 0
DPM125

Aspect Enhancement 🚀 (Safe) Modification ⚠️ (Risky) Definition Extend standard SAP without changing its code Change SAP standard code directly Upgrade Impact Upgrade-safe ✅ Upgrade issues ❌ (need rework) Where Used User Exits, BAdIs, Enhancements Direct changes in SAP standard objects Maintainability Easy to maintain Hard to maintain Example Add custom field validation Change standard pricing logic ...

  • 0
DPM125
Beginner

An include is a code fragment stored separately and inserted into a program using the INCLUDE statement. It’s mainly used to split a large program into manageable blocks.  When to use: To split large programs into smaller reusable blocks. Often used for reusable ...

  • 0
DPM125
Beginner

SAP’s XCO Library provides APIs for working with Office documents, including Excel (XLSX) — via the xco_cp_xlsx package   CLASS zcl_read_employee_excel DEFINITION PUBLIC FINAL CREATE PUBLIC. PUBLIC SECTION. METHODS read_employee_excel. ENDCLASS. CLASS zcl_read_employee_excel IMPLEMENTATION. METHOD read_employee_excel. “————————————————— ” Step 1: Define employee structure and table “—————————————————