on 2022 Jun 20 2:55 PM
Is there BAPI to read the text stored at header level of billing data.
Or Is there any BAPI through which I can enter the text and save it in header part of billing.
Can someone suggest the BAPI used for Text pl.
Hi
To Read the Header text item, you can use the following FM.
Each header item will have its own IDs
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
ID = '0002'
LANGUAGE = SY-LANGU
NAME = ' ' "Your Billing Document Invoices number
OBJECT = 'VBRK' or 'VBBK'
TABLES
LINES = TLINE
If you want to create text Use CREATE_TEXT
CALL FUNCTION 'CREATE_TEXT'
EXPORTING
CLIENT = SY-MANDT
ID = '0002'
LANGUAGE = SY-LANGU
NAME = ' ' "Your Billing Document Invoices number
OBJECT = 'VBRK' or 'VBBK'
TABLES
LINES = TLINE
and COMMIT
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
111 | |
8 | |
8 | |
6 | |
6 | |
5 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.