cancel
Showing results for 
Search instead for 
Did you mean: 

Standard texts in a script or smartform

Former Member
0 Kudos

Moved to correct forum.

If I have a script or smartform, how do i check what are the standard texts it is calling? Is there a database table or a transaction through which I can check the same.

Thanks in advance,

Ashwini

Edited by: Matt on Mar 11, 2009 10:46 AM

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

Standard Texts are created in SO10 Tcode and stored in STXH table with OBject ,ID and NAME parameters. We can use Read_Text FM to read the text.

check the tables STXH & STXL.

Regards,

Joan

Former Member
0 Kudos

I dont think my question was clear enough... I have a script XYZ that contains 'n' number of standard texts. Now i want to know the standard text names present in that script.

Former Member
0 Kudos

Hi

if you talking about a sap script you can download the script with prog RSTXSCRP.

Open it with notepad and do a searcg for INCLUDE

if you are talking about a smartform then also download to an XML

Open it wtih notepad and seacrch for

</TEXT_AREA>

some fields further oyu have an field named <NAME>TESTTESTETST</NAME>

in this exmaple the textname is TESTTESTTETST

hope this is what you want.

Gr., Frank

Former Member
0 Kudos

Hi,

Smartforms:

You can find the text names all of included texts, if you search in the generated function module (In main program) for "TEXTKEY-NAME".

But if it is a variable, you still have to investigate the form and print program, so find out the correct text id.

SAP script:

Search in form info after "INCLUDE".

Regards

Åsa Thenstedt

Former Member
0 Kudos

Hi,

Find the below Link

Hope this helps you.

Regards,

Anki Reddy

Former Member
0 Kudos

A much simpler way to reach the code of smartform is:

copy the fm name to se38

it would be something like \xxx\SFxxx

so modify it like

\xxx\LSFxxxF01

notice the addition of L and F01

now open in se38 u'll have entire code of smartform

кu03B1ятu03B9к

Edited by: kartik tarla on Mar 11, 2009 1:29 PM

Former Member
0 Kudos

hi,

Do the following:

1. take function module name of the smartform.

2. goto se37 and type that fm name.

3. goto attributes tab

4. double click on either program or include .

5. There u can find all the subroutines used inside smartform.

6. search for "perform %move using %textkey-name".

Hope it helps!

Former Member
0 Kudos

Hi Ashwini

Try these tables.These will give you details about the texts in SMARTFORMS.

STXFADMT:Smart Forms: Administration - Textual Description
STXFTXT    : SAP Smart Forms: Texts
STXFTXTV  : SAP Smart Forms: Texts - Versions

OR

Go to the function module generated for the smartform and search with a suitable search criteria so that you would get all the standard text names used in the particular smartform.

Regards

Hareesh Menon

Edited by: Hareesh Menon on Mar 11, 2009 8:46 AM

Former Member
0 Kudos

>

> Go to the function module generated for the smartform and search with a suitable search criteria so that you would get all the standard text names used in the particular smartform.

Correction!

Inside the function module u need to double click onto some subroutine which will take u to the code where u can search the standard texts by searching with keyword "include"

кu03B1ятu03B9к