‎2010 Jan 21 10:20 AM
Hi,
I used the function module SAVE_TEXT and it works fine. Now my problem is i want to see the text which i have saved, which table holds the text.
Thanks,
‎2010 Jan 21 10:21 AM
Again... analyse the function and look through the form routines. The table names are in it.
‎2010 Jan 21 10:25 AM
Hi Mean,
I saw the source code of the function module SAVE_TEXT... there they mentioned STXH and STXL... those tables contain the object, name, id and cluster alone there is no field which is maintaining for text. I entered a text called "Testing for the SAP Script" using the save_function module....... in which table i can see the text???
‎2010 Jan 21 10:29 AM
The text is in the cluster table STXL (and STXB for non sapscript), not readable with human eyes on transaction SE16n or such tool, it's ITF format in a Cluster storage (so [IMPORT|http://help.sap.com/abapdocu_70/en/ABAPIMPORT_DATA_CLUSTER.htm] [FROM DATABASE|http://help.sap.com/abapdocu_70/en/ABAPIMPORT_MEDIUM.htm#!ABAP_ALTERNATIVE_4@4@] statements) . (read [Storing Text Components|http://help.sap.com/saphelp_nw70/helpdata/en/d6/0db668494511d182b70000e829fbfe/content.htm])
NB: There are sap FM like [READ_TEXT|http://help.sap.com/saphelp_nw70/helpdata/en/d6/0db8c8494511d182b70000e829fbfe/frameset.htm] to manage text data, look at [SAPscript Function Modules|http://help.sap.com/saphelp_nw70/helpdata/en/d6/0db8bb494511d182b70000e829fbfe/frameset.htm]
Regards,
Raymond
‎2010 Jan 21 11:04 AM
so we can't able to see the text which i have saved using save_text FM right???
Thanks you guys for your kind informations
‎2010 Jan 21 10:25 AM
If you wouldnt want to take much pain, use READ_TEXT FM for the same text id and object to find what values you saved using SAVE_TEXT else check the tables STXH and STXL
Vikranth
‎2010 Jan 21 10:41 AM
Hi,
The best solution is to use READ_TEXT Function module to get the content with the same id and obj name which you had given for SAVE_TEXT