Hi Experts
I use a FM 'RP_FILL_WAGE_TYPE_TABLE_EXT' and fill the table PPBWLA with values.
Now I want to move some values from this table to a string.
First I loop my PPBWLA table.
Then I have a check if it is the right line.
Then I Move the value to my string.
Loop at wa_table.
if wa_table-lgart eq '1003'.
move wa_table-betrg to wa_file+57.
endif.
endloop.
I have the value in wa_table-betrg, but nothing will be moved to wa_file+57.
Anyone who have a solution?
Grateful for your help // Peter B