Invoice Details BAPI in SAP
BAPI_BILLINGDOC_GETDETAIL: Import parameters: o BILLINGDOCUMENT: 1900000020
Suppose we have a requirement to show long text value in a smartforms. In this case we need to use 'Read_Text' FM. In read_text FM we need to provide some field values for: Client,ID, Language,Name,Object.
We can find out those value from our desired field. Firstly we need to go desired T-Code, I am showing one example: QA03:
Follow below steps:
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
OBJECT = 'QPRUEFLOS'
NAME = 'concatenate of Sy-mandt Insp_lot'
ID = 'QALS'
LANGUAGE = 'E'
ARCHIVE_HANDLE = 0
IMPORTING
HEADER =
TABLES
LINES = LINES
EXCEPTIONS
ID =
LANGUAGE =
NAME =
NOT_FOUND =
OBJECT =
REFERENCE_CHECK =
WRONG_ACCESS_TO_ARCHIVE =
Comments
Post a Comment