Application Development 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: 

So10 standard text where used list

emanuel_sanchez
Participant
0 Kudos

Hello All,

I have tried to find a solution in the forums, but I had no luck.

I have modified a custom text in SO10. Is there a way to find out if the text is used in several SAPscript forms? I don't think there is standard functionality to do that.

Is this information stored in any table?

Thanks in advance and regards!!!

Emanuel.

3 REPLIES 3

former_member491621
Contributor
0 Kudos

Hi Emanuel,

The standard texts are stored in table STXH.

Also, check the below link for your requirement.

http://scn.sap.com/message/9309612

Hope this helps

Former Member
0 Kudos

Hi Emanuel ,

There is no standard functionality available to find the where used list of standard texts created in SO10.

If you are looking for the where used list of standard text in sap scripts, check this link......

How to find the sap script which is calling a subroutine pool?

The code sample given in the link can be used to find standard text with slight modifications.

One more alternate way I suggest is to find where the function module 'READ_TEXT' is used and check for each hit found the text id , object, text name and language passed as parameters to the FM.

Not very logical method though but still should help to some extent.

gurunathkumar_dadamu
Active Contributor
0 Kudos

Hi Amit,

The standerd text are stored in the table STXH.

to get the texts write select query and pass the objec id and object name.

then use the READ_TEXT function module and get the text and pass the text to where you have to display.

Regards,

Gurunath Kumar