DBA Data[Home] [Help]

APPS.AMS_PRICE_PVT dependencies on OE_ORDER_PUB

Line 21: ) return oe_order_pub.header_rec_type

17: Function set_oe_Header_rec (
18: p_party_id number := FND_API.G_MISS_NUM
19: ,p_cust_account_id number := FND_API.G_MISS_NUM
20: ,p_price_list_id number := FND_API.G_MISS_NUM
21: ) return oe_order_pub.header_rec_type
22: is
23: l_pricing_header_rec oe_order_pub.header_rec_type;
24: begin
25: -- l_pricing_header_rec.party_id := p_party_id;

Line 23: l_pricing_header_rec oe_order_pub.header_rec_type;

19: ,p_cust_account_id number := FND_API.G_MISS_NUM
20: ,p_price_list_id number := FND_API.G_MISS_NUM
21: ) return oe_order_pub.header_rec_type
22: is
23: l_pricing_header_rec oe_order_pub.header_rec_type;
24: begin
25: -- l_pricing_header_rec.party_id := p_party_id;
26: l_pricing_header_rec.sold_to_org_id := p_cust_account_id;
27: l_pricing_header_rec.price_list_id:= p_price_list_id;

Line 52: ) return oe_order_pub.line_rec_type

48: ,p_uom_code varchar2 := FND_API.G_MISS_CHAR
49: ,p_price_list_id number := FND_API.G_MISS_NUM
50: ,p_party_id number := FND_API.G_MISS_NUM
51: ,p_cust_account_id number := FND_API.G_MISS_NUM
52: ) return oe_order_pub.line_rec_type
53: is
54: l_pricing_line_rec oe_order_pub.line_rec_type;
55: begin
56: l_pricing_line_rec.inventory_item_id := p_inventory_item_id;

Line 54: l_pricing_line_rec oe_order_pub.line_rec_type;

50: ,p_party_id number := FND_API.G_MISS_NUM
51: ,p_cust_account_id number := FND_API.G_MISS_NUM
52: ) return oe_order_pub.line_rec_type
53: is
54: l_pricing_line_rec oe_order_pub.line_rec_type;
55: begin
56: l_pricing_line_rec.inventory_item_id := p_inventory_item_id;
57: l_pricing_line_rec.order_quantity_uom:= p_uom_code;
58: l_pricing_line_rec.ordered_quantity:= 1;

Line 153: oe_order_pub.G_LINE :=set_oe_line_rec(

149: begin
150:
151:
152: /*
153: oe_order_pub.G_LINE :=set_oe_line_rec(
154: p_inventory_item_id => p_inventory_item_id
155: ,p_uom_code => p_uom_code
156: ,p_price_list_id => p_price_list_id
157: ,p_party_id => p_party_id

Line 214: oe_order_pub.g_hdr :=set_oe_Header_rec(

210:
211: begin
212:
213: /*
214: oe_order_pub.g_hdr :=set_oe_Header_rec(
215: p_party_id => p_party_id,
216: p_cust_account_id => p_cust_account_id,
217: p_price_list_id => p_price_list_id );
218: