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 1044: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

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

Line 1046: oe_msg_pub.Add_Exc_Msg

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

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

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

Line 1060: oe_msg_pub.Add_Exc_Msg

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

Line 1194: oe_msg_pub.Count_And_Get

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

Line 1213: oe_msg_pub.Count_And_Get

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

Line 1226: oe_msg_pub.Count_And_Get

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

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

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

Line 1239: oe_msg_pub.Add_Exc_Msg

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

Line 1247: oe_msg_pub.Count_And_Get

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

Line 1347: oe_msg_pub.Count_And_Get

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

Line 1366: oe_msg_pub.Count_And_Get

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

Line 1379: oe_msg_pub.Count_And_Get

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

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

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

Line 1392: oe_msg_pub.Add_Exc_Msg

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

Line 1400: oe_msg_pub.Count_And_Get

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

Line 1524: oe_msg_pub.Count_And_Get

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

Line 1543: oe_msg_pub.Count_And_Get

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

Line 1556: oe_msg_pub.Count_And_Get

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

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

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

Line 1569: oe_msg_pub.Add_Exc_Msg

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

Line 1577: oe_msg_pub.Count_And_Get

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

Line 1639: oe_msg_pub.Count_And_Get

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

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

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

Line 1654: oe_msg_pub.Add_Exc_Msg

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

Line 1664: oe_msg_pub.Count_And_Get

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