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

Report

former_member630092
Participant
0 Likes
447

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.

1 ACCEPTED SOLUTION
Read only

mohammed_moqeeth
Active Participant
0 Likes
419

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>

4 REPLIES 4
Read only

Former Member
0 Likes
419

Hi,

001 is the text element..

In se38 editor --> Menu bar --> In GOTO option u will find text elements.

Regards,

Read only

mohammed_moqeeth
Active Participant
0 Likes
420

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>

Read only

Former Member
0 Likes
419

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

Read only

former_member630092
Participant
0 Likes
419

Answered