DBA Data[Home] [Help]

APPS.OE_XML_PROCESS_UTIL dependencies on OE_MSG_PUB

Line 50: oe_msg_pub.add;

46: x_ship_to_org_id := NULL;
47: fnd_message.set_name ('ONT', 'OE_OI_ORG_NOT_FOUND');
48: fnd_message.set_token ('SITE_USAGE', 'SHIP-TO');
49: fnd_message.set_token ('ADDRESS_ID', p_address_id);
50: oe_msg_pub.add;
51: End Get_Ship_To_Org_Id;
52:
53:
54: Procedure Get_Bill_To_Org_Id(

Line 85: oe_msg_pub.add;

81: x_bill_to_org_id := NULL;
82: fnd_message.set_name ('ONT', 'OE_OI_ORG_NOT_FOUND');
83: fnd_message.set_token ('SITE_USAGE', 'BILL-TO');
84: fnd_message.set_token ('ADDRESS_ID', p_address_id);
85: oe_msg_pub.add;
86: End Get_Bill_To_Org_Id;
87:
88: Procedure Get_Sold_To_Org_Id(
89: p_address_id IN NUMBER,

Line 116: oe_msg_pub.add;

112: x_sold_to_org_id := NULL;
113: fnd_message.set_name ('ONT', 'OE_OI_ORG_NOT_FOUND');
114: fnd_message.set_token ('SITE_USAGE', 'SOLD-TO');
115: fnd_message.set_token ('ADDRESS_ID', p_address_id);
116: oe_msg_pub.add;
117: End Get_Sold_To_Org_Id;
118:
119: Procedure Get_Sold_To_Edi_Loc(
120: p_sold_to_org_id IN Number,

Line 157: oe_msg_pub.add;

153: x_edi_location_code := Null;
154: fnd_message.set_name ('ONT', 'OE_OI_EDI_LOC_NOT_FOUND');
155: fnd_message.set_token ('EDI_LOCATION', 'SOLD-TO');
156: fnd_message.set_token ('SITE_USAGE', p_sold_to_org_id);
157: oe_msg_pub.add;
158:
159: End Get_Sold_To_Edi_Loc;
160:
161: -- API which will return all the address data based on the site_use_id

Line 341: oe_msg_pub.add;

337: x_edi_location_code := Null;
338: fnd_message.set_name ('ONT', 'OE_OI_EDI_LOC_NOT_FOUND');
339: fnd_message.set_token ('EDI_LOCATION', 'SHIP-FROM');
340: fnd_message.set_token ('SITE_USAGE', p_ship_from_org_id);
341: oe_msg_pub.add;
342: End Get_Ship_From_Edi_Loc;
343:
344: -- {
345: -- This function will get the Total of the Order or specific Line

Line 368: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

364: x_order_line_total := l_order_line_total;
365: Exception
366: When Others Then
367: x_order_line_total := 0;
368: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
369: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_order_total');
370: End if;
371:
372:

Line 369: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_order_total');

365: Exception
366: When Others Then
367: x_order_line_total := 0;
368: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
369: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_order_total');
370: End if;
371:
372:
373: End Get_Order_Total;

Line 515: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

511: x_result := FND_API.G_RET_STS_UNEXP_ERROR;
512: IF l_debug_level > 0 THEN
513: oe_debug_pub.add( 'EXITING GET_PROCESSING_MSGS' ) ;
514: END IF;
515: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
516: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_processing_msgs');
517: End if;
518: END Get_Processing_Msgs;
519: -- End Get_Processing_Msgs}

Line 516: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_processing_msgs');

512: IF l_debug_level > 0 THEN
513: oe_debug_pub.add( 'EXITING GET_PROCESSING_MSGS' ) ;
514: END IF;
515: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
516: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_processing_msgs');
517: End if;
518: END Get_Processing_Msgs;
519: -- End Get_Processing_Msgs}
520:

Line 539: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

535:
536: Exception
537: When Others Then
538: x_salesrep := Null;
539: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
540: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_sales_person');
541: End if;
542:
543: End Get_Sales_Person;

Line 540: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_sales_person');

536: Exception
537: When Others Then
538: x_salesrep := Null;
539: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
540: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_sales_person');
541: End if;
542:
543: End Get_Sales_Person;
544:

Line 592: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

588:
589: Exception
590: When Others Then
591: x_ordered_quantity := NULL;
592: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
593: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_line_ordered_quantity');
594: End if;
595:
596:

Line 593: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_line_ordered_quantity');

589: Exception
590: When Others Then
591: x_ordered_quantity := NULL;
592: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
593: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_line_ordered_quantity');
594: End if;
595:
596:
597: End Get_Line_Ordered_Quantity;

Line 648: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

644:
645: Exception
646: When Others Then
647: x_ordered_quantity_uom := NULL;
648: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
649: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_line_ordered_quantity_uom');
650: End if;
651:
652:

Line 649: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_line_ordered_quantity_uom');

645: Exception
646: When Others Then
647: x_ordered_quantity_uom := NULL;
648: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
649: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'get_line_ordered_quantity_uom');
650: End if;
651:
652:
653: End Get_Line_Ordered_Quantity_UOM;

Line 705: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

701:
702: Exception
703: When Others Then
704: null;
705: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
706: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'set_cancelled_flag');
707: End if;
708: end set_cancelled_flag;
709:

Line 706: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'set_cancelled_flag');

702: Exception
703: When Others Then
704: null;
705: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
706: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'set_cancelled_flag');
707: End if;
708: end set_cancelled_flag;
709:
710: PROCEDURE Clear_Oe_Header_And_Line_Acks

Line 773: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

769:
770: Exception
771: When Others Then
772: null;
773: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
774: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'clear_oe_header_and_line_acks');
775: End if;
776: end Clear_Oe_Header_And_Line_Acks;
777:

Line 774: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'clear_oe_header_and_line_acks');

770: Exception
771: When Others Then
772: null;
773: IF OE_MSG_PUB.Check_Msg_level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
774: OE_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, 'clear_oe_header_and_line_acks');
775: End if;
776: end Clear_Oe_Header_And_Line_Acks;
777:
778: Procedure Derive_Line_Operation_Code