Invoice Details BAPI in SAP
BAPI_BILLINGDOC_GETDETAIL: Import parameters: o BILLINGDOCUMENT: 1900000020
UPDATE table_name
SET column1 = value1, column2 = value2...., columnN = valueN
WHERE [condition];
If anyone forget to use Where Clause then the total row will be updated.
So use Where clause with Update statement.
Delete Statement:
The Delete Statement use to delete the existing record in a table.We need to use Where Clause with Delete Statement,Otherwise all the rows would be affected.
Comments
Post a Comment