‎2006 Mar 01 2:17 AM
Hi,
Does the function SAVE_TEXT write the header and text into the STXL and STXH tables? If not, can someone please explain in detail what this function does.
Thank you.
‎2006 Mar 01 2:20 AM
‎2006 Mar 01 2:20 AM
‎2006 Mar 01 2:24 AM
>>Does the function SAVE_TEXT write the header and text into the STXL and STXH tables?
YES. Pl note that these are Database Clusters. To retrieve the saved text, you should use the READ_TEXT function module.
Regards,
Suresh Datti
‎2006 Mar 01 2:29 AM
Hi Fong
CALL FUNCTION SAVE_TEXT EXPORTING* CLIENT = SY-MANDT HEADER = GW_THEAD* INSERT = * SAVEMODE_DIRECT = * OWNER_SPECIFIED = * LOCAL_CAT = * IMPORTING* FUNCTION =* NEWHEADER = TABLES LINES = IT_LINE EXCEPTIONS ID = 1 LANGUAGE = 2 NAME = 3 OBJECT = 4 OTHERS = 5
will save the header and the text in STXH>header and STXL>line tables. you can even check it in SO10.
the main functional is To load long text into SAP
regards
kishore
‎2006 Mar 01 3:38 AM
‎2006 Mar 01 3:50 AM
‎2006 Mar 01 4:01 AM
S, it writes in both the tables, header and item.
infact there is a parameter header in that.
The function module writes a text module to the text file or text memory, depending on the specific text object.
‎2006 Mar 01 5:31 AM
Thank you everyone.
I wanted to verify exactly what the function does.
If I have questions regarding usage, then I will start a new thread.