2023 May 19 7:37 PM
I'm trying to pass the long text through the bapi 'BAPI_MATERIAL_SAVEDATA ' using a table of the structure 'BAPI_MLTX'.
It has three records in it but after executing it all three texts are coming in one line. How to make them appear in a new line?
2023 May 19 8:00 PM
Usually you have 2 fields in the text parameter, one named TDFORMAT (2 characters) and one named TDLINE (72 or 132 characters). EDIT: from this answer (question "BAPI_MATERIAL_SAVEDATA & table bapi_mltx"), the fields seem to be named FORMAT_COL and TEXT_LINE.
In TDFORMAT, try with * to start a new paragraph.
It doesn't work everywhere though. Let's see your feedback.
The SAP Library indicates all possible values (it's named ITF format, or SAPScript paragraph format).
2023 May 19 8:00 PM
Usually you have 2 fields in the text parameter, one named TDFORMAT (2 characters) and one named TDLINE (72 or 132 characters). EDIT: from this answer (question "BAPI_MATERIAL_SAVEDATA & table bapi_mltx"), the fields seem to be named FORMAT_COL and TEXT_LINE.
In TDFORMAT, try with * to start a new paragraph.
It doesn't work everywhere though. Let's see your feedback.
The SAP Library indicates all possible values (it's named ITF format, or SAPScript paragraph format).
2023 Jun 06 12:04 PM
Sorry for late reply, but you are right. This solved my problem. Thank you
2023 May 21 10:54 AM