Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

table for SAVE_TEXT function module

Former Member
0 Likes
3,599

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,

6 REPLIES 6
Read only

Former Member
0 Likes
2,128

Again... analyse the function and look through the form routines. The table names are in it.

Read only

0 Likes
2,128

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???

Read only

0 Likes
2,128

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

Read only

0 Likes
2,128

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

Read only

Former Member
0 Likes
2,128

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

Read only

Former Member
0 Likes
2,128

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