pa_client_extn_inv_actions
Hi All
We want to release the draft Invoice automatically after we approve the Draft Invoice. We used the above mentioned Extension with the below code.
PROCEDURE release_invoice (
p_project_id IN NUMBER,
p_draft_invoice_num IN NUMBER,
p_invoice_class IN VARCHAR2,
p_project_amount IN NUMBER,
p_project_currency_code IN VARCHAR2,
p_inv_currency_code IN VARCHAR2,
p_invoice_amount IN NUMBER,
x_release_flag OUT VARCHAR2,
x_ra_invoice_date OUT DATE,
x_ra_invoice_num OUT VARCHAR2,
x_status OUT NUMBER,
x_credit_memo_reason_code OUT VARCHAR2
)
IS
BEGIN
-- Reset the output parameters.
0