Posts

Oracle HRMS API: Update Employee Assignment API

/* Formatted on 12-Mar-18 3:40:47 PM (QP5 v5.114.809.3010) */ DECLARE    l_object_version_number          NUMBER;    l_special_ceiling_step_id        NUMBER;    l_people_group_id                NUMBER;    l_soft_coding_keyflex_id         NUMBER;    l_supervisor_id                  NUMBER;    l_assg_id                        NUMBER;    l_group_name                     VARCHAR2 (200);    l_effective_start_date           DATE;    l_effective_end_date             DATE;    l_org_now_no_manager_warning     BOOLEAN;    l_other_ma...

How to - Oracle HRMS API: Create Positions API

Image
Oracle HRMS Employee Create API Script DECLARE    l_eff_start_date            date;    l_eff_end_date              date;    l_effective_date            date := SYSDATE;    l_job_id                    per_positions.job_id%TYPE;    l_pos_org_id                per_positions.position_id%TYPE;    l_validate_mode             boolean := FALSE;    l_pos_type                  fnd_lookup_values.lookup_code%TYPE;    l_avail_id                  per_shared_types.shared_type_id%TYPE;    l_fte                       number;    l_ma...