Announcements for Payroll and OTL can now be found in the Announcements - Payroll and OTL - EBS (MOSC) subcategory. Follow to be sure you don't miss a thing!
PAY: Calling skip rule (fast formula) through pl\sql block
Created on behalf of User23213 from document "calling skip rule(fast formula) though pl\sql block"
When I tried to call one skip rule though procedure PER_FORMULA_FUNCTIONS.RUN_FORMULA it is giving me the following
error.
ORA-20001: The formula QNB_SKIP_HOUSING_ALLOWANCE could not be executed because
the context ORIGINAL_ENTRY_ID was not set. All the relevant context values must
be set before a formula can be executed.
code of script is
DECLARE
L_Test_Amount CHAR;
L_Assignment_Id NUMBER := 1650;
L_Assignment_Action_Id NUMBER := NULL;
L_Payroll_Id NUMBER := 61;
L_Business_Group_Id NUMBER := 0;
When I tried to call one skip rule though procedure PER_FORMULA_FUNCTIONS.RUN_FORMULA it is giving me the following
error.
ORA-20001: The formula QNB_SKIP_HOUSING_ALLOWANCE could not be executed because
the context ORIGINAL_ENTRY_ID was not set. All the relevant context values must
be set before a formula can be executed.
code of script is
DECLARE
L_Test_Amount CHAR;
L_Assignment_Id NUMBER := 1650;
L_Assignment_Action_Id NUMBER := NULL;
L_Payroll_Id NUMBER := 61;
L_Business_Group_Id NUMBER := 0;
0