DBA Data[Home] [Help]

PACKAGE: APPS.PO_JL_INTERFACE_PVT

Source


1 PACKAGE PO_JL_INTERFACE_PVT AUTHID CURRENT_USER AS
2 /* $Header: POXVJLIS.pls 120.1 2005/06/21 02:44:28 vsanjay noship $ */
3 
4 /*Bug#4430300 Replaced the references to JLBR data types with the po standard data types */
5 PROCEDURE get_trx_reason_code
6     ( p_fsp_inv_org_id       IN  NUMBER
7     , p_inventory_org_id_tbl IN  po_tbl_number
8     , p_item_id_tbl          IN  po_tbl_number
9     , p_org_id               IN  NUMBER
10     , x_return_status        OUT NOCOPY VARCHAR2
11     , x_trx_reason_code_tbl  OUT NOCOPY po_tbl_varchar100
12     , x_error_code_tbl       OUT NOCOPY po_tbl_number
13     );
14 
15 PROCEDURE get_trx_reason_code
16     ( p_fsp_inv_org_id    IN  NUMBER
17     , p_inventory_org_id  IN  NUMBER
18     , p_item_id           IN  NUMBER
19     , p_org_id            IN  NUMBER
20     , x_return_status     OUT NOCOPY VARCHAR2
21     , x_trx_reason_code   OUT NOCOPY VARCHAR2
22     );
23 
24 PROCEDURE chk_def_trx_reason_flag
25     ( x_return_status       OUT NOCOPY VARCHAR2
26     , x_def_trx_reason_flag OUT NOCOPY VARCHAR2
27     );
28 
29 END PO_JL_INTERFACE_PVT;