2022 Dec 09 5:06 AM
2022 Dec 09 5:57 AM
If you mean to say - using INSERT <db-table> and UPDATE <db-table> in ABAP programs - the answer is yes.
After making yourself familiar a bit with ABAP programming concepts please use F1 help for the description of the options and syntax.
2022 Dec 09 7:17 AM
And please don't use the tags ABAP Extensibility, SAP BTP, ABAP environment, ABAP Connectivity, SAP Advantage Database Server, NW ABAP Data Archiving, SAP HANA Cloud, SAP HANA database. Those tags has nothing to do with your question. For example SE38 does'n even exist in SAP BTP, ABAP environment, so adding that tag just makes it harder to understand the question.
You also used ABAP Development and that is the only relevant tag for your question.
Good luck learning ABAP.
Kind regards
Thomas Madsen Nielsen
2022 Dec 09 7:37 AM
Hi lokareg,
Yes you can
Below is the syntax for insert & update
INSERT <db_table> FROM wa.
INSERT INTO <db_table> values wa.
UPDATE <db_table> from wa.
UPDATE <db_table> SET <field-name> = P_SALARY WHERE EMP_NO = P_EMPNO
Thanks
Tarun