Sap Abap Module Pool Programming
Sap Abap Module Pool Programming
1. 2. 3. 4. Process before output Process after input Process on value request Process on help request
1. Insert : insert syntax can be used for database tables and internal tables Syntax : insert WA to record Note : if the WA consists the existing key field in the database table then insert Statement will go for dump or run time error.
2. Update : update only used for DB tables Syntax : update record from WA
Note : update keyword will only update the existing records with the key fields but it Will not insert a new record 3. Modify : modify can be used for DB and IT tables Syntax : Modify record from WA
Note : Modify statement will update the record if it Is there and insert the record if It is not there. 4. Delete : delete can be used for DB and IT tables Syntax : delete record from WA
INSERT :
MODIFY :
DELETE :
CHAIN AND ENDCHAIN : Chain and endchain will be used to validate group of fields.
Subscreen : A subscreen can be called by a normal screen and subscreen cannot be called directly . Note : At max we can create 6 subscreens areas in a normal screen.Each subscreen area can call N no.of subscreens