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

cannot understand a variable while debugging

Former Member
0 Likes
610

Hi Abap Gurus,

I might have a stupid question for you guys but I could not really find the answer in google cause key words are used in many cases and it is different to find a proper topic.

During debugging I found the following sentence:

if ( not hd_invoice-SellerAddr is initial and not hd_invoice-TELNUM is initial ).

     Concatenate hd_invoice-SellerAddr text-303 hd_invoice-TELNUM

       into hd_invoice-SellerAddr separated by space.

   endif.

The question for me is what is the variable text-303 ? In this variable I see a wrong text that prints out incorrectly and I would like to change it. But I cannot find anywhere this variable. Is this a standard text ?

1 ACCEPTED SOLUTION
Read only

former_member223133
Active Participant
0 Likes
577

Hi,

Text-303 is a text element and you can find the text elements if you double click on it.

For report or program, you can navigate to text elements from ABAP Editor/t-code SE38 using Text Elements radio button.

Regards

Gangadhar

3 REPLIES 3
Read only

former_member223133
Active Participant
0 Likes
578

Hi,

Text-303 is a text element and you can find the text elements if you double click on it.

For report or program, you can navigate to text elements from ABAP Editor/t-code SE38 using Text Elements radio button.

Regards

Gangadhar

Read only

Former Member
0 Likes
577

Yes, Gangadhar is correct those are Text element of the program(SE38).. You can See the text present even in debugging, when you double click on TEXT-303..

Read only

anubhab
Active Participant
0 Likes
577

Hello Zhargal,

         It's basically a text element. As suggested by , you can double click on it and it will take you to the text element, or else you can open the program in SE38 and the Goto-->Text Elements-->Text Symbols. It will contain all the text symbols defined for the program. There you need to find 303 and there only you can change it as desired.

Regards,

Anubhab