Invoice Details BAPI in SAP
BAPI_BILLINGDOC_GETDETAIL: Import parameters: o BILLINGDOCUMENT: 1900000020
SELECT SINGLE
|
SELECT UP TO 1 ROWS
|
||
Used to read exact record from database table.
|
|
||
To read exact record from database table we need to provide all key
fields.
|
We can read appropriate record from database table, we may not need
to provide all key fields.
|
||
This statement should be used only if all the key fields are
available.
|
|
||
How to Write:
SELECT SINGLE * FROM Table_Name INTO WA WHERE ALL KEY
FIELDS
For performance this is better than select upto statement.
|
How to Write:
SELECT * FROM Table_name INTO WA UP TO 1 ROWS WHERE ALL KEY
FIELDS/SOME FIELDS.
ENDSELECT. From effective performance this is slow. |
Comments
Post a Comment