DBA Data[Home] [Help]

APPS.OE_CATALOG_PRICING_PUB dependencies on OE_ORDER_ADJ_PVT

Line 17: l_line_tbl oe_order_adj_pvt.quote_line_tbl_type;

13: x_customer_price OUT NUMBER,
14: x_list_price OUT NUMBER
15: )
16: IS
17: l_line_tbl oe_order_adj_pvt.quote_line_tbl_type;
18: lx_line_tbl oe_order_adj_pvt.quote_line_tbl_type;
19: l_header oe_order_adj_pvt.quote_header_rec_type;
20: lx_return_status Varchar2(30);
21: lx_return_status_text Varchar2(200);

Line 18: lx_line_tbl oe_order_adj_pvt.quote_line_tbl_type;

14: x_list_price OUT NUMBER
15: )
16: IS
17: l_line_tbl oe_order_adj_pvt.quote_line_tbl_type;
18: lx_line_tbl oe_order_adj_pvt.quote_line_tbl_type;
19: l_header oe_order_adj_pvt.quote_header_rec_type;
20: lx_return_status Varchar2(30);
21: lx_return_status_text Varchar2(200);
22: i PLS_INTEGER;

Line 19: l_header oe_order_adj_pvt.quote_header_rec_type;

15: )
16: IS
17: l_line_tbl oe_order_adj_pvt.quote_line_tbl_type;
18: lx_line_tbl oe_order_adj_pvt.quote_line_tbl_type;
19: l_header oe_order_adj_pvt.quote_header_rec_type;
20: lx_return_status Varchar2(30);
21: lx_return_status_text Varchar2(200);
22: i PLS_INTEGER;
23:

Line 37: oe_order_adj_pvt.Get_Quote(p_quote_header => l_header,

33: l_line_tbl(1).ordered_quantity := p_ordered_quantity;
34: l_line_tbl(1).order_quantity_uom := p_uom;
35: l_line_tbl(1).sold_to_org_id := p_sold_to_org_id;
36:
37: oe_order_adj_pvt.Get_Quote(p_quote_header => l_header,
38: p_quote_line_tbl => l_line_tbl,
39: p_request_type_code => 'ONT',
40: x_quote_line_tbl => lx_line_tbl,
41: x_return_status => lx_return_status,