2006 Sep 23 10:19 AM
Hi All..
I have a code as follows..
value2-key = 'Incomplete Information'.
APPEND value2 TO it_rejcode.
value2-key = 'Processing Error'.
APPEND value2 TO it_rejcode.
Now need to know about HOW TO PASS the Text ('Incomplete Information') through Text Elements..???
If i use the code as it is, it shows Error in Code Inspector..
Hence need to tune up the Performance of the code by avoiding such Text in the Editor.
Please Help me out....
2006 Sep 23 10:32 AM
Hi
The right code is like this:
value2-key = text-001. (Text element 001)
APPEND value2 TO it_rejcode.
value2-key = text-002. (Text element 001)
APPEND value2 TO it_rejcode.
Where text elements:
text-001 = Incomplete Information
text-002 = Processing Error
If you want to leave the descriptions in the abap code you can write:
value2-key = 'Incomplete Information'(001).
APPEND value2 TO it_rejcode.
value2-key = 'Processing Error'(002).
APPEND value2 TO it_rejcode.
Do a doubleclick on 001 and 002 and the system'll create the text elements 001 and 002.
Max
2006 Sep 23 10:32 AM
Hi
The right code is like this:
value2-key = text-001. (Text element 001)
APPEND value2 TO it_rejcode.
value2-key = text-002. (Text element 001)
APPEND value2 TO it_rejcode.
Where text elements:
text-001 = Incomplete Information
text-002 = Processing Error
If you want to leave the descriptions in the abap code you can write:
value2-key = 'Incomplete Information'(001).
APPEND value2 TO it_rejcode.
value2-key = 'Processing Error'(002).
APPEND value2 TO it_rejcode.
Do a doubleclick on 001 and 002 and the system'll create the text elements 001 and 002.
Max