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

text element

Former Member
0 Likes
1,029

where i can use text element?pllz tell

11 REPLIES 11
Read only

Former Member
0 Likes
972

Hi Srinath,

Refer this link for info on text elements.

http://help.sap.com/saphelp_nw70/helpdata/en/e3/960a1aeb0711d194d100a0c94260a5/frameset.htm

<REMOVED BY MODERATOR>

Regards,

Mandeep

Edited by: Alvaro Tejada Galindo on Feb 13, 2008 5:33 PM

Read only

Former Member
0 Likes
972

Hi,

You can use text elemts in Programs,Smart Forms & scripts.

What is your actual requirement?

Thanks,

Surya

Read only

0 Likes
972

what is the use of text element in a report and how we can create plzz tell surya?

Read only

Former Member
0 Likes
972

HI

we can use text elements in writing the report.

open SE38

goto-->text elements

we can find 3 options

1.list headings

2.selection texts

3.text symbols

list heading is used to write the field names in out put screen

selection text can be used to display the text for selection screen field

text symbol is used to hold some text

eg 100 : slaes order details for the sales order 4970

we can use this 100 in our coding like

write : text-100.

<REMOVED BY MODERATOR>

regards

Hemasekhara Reddy S

Edited by: Alvaro Tejada Galindo on Feb 13, 2008 5:34 PM

Read only

Former Member
0 Likes
972

hi

good

check the below links, hope you will get some idea

http://help.sap.com/saphelp_nw04/helpdata/en/e3/9609f6eb0711d194d100a0c94260a5/content.htm

thanks

mrutyun^

Read only

Former Member
0 Likes
972

HI.

Goto menu bar GOTO-TEXT ELEMENT - and TEXT SYMBOL

and give 3 digit number and save it.

call this text element like text-000 as ur requiemnt .

Eg

WRITE: TEXT-000,

/TEXT-001.

<REMOVED BY MODERATOR>

regards.

Jay

Edited by: Jay on Feb 13, 2008 5:31 PM

Edited by: Alvaro Tejada Galindo on Feb 13, 2008 5:35 PM

Read only

Former Member
0 Likes
972

Text elements are used where you want to use a text which apeears again and again

it can be screen elements

it can be message

the text is stored with a unique name

and accessing this unique name you can access the text

this is text elements

Read only

Former Member
0 Likes
972

Hi,

here is the answer for your Q.

following are the ways we can use text lements.

1. suppose if you want give the title for each block in the selection screen we can done through text element.

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

SELECT-OPTIONS: so_qmnum FOR qmel-qmnum OBLIGATORY.

SELECTION-SCREEN END OF BLOCK b1.

so by double click on above text-001, you can give the title what ever you want.

2. suppose if you want to provide text for radio button or check box can be done through text lements.

SELECTION-SCREEN: BEGIN OF LINE.

PARAMETERS: p_test RADIOBUTTON GROUP rad1 DEFAULT 'X'

USER-COMMAND test.

SELECTION-SCREEN: COMMENT (30) text-003 FOR FIELD p_test.

SELECTION-SCREEN: END OF LINE.

reward if helpful.

Regards

Venkat

Read only

Former Member
0 Likes
972

Maintaining Text Elements in your program are mandatory,when You perform an Extended Program Check,if you have not maintained text elements in your program,it would give you error.

Read only

Former Member
0 Likes
972

Instead of hard code values, we can use TEXT elts to support Multi languages

Reward if useful

Edited by: Narendra Maddipati on Feb 14, 2008 8:05 AM

Read only

Former Member
0 Likes
972

Hi

Text element maintenance is a tool in the ABAP Workbench that makes it easier to maintain program texts in different languages. Any text that a program displays on the screen can be maintained as a text element.

http://help.sap.com/saphelp_nw04/helpdata/en/e3/9609f6eb0711d194d100a0c94260a5/content.htm