Convert String to Table ABAP in SAP

Convert STRING to table ABAP with using function module SO_STRING_TO_TAB useful when you need to create email in ABAP program. Because for creating HTML document with using, for example cl_document_bcs=>create_document you need to send internal table with table type ABAP SOLI_TAB (rows for this type table SOLI).

Example of convert string to table ABAP in SAP

Transfer string to internal table SAP ABAP with using SO_STRING_TO_TAB before creating email in ABAP program SAP. In method cl_document_bcs=>create_document you need to send internal table ABAP with table type ABAP SOLI_TAB (rows for this type table SOLI).

Parameters function module SO_STRING_TO_TAB SAP ABAP

The input is a string variable. The output is an internal table ABAP with rows type SOLI:

Leave a Reply