‎2007 Jul 03 5:33 AM
hi experts
i am writing a report and facing a problem
in this code
CASE : WRK-HDRSW.
WHEN '1'.
WRK-TITLE2 = 'PROGRAME SELECTION'(001)'.
1) what is meant by '(001) & where & hoe to write it.
‎2007 Jul 03 5:40 AM
Hi Ravi Kumar,
(001) is text element here.
You can define text element from ABAP EDITOR --> goto menu --> text elements ---> text symbols.
Please correct your code by removing single inverted comma as i given for you as below:
correct:
WRK-TITLE2 = 'PROGRAME SELECTION'<b>(001).</b>
wrong:
WRK-TITLE2 = 'PROGRAME SELECTION<b>'(001)'</b>.
I hope you got it.
<b>Please reward points for all helpful answers.
Regards,
Moqeeth.</b>
‎2007 Jul 03 5:37 AM
Hi,
001 is the text element..
In se38 editor --> Menu bar --> In GOTO option u will find text elements.
Regards,
‎2007 Jul 03 5:40 AM
Hi Ravi Kumar,
(001) is text element here.
You can define text element from ABAP EDITOR --> goto menu --> text elements ---> text symbols.
Please correct your code by removing single inverted comma as i given for you as below:
correct:
WRK-TITLE2 = 'PROGRAME SELECTION'<b>(001).</b>
wrong:
WRK-TITLE2 = 'PROGRAME SELECTION<b>'(001)'</b>.
I hope you got it.
<b>Please reward points for all helpful answers.
Regards,
Moqeeth.</b>
‎2007 Jul 03 5:41 AM
Hi,
001 is text element.
it is in the list of text elements
goto se38 --> goto --> text elements --> text symbol
or
double click on this 001 in the program statement.
Sandeep kaushik
‎2009 May 31 5:30 PM