How to remember the syntax of INSERT, APPEND in SAP ABAP

When inserting records in to an Internal table using ‘INSERT’ command, please write explicitly in the query INTO TABLE ‘Internal table’ Example : SELECT contact_id contact_name contact_address FROM ztt_db_table1 INTO TABLE lt_internal_table When inserting record using APPEND, then it is always used with TO ‘Internal_table’ Example: APPEND ls_contact_details TO lt_internal_table When ‘INDEX’ is used to …

How to remember the syntax of INSERT, APPEND in SAP ABAP Read More »