ABAP Program using Dynamic Selection Screen
ABAP Program consists of the selection screen, which changes based on the user click on a radio button. The entire...
ABAP Program consists of the selection screen, which changes based on the user click on a radio button. The entire...
ALV Programs Explained ALV (ABAP List Viewer) Programs are very easy to write when you know few basic facts about...
SAP Utility Programs Gentran IDoc Data Definition File Generation Tool - Gentran’s mapping tool maps 1 structure to another structure....
*&---------------------------------------------------------------------* *& Report Z_OBJECT_TRACKER * *& Author :Swarna.S. *&---------------------------------------------------------------------* *& *& AS: *& Simple ALV report -- Details of Y...
*&-----------------------------------------------------------------------------------------------------------------------* *& Report ZINFOTYPE * *& Author : Swarna.S * *&-----------------------------------------------------------------------------------------------------------------------* *& * *& AS: This program lists all the...
REPORT ZSOURCE2801. * Including OLE types INCLUDE OLE2INCL. * Tables and variables for later use TABLES: CUSTOMERS. DATA: APPLICATION TYPE...
REPORT ZSOURCE2603. * Data declarations for later use PARAMETERS FILENAME(128) DEFAULT 'c:\users\default\testfile.dat' LOWER CASE. TABLES CUSTOMERS. DATA ALL_CUSTOMERS LIKE CUSTOMERS...
REPORT ZSOURCE2602. * Data declarations for later use TABLES CUSTOMERS. PARAMETERS FILENAME(128) DEFAULT '/usr/tmp/testfile.dat' LOWER CASE. DATA: MSG_TEXT(50), ALL_CUSTOMER_NAMES LIKE...
REPORT ZSOURCE2402. DATA: EXTERNAL_RECORD(4000), POSITION TYPE I, LENGTH TYPE N. FIELD-SYMBOLS < ENTRY>. EXTERNAL_RECORD = '0005Smith0007Edwards0005Young'. DO. LENGTH = EXTERNAL_RECORD+POSITION(4)....
Here the two programs which are calling dynamically. REPORT ZSOURCE2309. PERFORM EXTFORM IN PROGRAM ZSOURCE2310 USING 'CALL_BACK_FORM' SY-CPROG. FORM CALL_BACK_FORM....