You are on page 1of 2

Absence Accrual Balance Load

Loading absence balance is often a challenge and could be very tricky. In this lesson, we have
explained how easily you can perform the absence balance conversion and that too without using
any conversion script. This convenient technique can be be adopted by a Functional consultant to
successfully load plans and plan balances. This approach will pretty much handle any kind of
scenario that you face during your implementation. Using the BEE spreadsheet functionality, this
tutorial demonstrates the strategy for loading absence balances and also shows those tasks hands
on.
Please refer the following lessons for additional help:
Excel Settings for webADI
BEE Spreadsheet Interface missing function issue
Sample Absence load extract
Absence Balance Load extract

Absence Balance Load Video Demonstration


Absence Balance Load Data Validation
Script to delete plans when setting up Standard Link
DECLARE
CURSOR C_GET_EMP IS
SELECT PEEF.ELEMENT_ENTRY_ID,
PEEF.OBJECT_VERSION_NUMBER,
PEEF.EFFECTIVE_START_DATE
FROM PAY_ELEMENT_ENTRIES_F PEEF, PAY_ELEMENT_TYPES_F PETF
WHERE PEEF.ELEMENT_TYPE_ID = PETF.ELEMENT_TYPE_ID
AND PETF.ELEMENT_NAME = XX Vacation Plan'; use your plan name here

L_OBJECT_VERSION_NUMBER NUMBER;
L_EFFECTIVE_START_DATE DATE;
P_EFFECTIVE_END_DATE DATE;
P_DELETE_WARNING BOOLEAN;
BEGIN
FOR C1 IN C_GET_EMP LOOP
PAY_ELEMENT_ENTRY_API.DELETE_ELEMENT_ENTRY(FALSE,
ZAP,
C1.EFFECTIVE_START_DATE,
C1.ELEMENT_ENTRY_ID,
C1.OBJECT_VERSION_NUMBER,
L_EFFECTIVE_START_DATE,
P_EFFECTIVE_END_DATE,
P_DELETE_WARNING);
END LOOP;
EXCEPTION WHEN OTHERS THEN
dbms_output.put_line(Error ||sqlerrm);
END;

You might also like