‎2014 Apr 10 11:45 AM
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 ?
‎2014 Apr 10 11:48 AM
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
‎2014 Apr 10 11:48 AM
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
‎2014 Apr 10 11:58 AM
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..
‎2014 Apr 10 11:59 AM
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