Dears,
We have to change withholding tax table data we have wrote the following code in badi.
data: ff type rbws .
loop at i_rbkpv-h_rbws into ff.
clear te_rbws.
ff-WT_QSSHB = 150.
append ff to te_rbws.
endloop.
in this example We would like to fix base amount to 150, its adding the table te_rbws but not showing on the screen(MIRO).
Is there any problem with badi?
Regards,
FR