‎2008 Feb 13 11:25 AM
‎2008 Feb 13 11:29 AM
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
‎2008 Feb 13 11:30 AM
Hi,
You can use text elemts in Programs,Smart Forms & scripts.
What is your actual requirement?
Thanks,
Surya
‎2008 Feb 13 11:34 AM
what is the use of text element in a report and how we can create plzz tell surya?
‎2008 Feb 13 11:39 AM
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
‎2008 Feb 13 11:56 AM
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^
‎2008 Feb 13 12:00 PM
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
‎2008 Feb 13 12:09 PM
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
‎2008 Feb 14 4:29 AM
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
‎2008 Feb 14 5:01 AM
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.
‎2008 Feb 14 7:04 AM
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
‎2008 Feb 14 7:06 AM
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