DBA Data[Home] [Help]

APPS.OZF_ORDER_PRICE_PVT dependencies on OE_ORDER_PUB

Line 24: -- p_hdr in oe_order_pub.header_rec_type

20: -- This procedure use the input order information construct information
21: -- for an order header.
22: --
23: -- PARAMETERS
24: -- p_hdr in oe_order_pub.header_rec_type
25: -- x_return_status out varchar2
26: --
27: -- NOTES
28: ---------------------------------------------------------------------

Line 48: IF oe_order_pub.g_hdr.order_type_id is null or

44: END IF;
45: -- Mapping, default and validation rules here
46: -- Since we can not use the OM defaulting rule. We just default order type based on the cust account id
47: /*
48: IF oe_order_pub.g_hdr.order_type_id is null or
49: oe_order_pub.g_hdr.order_type_id = FND_API.g_miss_num THEN
50:
51: OPEN order_type_csr(oe_order_pub.g_hdr.sold_to_org_id);
52: FETCH order_type_csr into oe_order_pub.g_hdr.order_type_id;

Line 49: oe_order_pub.g_hdr.order_type_id = FND_API.g_miss_num THEN

45: -- Mapping, default and validation rules here
46: -- Since we can not use the OM defaulting rule. We just default order type based on the cust account id
47: /*
48: IF oe_order_pub.g_hdr.order_type_id is null or
49: oe_order_pub.g_hdr.order_type_id = FND_API.g_miss_num THEN
50:
51: OPEN order_type_csr(oe_order_pub.g_hdr.sold_to_org_id);
52: FETCH order_type_csr into oe_order_pub.g_hdr.order_type_id;
53: CLOSE order_type_csr;

Line 51: OPEN order_type_csr(oe_order_pub.g_hdr.sold_to_org_id);

47: /*
48: IF oe_order_pub.g_hdr.order_type_id is null or
49: oe_order_pub.g_hdr.order_type_id = FND_API.g_miss_num THEN
50:
51: OPEN order_type_csr(oe_order_pub.g_hdr.sold_to_org_id);
52: FETCH order_type_csr into oe_order_pub.g_hdr.order_type_id;
53: CLOSE order_type_csr;
54: END IF;
55:

Line 52: FETCH order_type_csr into oe_order_pub.g_hdr.order_type_id;

48: IF oe_order_pub.g_hdr.order_type_id is null or
49: oe_order_pub.g_hdr.order_type_id = FND_API.g_miss_num THEN
50:
51: OPEN order_type_csr(oe_order_pub.g_hdr.sold_to_org_id);
52: FETCH order_type_csr into oe_order_pub.g_hdr.order_type_id;
53: CLOSE order_type_csr;
54: END IF;
55:
56: OZF_CHARGEBACK_ATTRMAP_PUB.Create_Global_Header(

Line 64: ,xp_hdr => oe_order_pub.g_hdr

60: ,p_validation_level => FND_API.G_VALID_LEVEL_FULL
61: ,x_return_status => l_return_status
62: ,x_msg_data => l_msg_data
63: ,x_msg_count => l_msg_count
64: ,xp_hdr => oe_order_pub.g_hdr
65: ,p_interface_id => p_hdr.chargeback_int_id
66: );
67: */
68:

Line 107: -- p_line in oe_order_pub.line_rec_type

103: -- This procedure use the input order information construct information
104: -- for an order header.
105: --
106: -- PARAMETERS
107: -- p_line in oe_order_pub.line_rec_type
108: -- x_return_status out NOCOPY varchar2
109: --
110: -- NOTES
111: ---------------------------------------------------------------------

Line 136: ,xp_line => oe_order_pub.g_line

132: ,p_validation_level => FND_API.G_VALID_LEVEL_FULL
133: ,x_return_status => l_return_status
134: ,x_msg_data => l_msg_data
135: ,x_msg_count => l_msg_count
136: ,xp_line => oe_order_pub.g_line
137: ,p_interface_id => p_line.chargeback_int_id
138: );
139: */
140: WF_EVENT.AddParameterToList(

Line 466: oe_order_pub.g_hdr := g_header_rec;

462: IF xp_line_tbl(I).line_type_code = G_HDR_TYPE THEN
463: IF OZF_DEBUG_LOW_ON THEN
464: ozf_utility_PVT.debug_message('before build header' );
465: END IF;
466: oe_order_pub.g_hdr := g_header_rec;
467: build_order_header( p_hdr => xp_line_tbl(I),
468: x_return_status => l_return_status);
469: IF l_return_status = FND_API.g_ret_sts_error THEN
470: RAISE FND_API.g_exc_error;

Line 488: oe_order_pub.g_hdr := g_header_rec; -- Fix for Bug 12760472

484: -- It has to be line
485: IF OZF_DEBUG_LOW_ON THEN
486: ozf_utility_PVT.debug_message('before build line' );
487: END IF;
488: oe_order_pub.g_hdr := g_header_rec; -- Fix for Bug 12760472
489: oe_order_pub.g_line := g_line_rec_tbl(I);
490: build_order_line( p_line => xp_line_tbl(I),
491: x_return_status => l_return_status);
492: IF l_return_status = FND_API.g_ret_sts_error THEN

Line 489: oe_order_pub.g_line := g_line_rec_tbl(I);

485: IF OZF_DEBUG_LOW_ON THEN
486: ozf_utility_PVT.debug_message('before build line' );
487: END IF;
488: oe_order_pub.g_hdr := g_header_rec; -- Fix for Bug 12760472
489: oe_order_pub.g_line := g_line_rec_tbl(I);
490: build_order_line( p_line => xp_line_tbl(I),
491: x_return_status => l_return_status);
492: IF l_return_status = FND_API.g_ret_sts_error THEN
493: RAISE FND_API.g_exc_error;

Line 573: ozf_utility_pvt.write_conc_log('kd: ordered_date- ' || OE_ORDER_PUB.G_HDR.ordered_date);

569: IF OZF_DEBUG_LOW_ON THEN
570: ozf_utility_PVT.debug_message('After insert lines2' );
571: END IF;
572:
573: ozf_utility_pvt.write_conc_log('kd: ordered_date- ' || OE_ORDER_PUB.G_HDR.ordered_date);
574:
575: -- Call qp price engine
576: QP_PREQ_PUB.PRICE_REQUEST
577: (p_control_rec => l_control_rec,