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: 

Purpose of Transaction SO10

Former Member

What is the Purpose of Transaction So10, hw to use that, and what we do in that, and where we use that…?

Kindly let me know…

Akshitha.

7 REPLIES 7

sharat_chandra
Active Participant

Hi,

SO10 is used to create Standard texts for use in SAP scripts. This basically permits reusability of standard texts across many SAP scripts.

These also can be defined in different languages & can be used by specifying the language option in a SAP script.

Regards,

Sharat

Former Member

hi Akshitha,

SO10 is used to create Standard Texts.. you can use them in SAPSCRIPT via the command INCLUDE.

you use this tcode for standard text uploading.

On smartforms you inlcude the text into the window, table or whereever.

On SapScript on the command line you include the text like this:

INCLUDE OBJECT TEXT ID ST.

SAPscript supports authorization checks only for standard texts. These are texts with the text object TEXT, which are edited using transaction SO10. To call this transaction, choose Tools ® Word processing ® Standard text.

For more information check the following link:

http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db682494511d182b70000e829fbfe/frameset.htm

~~Guduri

Former Member

Hi,

SO10 is for creating the standard texts,

To create the stanmdard texts, just goto SO10 then give a name then press the create button, then write the text in the line editor then SAVE it

then you can use these text in SE71(SAPSCRIPTS) using INLUCDE statment, as well as you can use these in the Programs using the READ_TEXT function module

Regards

Sudheer

0 Kudos

for Read _text Fm like the below

CALL FUNCTION 'READ_TEXT'

EXPORTING

  • CLIENT = SY-MANDT

id =

language =

name =

object =

  • ARCHIVE_HANDLE = 0

  • LOCAL_CAT = ' '

  • IMPORTING

  • HEADER =

tables

lines =

  • EXCEPTIONS

  • ID = 1

  • LANGUAGE = 2

  • NAME = 3

  • NOT_FOUND = 4

  • OBJECT = 5

  • REFERENCE_CHECK = 6

  • WRONG_ACCESS_TO_ARCHIVE = 7

  • OTHERS = 8

.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Kindly let me know what are all the parameters we have to enter? what are they?

Akshtiha.

Former Member

Hi

It's to create/update or delete the standard texts.

It can create them in order to print a fixed texts.

Max

Former Member

Hi

refer to this:

/people/alvaro.tejadagalindo/blog/2007/04/28/tasting-the-mix-of-php-and-sap--volume-13

Regards

Ravish

Former Member

Hi,

SO10 is used to create Standard Texts.

1. First create the standard texts what u required by going SO10 Tcode.

2. Go to SE 10 Tcode select modify then click on display button.

3. Double click on your CTS no then click on change button pass the required standard text parameters.

R3TR <Standard text name> < object id> < language>

Ex: R3TR znlatit ST E

u can pass upto 25 standard text in this way.

Or

Create manual cts and attach all the standard texts to the cts and then realease the cts.

4. Now u can transport along with the layout itself.

Reward points if useful.

Thanks & Regards,

Vasudeva Rao.