SAP R/3 is based on a 3-tier client-server architecture, which separates presentation, application, and database layers. This design provides scalability, flexibility, and better performance. Three-Tier Architecture: 1. Presentation Layer (Client Tier) Interface between the user and SAP system Usually a SAP ...
SAP EWM Help Latest Questions
Aspect DDIC View (ABAP Dictionary View) CDS View (Core Data Services View) Definition Tool Created using SE11 (Graphical interface) Created using ADT (Eclipse) with SQL-like DDL syntax Technology Base Classic SAP NetWeaver Modern SAP HANA / S/4HANA Definition Style GUI-based definition (drag-and-drop style) Text-based, code-centric with annotations Join Support Basic joins (Inner, Outer) Advanced ...
1. Using SEGW (Service Gateway Builder) – Traditional Approach Transaction code: SEGW Steps: Create a new project in SEGW. Define Data Model (Entity Types & Entity Sets). Map Entities to ABAP structures/tables. Implement CRUD operations in DPC (Data Provider Class). Register and activate the service ...
A company wants to generate a Sales Order Confirmation that prints both header data (from VBAK: Sales Order Number, Customer, Date) and item details (from VBAP: Material, Description, Quantity).The business expects a simple printable document that can be given ...
A CDS view (Core Data Services view) is a virtual data model used in the SAP HANA database and ABAP environment to define semantic layers on top of database tables. It allows for modular, reusable, and optimized data access, especially ...
Using an AMDP (ABAP Managed Database Procedure) inside another AMDP can be useful in specific scenarios, especially when trying to modularize complex logic or reuse database-side procedures. However, it comes with certain considerations and limitations. Code Reusability If you have logic encapsulated ...
1. SELECTION-SCREEN BEGIN OF SCREEN As already explained, this defines a custom screen (like a subscreen or popup), which you can call dynamically using CALL SELECTION-SCREEN. SELECTION-SCREEN BEGIN OF SCREEN <screen_number> [AS SUBSCREEN|AS WINDOW] [TITLE <text>]. ... fields ...
Common Methods to Remove Leading Zeros in ABAP WRITE statement with NO-ZERO When outputting with WRITE, you can suppress leading zeros like this: code: DATA: lv_num TYPE n LENGTH 10 VALUE ‘0000123456’. WRITE lv_num NO-ZERO. ” Output: 123456 SHIFT statement You can shift the contents to the ...