DBA Data[Home] [Help]

APPS.OE_OE_FORM_HEADER_PAYMENT dependencies on OE_MSG_PUB

Line 246: oe_msg_pub.Count_And_Get

242: x_return_status := FND_API.G_RET_STS_SUCCESS;
243:
244: -- Get message count and data
245:
246: oe_msg_pub.Count_And_Get
247: ( p_count => x_msg_count
248: , p_data => x_msg_data
249: );
250:

Line 265: oe_msg_pub.Count_And_Get

261: x_return_status := FND_API.G_RET_STS_ERROR;
262:
263: -- Get message count and data
264:
265: oe_msg_pub.Count_And_Get
266: ( p_count => x_msg_count
267: , p_data => x_msg_data
268: );
269:

Line 278: oe_msg_pub.Count_And_Get

274: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
275:
276: -- Get message count and data
277:
278: oe_msg_pub.Count_And_Get
279: ( p_count => x_msg_count
280: , p_data => x_msg_data
281: );
282:

Line 289: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

285: OE_GLOBALS.G_UI_FLAG := FALSE;
286:
287: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
288:
289: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
290: THEN
291: oe_msg_pub.Add_Exc_Msg
292: ( G_PKG_NAME
293: , 'Default_Attributes'

Line 291: oe_msg_pub.Add_Exc_Msg

287: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
288:
289: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
290: THEN
291: oe_msg_pub.Add_Exc_Msg
292: ( G_PKG_NAME
293: , 'Default_Attributes'
294: );
295: END IF;

Line 299: oe_msg_pub.Count_And_Get

295: END IF;
296:
297: -- Get message count and data
298:
299: oe_msg_pub.Count_And_Get
300: ( p_count => x_msg_count
301: , p_data => x_msg_data
302: );
303:

Line 853: oe_msg_pub.Count_And_Get

849: x_return_status := FND_API.G_RET_STS_SUCCESS;
850:
851: -- Get message count and data
852:
853: oe_msg_pub.Count_And_Get
854: ( p_count => x_msg_count
855: , p_data => x_msg_data
856: );
857:

Line 872: oe_msg_pub.Count_And_Get

868: x_return_status := FND_API.G_RET_STS_ERROR;
869:
870: -- Get message count and data
871:
872: oe_msg_pub.Count_And_Get
873: ( p_count => x_msg_count
874: , p_data => x_msg_data
875: );
876:

Line 885: oe_msg_pub.Count_And_Get

881: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
882:
883: -- Get message count and data
884:
885: oe_msg_pub.Count_And_Get
886: ( p_count => x_msg_count
887: , p_data => x_msg_data
888: );
889:

Line 896: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

892: OE_GLOBALS.G_UI_FLAG := FALSE;
893:
894: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
895:
896: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
897: THEN
898: oe_msg_pub.Add_Exc_Msg
899: ( G_PKG_NAME
900: , 'Change_Attribute'

Line 898: oe_msg_pub.Add_Exc_Msg

894: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
895:
896: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
897: THEN
898: oe_msg_pub.Add_Exc_Msg
899: ( G_PKG_NAME
900: , 'Change_Attribute'
901: );
902: END IF;

Line 906: oe_msg_pub.Count_And_Get

902: END IF;
903:
904: -- Get message count and data
905:
906: oe_msg_pub.Count_And_Get
907: ( p_count => x_msg_count
908: , p_data => x_msg_data
909: );
910:

Line 1046: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1042: ELSE
1043:
1044: -- Unexpected error, unrecognized attribute
1045:
1046: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1047: THEN
1048: oe_msg_pub.Add_Exc_Msg
1049: ( G_PKG_NAME
1050: , 'Copy_Attribute_To_Rec'

Line 1048: oe_msg_pub.Add_Exc_Msg

1044: -- Unexpected error, unrecognized attribute
1045:
1046: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1047: THEN
1048: oe_msg_pub.Add_Exc_Msg
1049: ( G_PKG_NAME
1050: , 'Copy_Attribute_To_Rec'
1051: , 'Unrecognized attribute'
1052: );

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

1056:
1057: END IF;
1058: EXCEPTION
1059: WHEN OTHERS THEN
1060: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
1061: THEN
1062: oe_msg_pub.Add_Exc_Msg
1063: ( G_PKG_NAME
1064: , 'Copy_Attribute_To_Rec'

Line 1062: oe_msg_pub.Add_Exc_Msg

1058: EXCEPTION
1059: WHEN OTHERS THEN
1060: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
1061: THEN
1062: oe_msg_pub.Add_Exc_Msg
1063: ( G_PKG_NAME
1064: , 'Copy_Attribute_To_Rec'
1065: );
1066: END IF;

Line 1196: oe_msg_pub.Count_And_Get

1192: x_return_status := FND_API.G_RET_STS_SUCCESS;
1193:
1194: -- Get message count and data
1195:
1196: oe_msg_pub.Count_And_Get
1197: ( p_count => x_msg_count
1198: , p_data => x_msg_data
1199: );
1200:

Line 1215: oe_msg_pub.Count_And_Get

1211: x_return_status := FND_API.G_RET_STS_ERROR;
1212:
1213: -- Get message count and data
1214:
1215: oe_msg_pub.Count_And_Get
1216: ( p_count => x_msg_count
1217: , p_data => x_msg_data
1218: );
1219:

Line 1228: oe_msg_pub.Count_And_Get

1224: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1225:
1226: -- Get message count and data
1227:
1228: oe_msg_pub.Count_And_Get
1229: ( p_count => x_msg_count
1230: , p_data => x_msg_data
1231: );
1232:

Line 1239: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1235: OE_GLOBALS.G_UI_FLAG := FALSE;
1236:
1237: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1238:
1239: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1240: THEN
1241: oe_msg_pub.Add_Exc_Msg
1242: ( G_PKG_NAME
1243: , 'Validate_And_Write'

Line 1241: oe_msg_pub.Add_Exc_Msg

1237: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1238:
1239: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1240: THEN
1241: oe_msg_pub.Add_Exc_Msg
1242: ( G_PKG_NAME
1243: , 'Validate_And_Write'
1244: );
1245: END IF;

Line 1249: oe_msg_pub.Count_And_Get

1245: END IF;
1246:
1247: -- Get message count and data
1248:
1249: oe_msg_pub.Count_And_Get
1250: ( p_count => x_msg_count
1251: , p_data => x_msg_data
1252: );
1253:

Line 1349: oe_msg_pub.Count_And_Get

1345: x_return_status := FND_API.G_RET_STS_SUCCESS;
1346:
1347: -- Get message count and data
1348:
1349: oe_msg_pub.Count_And_Get
1350: ( p_count => x_msg_count
1351: , p_data => x_msg_data
1352: );
1353:

Line 1368: oe_msg_pub.Count_And_Get

1364: x_return_status := FND_API.G_RET_STS_ERROR;
1365:
1366: -- Get message count and data
1367:
1368: oe_msg_pub.Count_And_Get
1369: ( p_count => x_msg_count
1370: , p_data => x_msg_data
1371: );
1372:

Line 1381: oe_msg_pub.Count_And_Get

1377: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1378:
1379: -- Get message count and data
1380:
1381: oe_msg_pub.Count_And_Get
1382: ( p_count => x_msg_count
1383: , p_data => x_msg_data
1384: );
1385:

Line 1392: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1388: OE_GLOBALS.G_UI_FLAG := FALSE;
1389:
1390: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1391:
1392: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1393: THEN
1394: oe_msg_pub.Add_Exc_Msg
1395: ( G_PKG_NAME
1396: , 'Delete_Row'

Line 1394: oe_msg_pub.Add_Exc_Msg

1390: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1391:
1392: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1393: THEN
1394: oe_msg_pub.Add_Exc_Msg
1395: ( G_PKG_NAME
1396: , 'Delete_Row'
1397: );
1398: END IF;

Line 1402: oe_msg_pub.Count_And_Get

1398: END IF;
1399:
1400: -- Get message count and data
1401:
1402: oe_msg_pub.Count_And_Get
1403: ( p_count => x_msg_count
1404: , p_data => x_msg_data
1405: );
1406:

Line 1526: oe_msg_pub.Count_And_Get

1522: x_return_status := FND_API.G_RET_STS_SUCCESS;
1523:
1524: -- Get message count and data
1525:
1526: oe_msg_pub.Count_And_Get
1527: ( p_count => x_msg_count
1528: , p_data => x_msg_data
1529: );
1530:

Line 1545: oe_msg_pub.Count_And_Get

1541: x_return_status := FND_API.G_RET_STS_ERROR;
1542:
1543: -- Get message count and data
1544:
1545: oe_msg_pub.Count_And_Get
1546: ( p_count => x_msg_count
1547: , p_data => x_msg_data
1548: );
1549:

Line 1558: oe_msg_pub.Count_And_Get

1554: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1555:
1556: -- Get message count and data
1557:
1558: oe_msg_pub.Count_And_Get
1559: ( p_count => x_msg_count
1560: , p_data => x_msg_data
1561: );
1562:

Line 1569: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1565: OE_GLOBALS.G_UI_FLAG := FALSE;
1566:
1567: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1568:
1569: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1570: THEN
1571: oe_msg_pub.Add_Exc_Msg
1572: ( G_PKG_NAME
1573: , 'Process_Entity'

Line 1571: oe_msg_pub.Add_Exc_Msg

1567: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1568:
1569: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1570: THEN
1571: oe_msg_pub.Add_Exc_Msg
1572: ( G_PKG_NAME
1573: , 'Process_Entity'
1574: );
1575: END IF;

Line 1579: oe_msg_pub.Count_And_Get

1575: END IF;
1576:
1577: -- Get message count and data
1578:
1579: oe_msg_pub.Count_And_Get
1580: ( p_count => x_msg_count
1581: , p_data => x_msg_data
1582: );
1583:

Line 1641: oe_msg_pub.Count_And_Get

1637: x_return_status := l_return_status;
1638:
1639: -- Get message count and data
1640:
1641: oe_msg_pub.Count_And_Get
1642: ( p_count => x_msg_count
1643: , p_data => x_msg_data
1644: );
1645:

Line 1654: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1650: EXCEPTION
1651:
1652: WHEN OTHERS THEN
1653:
1654: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1655: THEN
1656: oe_msg_pub.Add_Exc_Msg
1657: ( G_PKG_NAME
1658: , 'Lock_Row'

Line 1656: oe_msg_pub.Add_Exc_Msg

1652: WHEN OTHERS THEN
1653:
1654: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1655: THEN
1656: oe_msg_pub.Add_Exc_Msg
1657: ( G_PKG_NAME
1658: , 'Lock_Row'
1659: );
1660: END IF;

Line 1666: oe_msg_pub.Count_And_Get

1662: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1663:
1664: -- Get message count and data
1665:
1666: oe_msg_pub.Count_And_Get
1667: ( p_count => x_msg_count
1668: , p_data => x_msg_data
1669: );
1670: