Dear Folks,
Recently we have faced issue in Vertex monthly data upgrade where the program "Quantum Data Update installer" had failed with below error.
LOCATION py3vntsetup:2
APP-PAY-06882: Assertion failure detected at location py3vntsetup:2.
Cause: an internal error has occurred at location py3vntsetup:2.
Action: please contact your Oracle customer representative.
Work Around
+++++++++++
1) Check TAX_DATA & TAX_LIBRARIES paths ,if they are pointing to the wrong path.
SQL> select * from pay_action_parameters where parameter_name like 'TAX%';
PARAMETER_NAME
----------------------------------------------------------------------
PARAMETER_VALUE
--------------------------------------------------------------------------------
TAX_DATA
/u01/app/appki/****/apps/apps_st/appl/pay/12.0.0/vendor/quantum/data
TAX_LIBRARIES
/u01/app/***/******/apps/apps_st/appl/pay/12.0.0/vendor/quantum/lib
From Above, TAX_LIBRARIES path pointed to the production. Hence we've corrected it to right path.
SQL> update pay_action_parameters set parameter_value = '/u01/app/***/*****/apps/apps_st/appl/pay/12.0.0/vendor/quantum/lib' where parameter_name = 'TAX_LIBRARIES';
1 row updated.
SQL> commit;
Commit complete.
Recently we have faced issue in Vertex monthly data upgrade where the program "Quantum Data Update installer" had failed with below error.
LOCATION py3vntsetup:2
APP-PAY-06882: Assertion failure detected at location py3vntsetup:2.
Cause: an internal error has occurred at location py3vntsetup:2.
Action: please contact your Oracle customer representative.
Work Around
+++++++++++
1) Check TAX_DATA & TAX_LIBRARIES paths ,if they are pointing to the wrong path.
SQL> select * from pay_action_parameters where parameter_name like 'TAX%';
PARAMETER_NAME
----------------------------------------------------------------------
PARAMETER_VALUE
--------------------------------------------------------------------------------
TAX_DATA
/u01/app/appki/****/apps/apps_st/appl/pay/12.0.0/vendor/quantum/data
TAX_LIBRARIES
/u01/app/***/******/apps/apps_st/appl/pay/12.0.0/vendor/quantum/lib
From Above, TAX_LIBRARIES path pointed to the production. Hence we've corrected it to right path.
SQL> update pay_action_parameters set parameter_value = '/u01/app/***/*****/apps/apps_st/appl/pay/12.0.0/vendor/quantum/lib' where parameter_name = 'TAX_LIBRARIES';
1 row updated.
SQL> commit;
Commit complete.
2) Run Quantum Data Update installer program. It should be completed normal.
Thanks.
Sreeharsha