DBA Data[Home] [Help]

APPS.JTF_FM_UTL_V dependencies on STANDARD

Line 245: -- Standard begin of API savepoint

241: l_api_version CONSTANT NUMBER := 1.0;
242: l_full_name CONSTANT VARCHAR2(100) := G_PKG_NAME ||'.'|| l_api_name;
243: --
244: BEGIN
245: -- Standard begin of API savepoint
246: SAVEPOINT Get_Message;
247:
248: IF NOT FND_API.Compatible_API_Call (
249: l_api_version,

Line 274: --Standard check of commit

270: FND_MESSAGE.Set_Token('ARG2', p_arg2);
271: END IF;
272: x_message := FND_MESSAGE.Get;
273:
274: --Standard check of commit
275: IF FND_API.To_Boolean ( p_commit ) THEN
276: COMMIT WORK;
277: END IF;
278:

Line 279: --Standard call to get message count and if count=1, get the message

275: IF FND_API.To_Boolean ( p_commit ) THEN
276: COMMIT WORK;
277: END IF;
278:
279: --Standard call to get message count and if count=1, get the message
280: FND_MSG_PUB.count_and_get(
281: p_encoded => FND_API.g_false,
282: p_count => x_msg_count,
283: p_data => x_msg_data

Line 289: -- Standard call to get message count and if count=1, get the message

285: EXCEPTION
286: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
287: ROLLBACK TO Start_Request;
288: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
289: -- Standard call to get message count and if count=1, get the message
290: FND_MSG_PUB.count_and_get(
291: p_encoded => FND_API.g_false,
292: p_count => x_msg_count,
293: p_data => x_msg_data

Line 298: -- Standard call to get message count and if count=1, get the message

294: );
295: WHEN FND_API.G_EXC_ERROR THEN
296: ROLLBACK TO Start_Request;
297: x_return_status := FND_API.G_RET_STS_ERROR;
298: -- Standard call to get message count and if count=1, get the message
299: FND_MSG_PUB.count_and_get(
300: p_encoded => FND_API.g_false,
301: p_count => x_msg_count,
302: p_data => x_msg_data

Line 313: -- Standard call to get message count and if count=1, get the message

309: THEN
310: FND_MSG_PUB.Add_Exc_Msg
311: (G_PKG_NAME, l_api_name);
312: END IF;
313: -- Standard call to get message count and if count=1, get the message
314: FND_MSG_PUB.count_and_get(
315: p_encoded => FND_API.g_false,
316: p_count => x_msg_count,
317: p_data => x_msg_data

Line 359: -- Standard begin of API savepoint

355: l_api_version CONSTANT NUMBER := 1.0;
356: l_full_name CONSTANT VARCHAR2(100) := G_PKG_NAME ||'.'|| l_api_name;
357: --
358: BEGIN
359: -- Standard begin of API savepoint
360: SAVEPOINT Post_Message;
361:
362: IF NOT FND_API.Compatible_API_Call (
363: l_api_version,

Line 391: --Standard check of commit

387: END IF;
388: FND_MSG_PUB.Add;
389: END IF;
390:
391: --Standard check of commit
392: IF FND_API.To_Boolean ( p_commit ) THEN
393: COMMIT WORK;
394: END IF;
395:

Line 396: --Standard call to get message count and if count=1, get the message

392: IF FND_API.To_Boolean ( p_commit ) THEN
393: COMMIT WORK;
394: END IF;
395:
396: --Standard call to get message count and if count=1, get the message
397: FND_MSG_PUB.count_and_get(
398: p_encoded => FND_API.g_false,
399: p_count => x_msg_count,
400: p_data => x_msg_data

Line 406: -- Standard call to get message count and if count=1, get the message

402: EXCEPTION
403: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
404: ROLLBACK TO Post_Message;
405: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
406: -- Standard call to get message count and if count=1, get the message
407: FND_MSG_PUB.count_and_get(
408: p_encoded => FND_API.g_false,
409: p_count => x_msg_count,
410: p_data => x_msg_data

Line 415: -- Standard call to get message count and if count=1, get the message

411: );
412: WHEN FND_API.G_EXC_ERROR THEN
413: ROLLBACK TO Post_Message;
414: x_return_status := FND_API.G_RET_STS_ERROR;
415: -- Standard call to get message count and if count=1, get the message
416: FND_MSG_PUB.count_and_get(
417: p_encoded => FND_API.g_false,
418: p_count => x_msg_count,
419: p_data => x_msg_data

Line 430: -- Standard call to get message count and if count=1, get the message

426: THEN
427: FND_MSG_PUB.Add_Exc_Msg
428: (G_PKG_NAME, l_api_name);
429: END IF;
430: -- Standard call to get message count and if count=1, get the message
431: FND_MSG_PUB.count_and_get(
432: p_encoded => FND_API.g_false,
433: p_count => x_msg_count,
434: p_data => x_msg_data

Line 479: -- Standard begin of API savepoint

475: l_api_version CONSTANT NUMBER := 1.0;
476: l_full_name CONSTANT VARCHAR2(100) := G_PKG_NAME ||'.'|| l_api_name;
477: --
478: BEGIN
479: -- Standard begin of API savepoint
480: SAVEPOINT Get_Post_Message;
481:
482: IF NOT FND_API.Compatible_API_Call (
483: l_api_version,

Line 520: --Standard check of commit

516: FND_MESSAGE.Set_Token('ARG2', p_arg2);
517: END IF;
518: x_message := FND_MESSAGE.Get;
519:
520: --Standard check of commit
521: IF FND_API.To_Boolean ( p_commit ) THEN
522: COMMIT WORK;
523: END IF;
524:

Line 525: --Standard call to get message count and if count=1, get the message

521: IF FND_API.To_Boolean ( p_commit ) THEN
522: COMMIT WORK;
523: END IF;
524:
525: --Standard call to get message count and if count=1, get the message
526: FND_MSG_PUB.count_and_get(
527: p_encoded => FND_API.g_false,
528: p_count => x_msg_count,
529: p_data => x_msg_data

Line 535: -- Standard call to get message count and if count=1, get the message

531: EXCEPTION
532: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
533: ROLLBACK TO Get_Post_Message;
534: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
535: -- Standard call to get message count and if count=1, get the message
536: FND_MSG_PUB.count_and_get(
537: p_encoded => FND_API.g_false,
538: p_count => x_msg_count,
539: p_data => x_msg_data

Line 544: -- Standard call to get message count and if count=1, get the message

540: );
541: WHEN FND_API.G_EXC_ERROR THEN
542: ROLLBACK TO Get_Post_Message;
543: x_return_status := FND_API.G_RET_STS_ERROR;
544: -- Standard call to get message count and if count=1, get the message
545: FND_MSG_PUB.count_and_get(
546: p_encoded => FND_API.g_false,
547: p_count => x_msg_count,
548: p_data => x_msg_data

Line 559: -- Standard call to get message count and if count=1, get the message

555: THEN
556: FND_MSG_PUB.Add_Exc_Msg
557: (G_PKG_NAME, l_api_name);
558: END IF;
559: -- Standard call to get message count and if count=1, get the message
560: FND_MSG_PUB.count_and_get(
561: p_encoded => FND_API.g_false,
562: p_count => x_msg_count,
563: p_data => x_msg_data

Line 1273: -- Standard begin of API savepoint

1269: WHERE
1270: SERVER_ID = l_server_id;
1271:
1272: BEGIN
1273: -- Standard begin of API savepoint
1274: JTF_FM_UTL_V.PRINT_MESSAGE('BEGIN ' || l_full_name , JTF_FM_UTL_V.G_LEVEL_PROCEDURE ,l_full_name);
1275:
1276:
1277: SAVEPOINT FM_SUBMIT_REQ_V1;

Line 1812: --Standard check of commit

1808: FND_MESSAGE.Set_Token('ARG1', l_full_name);
1809: FND_MSG_PUB.Add;
1810: END IF; -- IF FND_MSG_PUB.Check_Msg_Level
1811:
1812: --Standard check of commit
1813:
1814: IF FND_API.To_Boolean(p_commit)
1815: THEN
1816: COMMIT WORK;

Line 1827: --Standard call to get message count and if count=1, get the message

1823: FND_MESSAGE.Set_Token('ARG1',l_full_name||': End');
1824: FND_MSG_PUB.Add;
1825: END IF; -- IF FND_MSG.PUB.Check_Msg_level
1826:
1827: --Standard call to get message count and if count=1, get the message
1828: FND_MSG_PUB.Count_And_Get (p_encoded => FND_API.g_false,
1829: p_count => x_msg_count,
1830: p_data => x_msg_data
1831: );

Line 1840: -- Standard call to get message count and if count=1, get the message

1836: THEN
1837: ROLLBACK TO FM_SUBMIT_REQ_V1;
1838: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1839: JTF_FM_UTL_V.ADD_ERROR_MESSAGE (l_api_name, l_Error_Msg);
1840: -- Standard call to get message count and if count=1, get the message
1841: FND_MSG_PUB.Count_And_Get (p_encoded => FND_API.g_false,
1842: p_count => x_msg_count,
1843: p_data => x_msg_data
1844: );

Line 1854: -- Standard call to get message count and if count=1, get the message

1850: x_return_status := FND_API.G_RET_STS_ERROR;
1851: JTF_FM_UTL_V.ADD_ERROR_MESSAGE (l_api_name, l_Error_Msg);
1852: JTF_FM_UTL_V.PRINT_MESSAGE('Expected Error Occured'||
1853: l_Error_Msg,JTF_FM_UTL_V.G_LEVEL_STATEMENT,l_full_name);
1854: -- Standard call to get message count and if count=1, get the message
1855: FND_MSG_PUB.Count_And_Get (p_encoded => FND_API.g_false,
1856: p_count => x_msg_count,
1857: p_data => x_msg_data
1858: );

Line 1872: -- Standard call to get message count and if count=1, get the message

1868: THEN
1869: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1870: END IF; -- IF FND_MSG_PUB.Check_Msg_Level
1871:
1872: -- Standard call to get message count and if count=1, get the message
1873: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
1874: p_count => x_msg_count,
1875: p_data => x_msg_data
1876: );