Skip to Content
0
Former Member
Nov 30, 2006 at 04:13 AM

Urgent requirement: Help required

30 Views

Hi All,

I need to update the infotype 8...which has a repetitive structure....

My issue in updating the Infotype arises when i want to update the corresponding wagetypes...LGA01...LGA02...LGAnn.. with same wage amount BETRG say 100$.

I am doing..

Do 40 times varying v_lgart from wa_008-lgA01 to wa_008-lga02

varying v_lgart from wa_008-BET01 to wa_008-BET02.

index= index + 1.

if v_lgart is initial.

exit.

endif.

concatenate 'BET' index into v_betxx.

assign v_BETxx to <fs_bet>.

(When i assign to a field symbol, i will have the name of the field like ...BET01...BET02 ). I got the fields correct. But now i need to pass amounts to these fields. Please suggest me how i need to do it.

enddo.