Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Payroll driver pgm

Former Member
0 Kudos

Hi,

I got a requirement to create a new payroll driver program for Columbia counrty, for which i copied RPCALCX0(International driver program) into a "Z" program.

I changed MOLGA(99-International) to Molga(38-Columbia).

This is declared in the global variables before any event gets triggered.

During the exceution of the report in debugging mode Molga is still 99 where in it has to be 38. Can you plz let me know where i have to change the molga??

Thanks & Regards

Sharath..

1 REPLY 1

LucianoBentiveg
Active Contributor
0 Kudos

You must replace include RPCINIX9 for ZRPCINIX9 and put this:

FORM INIT_PARAMS-NATIO.

CALCMOLGA = '38'.

ENDFORM.

FORM INIT-NATIO. " Initialisierung der steuerl. Freibetraege.

ENDFORM.

Reward points if helps.