cancel
Showing results for 
Search instead for 
Did you mean: 

about text elememt

Former Member
0 Kudos

what do u mean by text element?wat is the use? where we will use?

Accepted Solutions (0)

Answers (6)

Answers (6)

Vijay
Active Contributor
0 Kudos

hi

just visit this link ...will definitely clear your ideas regarding text elements.

http://sap.mis.cmich.edu/sap-abap/abap05/sld019.htm

regards

vijay

<b>please reward pts if helpful</b>

Former Member
0 Kudos

Hi,

In se38 open your code , Goto -> text elements Tab, you can see 3 optios.

<b>Selection text</b> --- text dispalyed for ur selection screen fileds

<b>text symbols</b> --- any text you want to display in the output you can declare here.

it can be accessed by text-xxx . eg write:/ text-002.

The advantage of text elements are that they are automatically converted into log on language which you can't achieve by hardcoded text

0 Kudos

HI,

Text elements are used for Labels, etc, SInce they can be translated into multiple languages its useful.

SInce you want your screen labels etc changes as per the logon language you need to use Text elements rather than HARDCODING the labels.

<b>Note that SDN awards you 1 point if you reward good answers.</b>

Regards,

Sesh

Former Member
0 Kudos

Hi Sandeep,

Are you rewarding the Useful answers as per SDN methodology?

Text elements are used to write the relavent data in Scripts

in the program we call the fun module

CALL FUNCTION WRITE_FORM USING 'WINDOW1' '501'

now in the script goto the window WINDOW1 and write the text elements like

/E 501

/ &ITAB-KUNNR&,, &ITAB-NAME&

So from program this text element is called and data is printed

<b>Reward points for useful Answers</b>

Regards

Anji

Pawan_Kesari
Active Contributor
0 Kudos

text elements are texts which are language dependent.

For example word 'Material' in english will be different in other languages...

text elements are used while displaying anything which is language dependent.. for example messages, table headers, report header

former_member181962
Active Contributor
0 Kudos