Modify statement

REPORT  Y_MODIFY_DB_TABLE.
DATA : wa_yjdemo type yjdemo.
wa_yjdemo-yactive = 'C'.
wa_yjdemo-ymatnr = '000000000000001900'.
MODIFY YJDEMO FROM wa_yjdemo.
If sy-subrc = 0.
  Write 'Table modified'.
Else.
  Write 'Table not modified'.
Endif.

Comments

Popular posts from this blog

Export data to xls using OOPS

Factory method ALV sap abap

Delete Selected Record in ALV Report