Update Valid Grades for Positions
I am trying to use the following API to update the valid grades on a position. I am getting error that I am missing mandatory arguments.
Not sure what is missing from this...
per_vgr_ins.INS
(
p_validate => TRUE
,p_valid_grade_id => v_new_grade_id
,p_effective_date => TO_DATE('17-JUN-2017', 'DD-MON-YYYY') --trunc(sysdate)
,p_position_id => v_position_id
,p_business_group_id => 2
,p_date_from => TO_DATE('17-JUN-2017', 'DD-MON-YYYY')
,p_date_to => TO_DATE('31-DEC-4712', 'DD-MON-YYYY')
,p_object_version_number => v_object_version_number
);
Thanks in advance!
Gwen