You are on page 1of 1

REM Script to undo Invoice events

REM bug number, which would be the current bug number


REM User Name in CAPS
REM Responsibility Name case sensitive

SET SERVEROUTPUT ON

DECLARE

l_file_location VARCHAR2(1000);
l_bug_no NUMBER := &l_bug_no;
l_user_name FND_USER.USER_NAME%TYPE := '&p_user_name';
l_resp_name FND_RESPONSIBILITY_TL.RESPONSIBILITY_NAME%TYPE :=
'&P_resp_name';
l_driver_table ALL_TABLES.TABLE_NAME%TYPE := '&ap_undo_invoices_table';
l_calling_sequence VARCHAR2(4000);

AP_ACCTG_DATA_FIX_PKG.Close_Log_Out_Files;

COMMIT;

EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE(SQLERRM);
END;
/

You might also like