Friday, June 5, 2020

API to delete Employee Positions in Oracle Apps R12 – HR_POSITION_API.DELETE_POSITION











Script:

DECLARE ln_object_version_number NUMBER; ln_position_id NUMBER; BEGIN ln_object_version_number := 7; ln_position_id := 421075; hr_position_api.delete_position ( p_validate => FALSE, p_position_id => ln_position_id, p_object_version_number => ln_object_version_number ); DBMS_OUTPUT.PUT_LINE(ln_position_id); END;

0 Responses to “API to delete Employee Positions in Oracle Apps R12 – HR_POSITION_API.DELETE_POSITION”

Post a Comment

Disclaimer

The ideas, thoughts and concepts expressed here are my own. They, in no way reflect those of my employer or any other organization/client that I am associated. The articles presented doesn't imply to any particular organization or client and are meant only for knowledge Sharing purpose. The articles can't be reproduced or copied without the Owner's knowledge or permission.