DBA Data[Home] [Help]

PACKAGE: APPS.PO_CREATE_ISO

Source


1 PACKAGE PO_CREATE_ISO AS
2 /* $Header: POXCISOS.pls 120.1 2005/06/29 10:58:24 pbamb noship $*/
3 PROCEDURE LOAD_OM_INTERFACE
4 (
5   errbuf  	out NOCOPY   	varchar2,
6   retcode 	out	NOCOPY number,
7   p_req_header_id in 	number default null
8 );
9 
10 PROCEDURE GET_OPUNIT_DETAILS
11 (
12   l_op_unit_id   in     number,
13   l_error_flag   in out NOCOPY varchar2,
14   l_currency_code out NOCOPY   varchar2,
15   l_ot_id        out NOCOPY    number,
16   l_pr_id        out NOCOPY    number,
17   l_ac_id        out NOCOPY    number,
18   l_ir_id        out NOCOPY    number
19 );
20 
21 --
22 -- OPM INVCONV  umoogala  Process-Discrete Transfers Enh.
23 -- Added 4th and 5th parameter.
24 -- Source and Destination orgs will be used to determine whether
25 -- transfer is between process and discrete mfg orgs. If yes,
26 -- then get transfer price.
27 -- For process-to-process get unit price
28 -- For discrete-to-discrete: no change. should work as is.
29 --
30 FUNCTION GET_CST_PRICE
31 (
32   x_item_id              in number,
33   x_organization_id      in number,
34   x_unit_of_measure      in varchar2,
35   x_dest_organization_id in number,
36   x_quantity             in number)
37 RETURN number;
38 
39 
40 END PO_CREATE_ISO;