0% found this document useful (0 votes)
1K views4 pages

Sap Abap Module Pool Programming

The document discusses 4 SQL statements (insert, update, modify, delete) and their usage for database tables and internal tables. It also mentions chain and endchain for field validation, subscreens that can be called from normal screens with a maximum of 6 subscreen areas per screen.

Uploaded by

Sap Abap
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
1K views4 pages

Sap Abap Module Pool Programming

The document discusses 4 SQL statements (insert, update, modify, delete) and their usage for database tables and internal tables. It also mentions chain and endchain for field validation, subscreens that can be called from normal screens with a maximum of 6 subscreen areas per screen.

Uploaded by

Sap Abap
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 4

Flow logic has 4 events :

1. 2. 3. 4. Process before output Process after input Process on value request Process on help request

Open SQL Statements:


We have 4 sql statements.

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

Now the two N records will be deleted.

Sql statements for INTERNAL TABLE :

INSERT :

Now at 3rd position the WA is inserted.

MODIFY :

Now 3rd position is updated with 102 ert h

DELETE :

Now 2 records will be deleted.

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

You might also like