Code: Alles auswählen.
*$*$ begin of routine - insert your code only below this line *-*
case source_fields-lifnr.
when '2000000'.
RESULT = '1234'.
when '1000000'.
result = '4321'.
endcase.
*$*$ end of routine - insert your code only before this line *-*
Code: Alles auswählen.
Deklarationsteil:
DATA: liefnr TYPE /BI0/OILIEFNR
Implementierungsteil:
IF liefnr EQ '1234567123'.
liefnr = '3217654321'.
ENDIF.
...
Code: Alles auswählen.
replace all occuruances of '123' in liefnr with '321'.