DBA Data[Home] [Help]

PACKAGE: APPS.PYZAMCRP

Source


1 package pyzamcrp as
2 /* $Header: pyzamcrp.pkh 120.2 2005/06/28 00:07:32 kapalani noship $ */
3 
4    -----------------------------------------------------------------------------
5    -- NAME
6    --  manual_ct_cheque
7    -- PURPOSE
8    --  Issues Manual Credit Transfer Cheques.
9    -- ARGUMENTS
10    --  p_errmsg            - Returned error message.
11    --  p_errcode           - Returned error code.
12    --  p_payroll_action_id - The Payroll action to process.
13    --  p_payroll_name      - The Payroll name.
14    --  p_branch_code       - The Clearing number of the bank to process.
15    --  p_start_cheque      - The cheque number of the cheque to produce.
16    -- USES
17    -- NOTES
18    --
19    -----------------------------------------------------------------------------
20    procedure manual_ct_cheque
21    (
22       p_errmsg out nocopy varchar2,
23       p_errcode out nocopy number,
24       p_payroll_action_id number,
25       p_payroll_name varchar2,
26       p_branch_code varchar2,
27       p_start_cheque number
28    );
29 
30 end pyzamcrp;