DBA Data[Home] [Help]

APPS.OE_GRP_SCH_UTIL dependencies on OE_MSG_PUB

Line 70: OE_MSG_PUB.Add;

66: (p_line_rec.ordered_quantity is null OR
67: p_line_rec.ordered_quantity = FND_API.G_MISS_NUM)) THEN
68:
69: FND_MESSAGE.SET_NAME('ONT','OE_SCH_MISSING_QUANTITY');
70: OE_MSG_PUB.Add;
71: l_return_status := FND_API.G_RET_STS_ERROR;
72: END IF;
73:
74: -- If the quantity on the line is zero(which is different from

Line 87: OE_MSG_PUB.Add;

83:
84: IF p_line_rec.schedule_action_code is not null THEN
85:
86: FND_MESSAGE.SET_NAME('ONT','OE_SCH_ZERO_QTY');
87: OE_MSG_PUB.Add;
88:
89: IF l_debug_level > 0 THEN
90: oe_debug_pub.add( 'E2' , 1 ) ;
91: END IF;

Line 108: OE_MSG_PUB.Add;

104: -- The line is cancelled. Cannot perform scheduling
105: -- on it.
106:
107: FND_MESSAGE.SET_NAME('ONT','OE_SCH_LINE_SHIPPED');
108: OE_MSG_PUB.Add;
109:
110: IF l_debug_level > 0 THEN
111: oe_debug_pub.add( 'OE_SCH_LINE_SHIPPED' , 1 ) ;
112: END IF;

Line 129: OE_MSG_PUB.Add;

125: IF (p_line_rec.ordered_quantity < p_line_rec.reserved_quantity)
126: THEN
127:
128: FND_MESSAGE.SET_NAME('ONT','OE_SCH_RES_MORE_ORD_QTY');
129: OE_MSG_PUB.Add;
130:
131: IF l_debug_level > 0 THEN
132: oe_debug_pub.add( 'E4' , 1 ) ;
133: END IF;

Line 146: OE_MSG_PUB.Add;

142: OE_ORDER_SCH_UTIL.OESCH_ACT_UNRESERVE) AND
143: (p_line_rec.reserved_quantity is not null) THEN
144:
145: FND_MESSAGE.SET_NAME('ONT','OE_SCH_RES_QTY_CHG_NOT_ALLOWED');
146: OE_MSG_PUB.Add;
147: l_return_status := FND_API.G_RET_STS_ERROR;
148: IF l_debug_level > 0 THEN
149: oe_debug_pub.add( 'E5' , 1 ) ;
150: END IF;

Line 169: OE_MSG_PUB.Add;

165: IF (p_line_rec.ordered_quantity < p_line_rec.reserved_quantity)
166: THEN
167:
168: FND_MESSAGE.SET_NAME('ONT','OE_SCH_RES_MORE_ORD_QTY');
169: OE_MSG_PUB.Add;
170:
171: l_return_status := FND_API.G_RET_STS_ERROR;
172: IF l_debug_level > 0 THEN
173: oe_debug_pub.add( 'E6' , 1 ) ;

Line 187: OE_MSG_PUB.Add;

183: IF (p_line_rec.order_quantity_uom is null OR
184: p_line_rec.order_quantity_uom = FND_API.G_MISS_CHAR) THEN
185:
186: FND_MESSAGE.SET_NAME('ONT','OE_SCH_MISSING_UOM');
187: OE_MSG_PUB.Add;
188:
189: l_return_status := FND_API.G_RET_STS_ERROR;
190: IF l_debug_level > 0 THEN
191: oe_debug_pub.add( 'E7' , 1 ) ;

Line 206: OE_MSG_PUB.Add;

202: IF (p_line_rec.inventory_item_id is null OR
203: p_line_rec.inventory_item_id = FND_API.G_MISS_NUM) THEN
204:
205: FND_MESSAGE.SET_NAME('ONT','OE_SCH_MISSING_ITEM');
206: OE_MSG_PUB.Add;
207:
208: l_return_status := FND_API.G_RET_STS_ERROR;
209: END IF;
210:

Line 222: OE_MSG_PUB.Add;

218: IF (p_line_rec.request_date is null OR
219: p_line_rec.request_date = FND_API.G_MISS_DATE) THEN
220:
221: FND_MESSAGE.SET_NAME('ONT','OE_SCH_MISSING_REQUEST_DATE');
222: OE_MSG_PUB.Add;
223: l_return_status := FND_API.G_RET_STS_ERROR;
224: END IF;
225:
226: -- If the line belongs to a set, you cannot unschedule the line

Line 239: OE_MSG_PUB.Add;

235: OE_ORDER_SCH_UTIL.OESCH_ACT_UNSCHEDULE))
236: THEN
237:
238: FND_MESSAGE.SET_NAME('ONT','OE_SCH_OE_ORDER_FAILED');
239: OE_MSG_PUB.Add;
240:
241: l_return_status := FND_API.G_RET_STS_ERROR;
242: END IF;
243:

Line 297: OE_MSG_PUB.Add;

293: END IF;
294:
295: IF (l_result = FND_API.G_TRUE) THEN
296: FND_MESSAGE.SET_NAME('ONT','OE_SCH_LINE_ON_HOLD');
297: OE_MSG_PUB.Add;
298: l_return_status := FND_API.G_RET_STS_ERROR;
299: END IF;
300:
301: END IF;

Line 336: OE_MSG_PUB.Add;

332: OE_ORDER_SCH_UTIL.OESCH_ACT_SCHEDULE));
333: FND_MESSAGE.SET_TOKEN('ORDER_TYPE',
334: nvl(oe_order_sch_util.sch_cached_line_type,
335: oe_order_sch_util.sch_cached_order_type));
336: OE_MSG_PUB.Add;
337: l_return_status := FND_API.G_RET_STS_ERROR;
338: END IF;
339: ELSIF l_scheduling_level_code = OE_ORDER_SCH_UTIL.SCH_LEVEL_TWO THEN
340: -- Changes for Bug-2497354

Line 353: OE_MSG_PUB.Add;

349: OE_ORDER_SCH_UTIL.OESCH_ACT_RESERVE));
350: IF l_debug_level > 0 THEN
351: oe_debug_pub.add( 'RESERVED QUANTITY IS GREATER THAN ZERO' ) ;
352: END IF;
353: OE_MSG_PUB.Add;
354: l_return_status := FND_API.G_RET_STS_ERROR;
355: END IF;
356:
357: IF p_line_rec.schedule_action_code =

Line 366: OE_MSG_PUB.Add;

362: OE_ORDER_SCH_UTIL.OESCH_ACT_RESERVE));
363: FND_MESSAGE.SET_TOKEN('ORDER_TYPE',
364: nvl(oe_order_sch_util.sch_cached_line_type,
365: oe_order_sch_util.sch_cached_order_type));
366: OE_MSG_PUB.Add;
367: l_return_status := FND_API.G_RET_STS_ERROR;
368: END IF;
369: END IF;
370: END IF;

Line 418: OE_MSG_PUB.Add;

414: END IF;
415: FND_MESSAGE.SET_NAME('ONT','OE_BOM_NO_BILL_IN_VAL_ORG');
416: FND_MESSAGE.SET_TOKEN('ITEM',nvl(p_line_rec.ordered_item,p_line_rec.inventory_item_id));
417: FND_MESSAGE.SET_TOKEN('ORG',l_org_id);
418: OE_MSG_PUB.Add;
419: l_return_status := FND_API.G_RET_STS_ERROR;
420:
421: WHEN OTHERS THEN
422: Null;

Line 560: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

556: WHEN OTHERS THEN
557:
558: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
559:
560: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
561: THEN
562: OE_MSG_PUB.Add_Exc_Msg
563: ( G_PKG_NAME
564: , 'Group_Schedule'

Line 562: OE_MSG_PUB.Add_Exc_Msg

558: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
559:
560: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
561: THEN
562: OE_MSG_PUB.Add_Exc_Msg
563: ( G_PKG_NAME
564: , 'Group_Schedule'
565: );
566: END IF;

Line 734: OE_MSG_PUB.set_msg_context

730: LOOP
731: BEGIN
732:
733: SAVEPOINT SCHEDULE_ORDER;
734: OE_MSG_PUB.set_msg_context
735: ( p_entity_code => 'LINE'
736: ,p_entity_id => l_line_tbl(line_index).line_id
737: ,p_header_id => l_line_tbl(line_index).header_id
738: ,p_line_id => l_line_tbl(line_index).line_id

Line 1004: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1000:
1001: ROLLBACK TO SCHEDULE_ORDER;
1002: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1003:
1004: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1005: THEN
1006: OE_MSG_PUB.Add_Exc_Msg
1007: ( G_PKG_NAME
1008: , 'Schedule_Order'

Line 1006: OE_MSG_PUB.Add_Exc_Msg

1002: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1003:
1004: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1005: THEN
1006: OE_MSG_PUB.Add_Exc_Msg
1007: ( G_PKG_NAME
1008: , 'Schedule_Order'
1009: );
1010: END IF;

Line 1014: oe_msg_pub.count_and_get

1010: END IF;
1011: END;
1012: END LOOP;
1013:
1014: oe_msg_pub.count_and_get
1015: ( p_count => x_msg_count
1016: ,p_data => x_msg_data
1017: );
1018:

Line 1044: oe_msg_pub.count_and_get

1040: WHEN FND_API.G_EXC_ERROR THEN
1041:
1042: x_return_status := FND_API.G_RET_STS_ERROR;
1043:
1044: oe_msg_pub.count_and_get
1045: ( p_count => x_msg_count
1046: ,p_data => x_msg_data
1047: );
1048: /* Bug :2222360 */

Line 1063: oe_msg_pub.count_and_get

1059: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1060:
1061: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1062:
1063: oe_msg_pub.count_and_get
1064: ( p_count => x_msg_count
1065: ,p_data => x_msg_data
1066: );
1067:

Line 1092: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1088: OE_Delayed_Requests_Pvt.Clear_Request
1089: (x_return_status => l_return_status);
1090: END IF;
1091:
1092: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1093: THEN
1094: OE_MSG_PUB.Add_Exc_Msg
1095: ( G_PKG_NAME
1096: , 'Schedule_Order'

Line 1094: OE_MSG_PUB.Add_Exc_Msg

1090: END IF;
1091:
1092: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1093: THEN
1094: OE_MSG_PUB.Add_Exc_Msg
1095: ( G_PKG_NAME
1096: , 'Schedule_Order'
1097: );
1098: END IF;

Line 1100: oe_msg_pub.count_and_get

1096: , 'Schedule_Order'
1097: );
1098: END IF;
1099:
1100: oe_msg_pub.count_and_get
1101: ( p_count => x_msg_count
1102: ,p_data => x_msg_data
1103: );
1104:

Line 1205: OE_MSG_PUB.Add;

1201: -- You cannot schedule a ATO model without a warehouse. So flag
1202: -- an error.
1203:
1204: FND_MESSAGE.SET_NAME('ONT','OE_SCH_ATO_WHSE_REQD');
1205: OE_MSG_PUB.Add;
1206: RAISE FND_API.G_EXC_ERROR;
1207:
1208: END IF;
1209:

Line 1215: OE_MSG_PUB.Add;

1211: (p_group_req_rec.action = OE_ORDER_SCH_UTIL.OESCH_ACT_UNRESERVE)
1212: THEN
1213: -- This action is not allowed on an ATO configuration.
1214: FND_MESSAGE.SET_NAME('ONT','OE_SCH_RES_NO_CONFIG');
1215: OE_MSG_PUB.Add;
1216: RAISE FND_API.G_EXC_ERROR;
1217:
1218: END IF; /* If action was reserve or unreserve */
1219:

Line 1233: OE_MSG_PUB.Add;

1229: AND top_model_line_id =l_model_line_rec.top_model_line_id
1230: AND item_type_code = 'CONFIG';
1231:
1232: FND_MESSAGE.SET_NAME('ONT','OE_SCH_UNSCH_CONFIG_EXISTS');
1233: OE_MSG_PUB.Add;
1234: RAISE FND_API.G_EXC_ERROR;
1235:
1236: EXCEPTION
1237: WHEN NO_DATA_FOUND THEN

Line 1501: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1497: x_return_status := FND_API.G_RET_STS_ERROR;
1498:
1499: WHEN OTHERS THEN
1500:
1501: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1502: THEN
1503: OE_MSG_PUB.Add_Exc_Msg
1504: ( G_PKG_NAME
1505: , 'Schedule_ATO'

Line 1503: OE_MSG_PUB.Add_Exc_Msg

1499: WHEN OTHERS THEN
1500:
1501: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1502: THEN
1503: OE_MSG_PUB.Add_Exc_Msg
1504: ( G_PKG_NAME
1505: , 'Schedule_ATO'
1506: );
1507: END IF;

Line 1535: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1531: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1532:
1533: WHEN OTHERS THEN
1534:
1535: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1536: THEN
1537: OE_MSG_PUB.Add_Exc_Msg
1538: ( G_PKG_NAME
1539: , 'Schedule_SMC'

Line 1537: OE_MSG_PUB.Add_Exc_Msg

1533: WHEN OTHERS THEN
1534:
1535: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1536: THEN
1537: OE_MSG_PUB.Add_Exc_Msg
1538: ( G_PKG_NAME
1539: , 'Schedule_SMC'
1540: );
1541: END IF;

Line 1726: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1722: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1723:
1724: WHEN OTHERS THEN
1725:
1726: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1727: THEN
1728: OE_MSG_PUB.Add_Exc_Msg
1729: ( G_PKG_NAME
1730: , 'Query_Set_Lines'

Line 1728: OE_MSG_PUB.Add_Exc_Msg

1724: WHEN OTHERS THEN
1725:
1726: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1727: THEN
1728: OE_MSG_PUB.Add_Exc_Msg
1729: ( G_PKG_NAME
1730: , 'Query_Set_Lines'
1731: );
1732: END IF;

Line 1834: OE_MSG_PUB.Add;

1830: WHERE top_model_line_id = l_line_tbl(1).top_model_line_id
1831: AND item_type_code = 'CONFIG';
1832:
1833: FND_MESSAGE.SET_NAME('ONT','OE_SCH_UNSCH_CONFIG_EXISTS');
1834: OE_MSG_PUB.Add;
1835: RAISE FND_API.G_EXC_ERROR;
1836:
1837: EXCEPTION
1838: WHEN NO_DATA_FOUND THEN

Line 1842: OE_MSG_PUB.Add;

1838: WHEN NO_DATA_FOUND THEN
1839: null;
1840: WHEN TOO_MANY_ROWS THEN
1841: FND_MESSAGE.SET_NAME('ONT','OE_SCH_UNSCH_CONFIG_EXISTS');
1842: OE_MSG_PUB.Add;
1843: RAISE FND_API.G_EXC_ERROR;
1844: END;
1845:
1846: END IF; /* If action was unschedule */

Line 2129: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

2125: WHEN OTHERS THEN
2126:
2127: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2128:
2129: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2130: THEN
2131: OE_MSG_PUB.Add_Exc_Msg
2132: ( G_PKG_NAME
2133: , 'Schedule_Set'

Line 2131: OE_MSG_PUB.Add_Exc_Msg

2127: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2128:
2129: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2130: THEN
2131: OE_MSG_PUB.Add_Exc_Msg
2132: ( G_PKG_NAME
2133: , 'Schedule_Set'
2134: );
2135: END IF;

Line 2210: oe_msg_pub.add('return false from debug');

2206: EXCEPTION
2207:
2208: WHEN OTHERS THEN
2209:
2210: oe_msg_pub.add('return false from debug');
2211: RETURN FALSE;
2212:
2213: END Compare_Set_Attr;
2214:

Line 2517: OE_MSG_PUB.Add;

2513: it in the set */
2514:
2515: FND_MESSAGE.SET_NAME('ONT','OE_DS_SET_INS_FAILED');
2516: FND_MESSAGE.SET_TOKEN('LINE',p_x_line_tbl(I).line_number);
2517: OE_MSG_PUB.Add;
2518:
2519: END IF;
2520:
2521: EXCEPTION

Line 2714: OE_MSG_PUB.Add;

2710: END IF; -- l_grp_count.
2711: ELSE
2712: IF l_log_msg = 'N' THEN
2713: FND_MESSAGE.SET_NAME('ONT','OE_SCH_GROUP_MEMBER_FAILED');
2714: OE_MSG_PUB.Add;
2715: END IF;
2716: END IF; -- Push group
2717: END IF; -- Return Status is error.
2718:

Line 2743: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

2739:
2740: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2741: OE_ORDER_SCH_UTIL.OESCH_PERFORM_GRP_SCHEDULING := 'Y';
2742:
2743: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2744: THEN
2745: OE_MSG_PUB.Add_Exc_Msg
2746: ( G_PKG_NAME
2747: , 'Schedule_set_of_lines'

Line 2745: OE_MSG_PUB.Add_Exc_Msg

2741: OE_ORDER_SCH_UTIL.OESCH_PERFORM_GRP_SCHEDULING := 'Y';
2742:
2743: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2744: THEN
2745: OE_MSG_PUB.Add_Exc_Msg
2746: ( G_PKG_NAME
2747: , 'Schedule_set_of_lines'
2748: );
2749: END IF;

Line 2864: OE_MSG_PUB.Add;

2860: OE_ORDER_SCH_UTIL.OESCH_ACT_UNRESERVE
2861: AND nvl(l_line_tbl(J).shipping_interfaced_flag, 'N') = 'Y' THEN
2862:
2863: FND_MESSAGE.SET_NAME('ONT','OE_SCH_UNRSV_NOT_ALLOWED');
2864: OE_MSG_PUB.Add;
2865: END IF;
2866: END IF;
2867: END LOOP;
2868: l_out_line_tbl := l_line_tbl;

Line 3255: OE_MSG_PUB.Add;

3251: EXCEPTION
3252: WHEN OTHERS THEN
3253: l_return_status := FND_API.G_RET_STS_ERROR;
3254: fnd_message.set_name('ONT', 'OE_INVALID_ITEM_WHSE');
3255: OE_MSG_PUB.Add;
3256: END;
3257:
3258:
3259: IF l_revision_code = 2 OR l_lot_code = 2 THEN

Line 3262: OE_MSG_PUB.Add;

3258:
3259: IF l_revision_code = 2 OR l_lot_code = 2 THEN
3260: -- 2 == YES
3261: fnd_message.set_name('ONT', 'OE_SUBINV_NOT_ALLOWED');
3262: OE_MSG_PUB.Add;
3263: IF l_line_tbl(j).schedule_action_code =
3264: OE_ORDER_SCH_UTIL.OESCH_ACT_RESERVE THEN
3265: l_return_status := FND_API.G_RET_STS_ERROR;
3266: RAISE FND_API.G_EXC_ERROR;

Line 3334: oe_msg_pub.add_text(p_message_text => l_buffer);

3330: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
3331: IF l_msg_data is not null THEN
3332: fnd_message.set_encoded(l_msg_data);
3333: l_buffer := fnd_message.get;
3334: oe_msg_pub.add_text(p_message_text => l_buffer);
3335: END IF;
3336:
3337: l_line_tbl(j).reserved_quantity := null;
3338:

Line 3453: oe_msg_pub.add_text(p_message_text => l_buffer);

3449: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
3450: IF l_msg_data is not null THEN
3451: fnd_message.set_encoded(l_msg_data);
3452: l_buffer := fnd_message.get;
3453: oe_msg_pub.add_text(p_message_text => l_buffer);
3454: IF l_debug_level > 0 THEN
3455: oe_debug_pub.add( 'ERROR : '|| L_BUFFER , 1 ) ;
3456: END IF;
3457: END IF;

Line 3688: OE_MSG_PUB.Add;

3684: WHEN FND_API.G_EXC_ERROR THEN
3685:
3686: IF p_log_msg = 'Y' THEN
3687: FND_MESSAGE.SET_NAME('ONT','OE_SCH_GROUP_MEMBER_FAILED');
3688: OE_MSG_PUB.Add;
3689: END IF;
3690:
3691: x_return_status := FND_API.G_RET_STS_ERROR;
3692: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 3700: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

3696: WHEN OTHERS THEN
3697:
3698: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3699:
3700: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3701: THEN
3702: OE_MSG_PUB.Add_Exc_Msg
3703: ( G_PKG_NAME
3704: , 'Process_set_of_lines'

Line 3702: OE_MSG_PUB.Add_Exc_Msg

3698: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3699:
3700: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3701: THEN
3702: OE_MSG_PUB.Add_Exc_Msg
3703: ( G_PKG_NAME
3704: , 'Process_set_of_lines'
3705: );
3706: END IF;

Line 3796: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

3792: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3793:
3794: WHEN OTHERS THEN
3795:
3796: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3797: THEN
3798: OE_MSG_PUB.Add_Exc_Msg
3799: ( G_PKG_NAME
3800: , 'Query_Rows'

Line 3798: OE_MSG_PUB.Add_Exc_Msg

3794: WHEN OTHERS THEN
3795:
3796: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3797: THEN
3798: OE_MSG_PUB.Add_Exc_Msg
3799: ( G_PKG_NAME
3800: , 'Query_Rows'
3801: );
3802: END IF;

Line 3846: OE_MSG_PUB.Add;

3842: -- You cannot unschedule a set. This is an invalid action on
3843: -- the group.
3844:
3845: FND_MESSAGE.SET_NAME('ONT','OE_SCH_CANNOT_UNSCH_SET');
3846: OE_MSG_PUB.Add;
3847: l_return_status := FND_API.G_RET_STS_ERROR;
3848:
3849: END IF;
3850: END IF;

Line 3899: OE_MSG_PUB.Add;

3895: WHEN NO_DATA_FOUND THEN
3896: x_return_status := FND_API.G_RET_STS_ERROR;
3897:
3898: FND_MESSAGE.SET_NAME('ONT','OE_SCH_GRP_WHSE_INVALID');
3899: OE_MSG_PUB.Add;
3900:
3901: WHEN OTHERS THEN
3902: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3903:

Line 3906: OE_MSG_PUB.Add;

3902: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3903:
3904: FND_MESSAGE.SET_NAME('ONT','OE_SCH_GRP_WHSE_INVALID');
3905: FND_MESSAGE.SET_TOKEN('LINE',l_line_number);
3906: OE_MSG_PUB.Add;
3907:
3908: END Validate_Warehouse;
3909:
3910: /* ---------------------------------------------------------------

Line 4378: oe_msg_pub.count_and_get

4374: x_return_status := FND_API.G_RET_STS_SUCCESS;
4375:
4376: -- Get message count and data
4377:
4378: oe_msg_pub.count_and_get
4379: ( p_count => x_msg_count
4380: , p_data => x_msg_data
4381: );
4382:

Line 4418: oe_msg_pub.count_and_get

4414:
4415:
4416: -- Get message count and data
4417:
4418: oe_msg_pub.count_and_get
4419: ( p_count => x_msg_count
4420: , p_data => x_msg_data
4421: );
4422:

Line 4441: oe_msg_pub.count_and_get

4437: END IF;
4438:
4439: -- Get message count and data
4440:
4441: oe_msg_pub.count_and_get
4442: ( p_count => x_msg_count
4443: , p_data => x_msg_data
4444: );
4445:

Line 4462: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)

4458: ELSE
4459: ROLLBACK TO SCH_ACTION;
4460: END IF;
4461:
4462: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
4463: THEN
4464: oe_msg_pub.Add_Exc_Msg
4465: ( G_PKG_NAME
4466: , 'Sch_Multi_selected_lines'

Line 4464: oe_msg_pub.Add_Exc_Msg

4460: END IF;
4461:
4462: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
4463: THEN
4464: oe_msg_pub.Add_Exc_Msg
4465: ( G_PKG_NAME
4466: , 'Sch_Multi_selected_lines'
4467: );
4468: END IF;

Line 4472: oe_msg_pub.count_and_get

4468: END IF;
4469:
4470: -- Get message count and data
4471:
4472: oe_msg_pub.count_and_get
4473: ( p_count => x_msg_count
4474: , p_data => x_msg_data
4475: );
4476: