Friday, June 5, 2020
API to delete Employee Positions in Oracle Apps R12 – HR_POSITION_API.DELETE_POSITION
API: HR_POSITION_API.DELETE_POSITION
Tested Instance: R12.2.4
Table Name: PER_ALL_POSITIONS
FYR:
Create Position Script - http://www.shareoracleapps.com/2018/03/api-to-create-employee-positions-in-oracle-apps-hrpositionapi.html
Update Position Script -http://www.shareoracleapps.com/2020/06/api-to-update-employee-positions-in-oracle-apps-r12-hrpositionapi-updateposition.html
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;
Do you think this Article is useful?
Subscribe to:
Post Comments (Atom)
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.
0 Responses to “API to delete Employee Positions in Oracle Apps R12 – HR_POSITION_API.DELETE_POSITION”
Post a Comment