DBA Data[Home] [Help]

APPS.AMS_FULFILL_PVT dependencies on FND_MSG_PUB

Line 48: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

44: -- 29-May-2006 kbasavar Modified ams_fulfill for delivery_mode fix
45:
46: G_PKG_NAME CONSTANT VARCHAR2(30):='AMS_FULFILL_PVT';
47: G_FILE_NAME CONSTANT VARCHAR2(12):='amsvffmb.pls';
48: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
49: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
50: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
51:
52: -- Debug mode

Line 49: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

45:
46: G_PKG_NAME CONSTANT VARCHAR2(30):='AMS_FULFILL_PVT';
47: G_FILE_NAME CONSTANT VARCHAR2(12):='amsvffmb.pls';
48: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
49: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
50: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
51:
52: -- Debug mode
53: --g_debug boolean := FALSE;

Line 50: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

46: G_PKG_NAME CONSTANT VARCHAR2(30):='AMS_FULFILL_PVT';
47: G_FILE_NAME CONSTANT VARCHAR2(12):='amsvffmb.pls';
48: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
49: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
50: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
51:
52: -- Debug mode
53: --g_debug boolean := FALSE;
54: --g_debug boolean := TRUE;

Line 156: FND_MSG_PUB.initialize;

152: --
153: -- Initialize message list IF p_init_msg_list is set to TRUE.
154: --
155: IF FND_API.to_Boolean( p_init_msg_list ) THEN
156: FND_MSG_PUB.initialize;
157: END IF;
158:
159: --
160: -- Standard call to check for call compatibility.

Line 289: FND_MSG_PUB.Count_AND_Get

285:
286: --
287: -- Standard call to get message count AND IF count is 1, get message info.
288: --
289: FND_MSG_PUB.Count_AND_Get
290: ( p_count => x_msg_count,
291: p_data => x_msg_data,
292: p_encoded => FND_API.G_FALSE
293: );

Line 306: FND_MSG_PUB.Count_AND_Get

302:
303: ROLLBACK TO FulFill_OC_PT;
304: x_return_status := FND_API.G_RET_STS_ERROR ;
305:
306: FND_MSG_PUB.Count_AND_Get
307: ( p_count => x_msg_count,
308: p_data => x_msg_data,
309: p_encoded => FND_API.G_FALSE
310: );

Line 317: FND_MSG_PUB.Count_AND_Get

313:
314: ROLLBACK TO FulFill_OC_PT;
315: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
316:
317: FND_MSG_PUB.Count_AND_Get
318: ( p_count => x_msg_count,
319: p_data => x_msg_data,
320: p_encoded => FND_API.G_FALSE
321: );

Line 329: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

325:
326: ROLLBACK TO FulFill_OC_PT;
327: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
328:
329: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
330: THEN
331: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
332: END IF;
333:

Line 331: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

327: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
328:
329: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
330: THEN
331: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
332: END IF;
333:
334: FND_MSG_PUB.Count_AND_Get
335: ( p_count => x_msg_count,

Line 334: FND_MSG_PUB.Count_AND_Get

330: THEN
331: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
332: END IF;
333:
334: FND_MSG_PUB.Count_AND_Get
335: ( p_count => x_msg_count,
336: p_data => x_msg_data,
337: p_encoded => FND_API.G_FALSE
338: );

Line 497: FND_MSG_PUB.initialize;

493: --
494: -- Initialize message list IF p_init_msg_list is set to TRUE.
495: --
496: IF FND_API.to_Boolean( p_init_msg_list ) THEN
497: FND_MSG_PUB.initialize;
498: END IF;
499:
500: --
501: -- Standard call to check for call compatibility.

Line 689: FND_MSG_PUB.Count_AND_Get

685:
686: --
687: -- Standard call to get message count AND IF count is 1, get message info.
688: --
689: FND_MSG_PUB.Count_AND_Get
690: ( p_count => x_msg_count,
691: p_data => x_msg_data,
692: p_encoded => FND_API.G_FALSE
693: );

Line 706: FND_MSG_PUB.Count_AND_Get

702:
703: ROLLBACK TO Create_FULFILL_PVT;
704: x_return_status := FND_API.G_RET_STS_ERROR ;
705:
706: FND_MSG_PUB.Count_AND_Get
707: ( p_count => x_msg_count,
708: p_data => x_msg_data,
709: p_encoded => FND_API.G_FALSE
710: );

Line 717: FND_MSG_PUB.Count_AND_Get

713:
714: ROLLBACK TO Create_FULFILL_PVT;
715: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
716:
717: FND_MSG_PUB.Count_AND_Get
718: ( p_count => x_msg_count,
719: p_data => x_msg_data,
720: p_encoded => FND_API.G_FALSE
721: );

Line 729: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

725:
726: ROLLBACK TO Create_FULFILL_PVT;
727: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
728:
729: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
730: THEN
731: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
732: END IF;
733:

Line 731: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

727: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
728:
729: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
730: THEN
731: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
732: END IF;
733:
734: FND_MSG_PUB.Count_AND_Get
735: ( p_count => x_msg_count,

Line 734: FND_MSG_PUB.Count_AND_Get

730: THEN
731: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
732: END IF;
733:
734: FND_MSG_PUB.Count_AND_Get
735: ( p_count => x_msg_count,
736: p_data => x_msg_data,
737: p_encoded => FND_API.G_FALSE
738: );

Line 806: FND_MSG_PUB.initialize;

802: --
803: -- Initialize message list IF p_init_msg_list is set to TRUE.
804: --
805: IF FND_API.to_Boolean( p_init_msg_list ) THEN
806: FND_MSG_PUB.initialize;
807: END IF;
808:
809: --
810: -- Standard call to check for call compatibility.

Line 924: FND_MSG_PUB.Count_AND_Get

920:
921: --
922: -- Standard call to get message count AND IF count is 1, get message info.
923: --
924: FND_MSG_PUB.Count_AND_Get
925: ( p_count => x_msg_count,
926: p_data => x_msg_data,
927: p_encoded => FND_API.G_FALSE
928: );

Line 942: FND_MSG_PUB.Count_AND_Get

938:
939: ROLLBACK TO AMS_EXEC_SCHEDULE;
940: x_return_status := FND_API.G_RET_STS_ERROR ;
941:
942: FND_MSG_PUB.Count_AND_Get
943: ( p_count => x_msg_count,
944: p_data => x_msg_data,
945: p_encoded => FND_API.G_FALSE
946: );

Line 953: FND_MSG_PUB.Count_AND_Get

949:
950: ROLLBACK TO AMS_EXEC_SCHEDULE;
951: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
952:
953: FND_MSG_PUB.Count_AND_Get
954: ( p_count => x_msg_count,
955: p_data => x_msg_data,
956: p_encoded => FND_API.G_FALSE
957: );

Line 964: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

960:
961: ROLLBACK TO AMS_EXEC_SCHEDULE;
962: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
963:
964: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
965: THEN
966: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
967: END IF;
968:

Line 966: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

962: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
963:
964: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
965: THEN
966: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
967: END IF;
968:
969: FND_MSG_PUB.Count_AND_Get
970: ( p_count => x_msg_count,

Line 969: FND_MSG_PUB.Count_AND_Get

965: THEN
966: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
967: END IF;
968:
969: FND_MSG_PUB.Count_AND_Get
970: ( p_count => x_msg_count,
971: p_data => x_msg_data,
972: p_encoded => FND_API.G_FALSE
973: );

Line 1085: FND_MSG_PUB.initialize;

1081: --
1082: -- Initialize message list IF p_init_msg_list is set to TRUE.
1083: --
1084: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1085: FND_MSG_PUB.initialize;
1086: END IF;
1087:
1088: --
1089: -- Standard call to check for call compatibility.

Line 1202: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

1198: ELSE
1199: IF (AMS_DEBUG_HIGH_ON) THEN
1200: AMS_Utility_PVT.debug_message('Can only Fulfill Email or Fax');
1201: END IF;
1202: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1203: THEN -- MMSG
1204: FND_MESSAGE.Set_Name('AMS', 'AMS_FFM_INVALID_MEDIA');
1205: FND_MSG_PUB.Add;
1206: END IF;

Line 1205: FND_MSG_PUB.Add;

1201: END IF;
1202: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1203: THEN -- MMSG
1204: FND_MESSAGE.Set_Name('AMS', 'AMS_FFM_INVALID_MEDIA');
1205: FND_MSG_PUB.Add;
1206: END IF;
1207: RAISE FND_API.G_EXC_ERROR;
1208: x_return_status := FND_API.G_RET_STS_ERROR ;
1209: RETURN;

Line 1225: FND_MSG_PUB.Count_AND_Get

1221:
1222: --
1223: -- Standard call to get message count AND IF count is 1, get message info.
1224: --
1225: FND_MSG_PUB.Count_AND_Get
1226: ( p_count => x_msg_count,
1227: p_data => x_msg_data,
1228: p_encoded => FND_API.G_FALSE
1229: );

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

1235: EXCEPTION
1236: WHEN OTHERS THEN
1237: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1238:
1239: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
1240: THEN
1241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1242: END IF;
1243:

Line 1241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1237: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1238:
1239: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
1240: THEN
1241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1242: END IF;
1243:
1244: FND_MSG_PUB.Count_AND_Get
1245: ( p_count => x_msg_count,

Line 1244: FND_MSG_PUB.Count_AND_Get

1240: THEN
1241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1242: END IF;
1243:
1244: FND_MSG_PUB.Count_AND_Get
1245: ( p_count => x_msg_count,
1246: p_data => x_msg_data,
1247: p_encoded => FND_API.G_FALSE
1248: );

Line 1323: FND_MSG_PUB.initialize;

1319: --
1320: -- Initialize message list IF p_init_msg_list is set to TRUE.
1321: --
1322: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1323: FND_MSG_PUB.initialize;
1324: END IF;
1325:
1326: --
1327: -- Standard call to check for call compatibility.

Line 1387: FND_MSG_PUB.Count_AND_Get

1383:
1384: --
1385: -- Standard call to get message count AND IF count is 1, get message info.
1386: --
1387: FND_MSG_PUB.Count_AND_Get
1388: ( p_count => x_msg_count,
1389: p_data => x_msg_data,
1390: p_encoded => FND_API.G_FALSE
1391: );

Line 1402: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

1398: EXCEPTION
1399: WHEN OTHERS THEN
1400: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1401:
1402: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
1403: THEN
1404: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1405: END IF;
1406:

Line 1404: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1400: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1401:
1402: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
1403: THEN
1404: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1405: END IF;
1406:
1407: FND_MSG_PUB.Count_AND_Get
1408: ( p_count => x_msg_count,

Line 1407: FND_MSG_PUB.Count_AND_Get

1403: THEN
1404: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1405: END IF;
1406:
1407: FND_MSG_PUB.Count_AND_Get
1408: ( p_count => x_msg_count,
1409: p_data => x_msg_data,
1410: p_encoded => FND_API.G_FALSE
1411: );

Line 1542: FND_MSG_PUB.initialize;

1538: --
1539: -- Initialize message list IF p_init_msg_list is set to TRUE.
1540: --
1541: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1542: FND_MSG_PUB.initialize;
1543: END IF;
1544:
1545: --
1546: -- Standard call to check for call compatibility.

Line 1670: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

1666: THEN
1667: IF (AMS_DEBUG_HIGH_ON) THEN
1668: AMS_Utility_PVT.debug_message('Error Msg : Can FulFill only Email or Fax Requests');
1669: END IF;
1670: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1671: THEN -- MMSG
1672: FND_MESSAGE.Set_Name('AMS', 'AMS_FFM_INVALID_MEDIA');
1673: FND_MSG_PUB.Add;
1674: END IF;

Line 1673: FND_MSG_PUB.Add;

1669: END IF;
1670: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1671: THEN -- MMSG
1672: FND_MESSAGE.Set_Name('AMS', 'AMS_FFM_INVALID_MEDIA');
1673: FND_MSG_PUB.Add;
1674: END IF;
1675: RAISE FND_API.G_EXC_ERROR;
1676: x_return_status := FND_API.G_RET_STS_ERROR ;
1677: RETURN;

Line 1792: FND_MSG_PUB.Count_AND_Get

1788:
1789: --
1790: -- Standard call to get message count AND IF count is 1, get message info.
1791: --
1792: FND_MSG_PUB.Count_AND_Get
1793: ( p_count => x_msg_count,
1794: p_data => x_msg_data,
1795: p_encoded => FND_API.G_FALSE
1796: );

Line 1811: FND_MSG_PUB.Count_AND_Get

1807: END IF ;
1808: ROLLBACK TO Get_Deliverable_Info_SP;
1809: x_return_status := FND_API.G_RET_STS_ERROR ;
1810:
1811: FND_MSG_PUB.Count_AND_Get
1812: ( p_count => x_msg_count,
1813: p_data => x_msg_data,
1814: p_encoded => FND_API.G_FALSE
1815: );

Line 1825: FND_MSG_PUB.Count_AND_Get

1821: END IF ;
1822: ROLLBACK TO Get_Deliverable_Info_SP;
1823: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1824:
1825: FND_MSG_PUB.Count_AND_Get
1826: ( p_count => x_msg_count,
1827: p_data => x_msg_data,
1828: p_encoded => FND_API.G_FALSE
1829: );

Line 1839: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

1835: END IF ;
1836: ROLLBACK TO Get_Deliverable_Info_SP;
1837: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1838:
1839: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
1840: THEN
1841: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1842: END IF;
1843:

Line 1841: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1837: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1838:
1839: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
1840: THEN
1841: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1842: END IF;
1843:
1844: FND_MSG_PUB.Count_AND_Get
1845: ( p_count => x_msg_count,

Line 1844: FND_MSG_PUB.Count_AND_Get

1840: THEN
1841: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1842: END IF;
1843:
1844: FND_MSG_PUB.Count_AND_Get
1845: ( p_count => x_msg_count,
1846: p_data => x_msg_data,
1847: p_encoded => FND_API.G_FALSE
1848: );

Line 1990: FND_MSG_PUB.initialize;

1986: --
1987: -- Initialize message list IF p_init_msg_list is set to TRUE.
1988: --
1989: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1990: FND_MSG_PUB.initialize;
1991: END IF;
1992:
1993: --
1994: -- Standard call to check for call compatibility.

Line 2220: FND_MSG_PUB.Count_AND_Get

2216:
2217: --
2218: -- Standard call to get message count AND IF count is 1, get message info.
2219: --
2220: FND_MSG_PUB.Count_AND_Get
2221: ( p_count => x_msg_count,
2222: p_data => x_msg_data,
2223: p_encoded => FND_API.G_FALSE
2224: );

Line 2237: FND_MSG_PUB.Count_AND_Get

2233:
2234: ROLLBACK TO Create_FULFILL_PVT;
2235: x_return_status := FND_API.G_RET_STS_ERROR ;
2236:
2237: FND_MSG_PUB.Count_AND_Get
2238: ( p_count => x_msg_count,
2239: p_data => x_msg_data,
2240: p_encoded => FND_API.G_FALSE
2241: );

Line 2248: FND_MSG_PUB.Count_AND_Get

2244:
2245: ROLLBACK TO Create_FULFILL_PVT;
2246: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2247:
2248: FND_MSG_PUB.Count_AND_Get
2249: ( p_count => x_msg_count,
2250: p_data => x_msg_data,
2251: p_encoded => FND_API.G_FALSE
2252: );

Line 2260: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

2256:
2257: ROLLBACK TO Create_FULFILL_PVT;
2258: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2259:
2260: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
2261: THEN
2262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2263: END IF;
2264:

Line 2262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

2258: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2259:
2260: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
2261: THEN
2262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2263: END IF;
2264:
2265: FND_MSG_PUB.Count_AND_Get
2266: ( p_count => x_msg_count,

Line 2265: FND_MSG_PUB.Count_AND_Get

2261: THEN
2262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2263: END IF;
2264:
2265: FND_MSG_PUB.Count_AND_Get
2266: ( p_count => x_msg_count,
2267: p_data => x_msg_data,
2268: p_encoded => FND_API.G_FALSE
2269: );

Line 2360: FND_MSG_PUB.initialize;

2356: AMS_Utility_PVT.debug_message(l_full_name||': start');
2357: END IF;
2358:
2359: IF FND_API.to_Boolean( p_init_msg_list ) THEN
2360: FND_MSG_PUB.initialize;
2361: END IF;
2362:
2363: IF NOT FND_API.Compatible_API_Call ( l_api_version,
2364: p_api_version,

Line 2505: FND_MSG_PUB.Count_AND_Get

2501:
2502: --
2503: -- Standard call to get message count AND IF count is 1, get message info.
2504: --
2505: FND_MSG_PUB.Count_AND_Get
2506: ( p_count => x_msg_count,
2507: p_data => x_msg_data,
2508: p_encoded => FND_API.G_FALSE
2509: );

Line 2523: FND_MSG_PUB.Count_AND_Get

2519:
2520: ROLLBACK TO Send_Test_Email;
2521: x_return_status := FND_API.G_RET_STS_ERROR ;
2522:
2523: FND_MSG_PUB.Count_AND_Get
2524: ( p_count => x_msg_count,
2525: p_data => x_msg_data,
2526: p_encoded => FND_API.G_FALSE
2527: );

Line 2534: FND_MSG_PUB.Count_AND_Get

2530:
2531: ROLLBACK TO Send_Test_Email;
2532: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2533:
2534: FND_MSG_PUB.Count_AND_Get
2535: ( p_count => x_msg_count,
2536: p_data => x_msg_data,
2537: p_encoded => FND_API.G_FALSE
2538: );

Line 2545: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

2541:
2542: ROLLBACK TO Send_Test_Email;
2543: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2544:
2545: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
2546: THEN
2547: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2548: END IF;
2549:

Line 2547: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

2543: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2544:
2545: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
2546: THEN
2547: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2548: END IF;
2549:
2550: FND_MSG_PUB.Count_AND_Get
2551: ( p_count => x_msg_count,

Line 2550: FND_MSG_PUB.Count_AND_Get

2546: THEN
2547: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2548: END IF;
2549:
2550: FND_MSG_PUB.Count_AND_Get
2551: ( p_count => x_msg_count,
2552: p_data => x_msg_data,
2553: p_encoded => FND_API.G_FALSE
2554: );

Line 2614: FND_MSG_PUB.initialize;

2610: AMS_Utility_PVT.debug_message(l_full_name||': start');
2611: END IF;
2612:
2613: IF FND_API.to_Boolean( p_init_msg_list ) THEN
2614: FND_MSG_PUB.initialize;
2615: END IF;
2616:
2617: IF NOT FND_API.Compatible_API_Call ( l_api_version,
2618: p_api_version,

Line 2650: FND_MSG_PUB.Count_AND_Get

2646:
2647: --
2648: -- Standard call to get message count AND IF count is 1, get message info.
2649: --
2650: FND_MSG_PUB.Count_AND_Get
2651: ( p_count => x_msg_count,
2652: p_data => x_msg_data,
2653: p_encoded => FND_API.G_FALSE
2654: );

Line 2666: FND_MSG_PUB.Count_AND_Get

2662:
2663: ROLLBACK TO Attach_Query;
2664: x_return_status := FND_API.G_RET_STS_ERROR ;
2665:
2666: FND_MSG_PUB.Count_AND_Get
2667: ( p_count => x_msg_count,
2668: p_data => x_msg_data,
2669: p_encoded => FND_API.G_FALSE
2670: );

Line 2677: FND_MSG_PUB.Count_AND_Get

2673:
2674: ROLLBACK TO Attach_Query;
2675: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2676:
2677: FND_MSG_PUB.Count_AND_Get
2678: ( p_count => x_msg_count,
2679: p_data => x_msg_data,
2680: p_encoded => FND_API.G_FALSE
2681: );

Line 2688: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

2684:
2685: ROLLBACK TO Attach_Query;
2686: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2687:
2688: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
2689: THEN
2690: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2691: END IF;
2692:

Line 2690: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

2686: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2687:
2688: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
2689: THEN
2690: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2691: END IF;
2692:
2693: FND_MSG_PUB.Count_AND_Get
2694: ( p_count => x_msg_count,

Line 2693: FND_MSG_PUB.Count_AND_Get

2689: THEN
2690: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2691: END IF;
2692:
2693: FND_MSG_PUB.Count_AND_Get
2694: ( p_count => x_msg_count,
2695: p_data => x_msg_data,
2696: p_encoded => FND_API.G_FALSE
2697: );