DBA Data[Home] [Help]

APPS.AMS_ACTMETRICFACT_PVT dependencies on STANDARD

Line 433: -- Standard API information constants.

429: x_activity_metric_fact_id OUT NOCOPY NUMBER
430: )
431: IS
432: --
433: -- Standard API information constants.
434: --
435: L_API_VERSION CONSTANT NUMBER := 1.0;
436: L_API_NAME CONSTANT VARCHAR2(30) := 'CREATE_ACTMETRICFACT';
437: L_FULL_NAME CONSTANT VARCHAR2(60) := G_PKG_NAME ||'.'|| L_API_NAME;

Line 478: -- Standard check for API version compatibility.

474: FND_MSG_PUB.Initialize;
475: END IF;
476:
477: --
478: -- Standard check for API version compatibility.
479: --
480: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
481: p_api_version,
482: L_API_NAME,

Line 808: -- Standard check for commit request.

804: -- End API Body.
805: --
806:
807: --
808: -- Standard check for commit request.
809: --
810: IF FND_API.To_Boolean (p_commit) THEN
811: COMMIT WORK;
812: END IF;

Line 815: -- Standard API to get message count, and if 1,

811: COMMIT WORK;
812: END IF;
813:
814: --
815: -- Standard API to get message count, and if 1,
816: -- set the message data OUT NOCOPY variable.
817: --
818: FND_MSG_PUB.Count_And_Get (
819: p_count => x_msg_count,

Line 929: -- Standard check for API version compatibility.

925: FND_MSG_PUB.Initialize;
926: END IF;
927:
928: --
929: -- Standard check for API version compatibility.
930: --
931: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
932: p_api_version,
933: L_API_NAME,

Line 1158: -- Standard API to get message count, and if 1,

1154: COMMIT;
1155: END IF;
1156:
1157: --
1158: -- Standard API to get message count, and if 1,
1159: -- set the message data OUT NOCOPY variable.
1160: --
1161: FND_MSG_PUB.Count_And_Get (
1162: p_count => x_msg_count,

Line 1269: -- Standard check for API version compatibility.

1265: FND_MSG_PUB.Initialize;
1266: END IF;
1267:
1268: --
1269: -- Standard check for API version compatibility.
1270: --
1271: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
1272: p_api_version,
1273: L_API_NAME,

Line 1309: -- Standard API to get message count, and if 1,

1305: CLOSE c_act_metric_fact_info;
1306:
1307:
1308: --
1309: -- Standard API to get message count, and if 1,
1310: -- set the message data OUT NOCOPY variable.
1311: --
1312: FND_MSG_PUB.Count_And_Get (
1313: p_count => x_msg_count,

Line 1850: -- Standard check for API version compatibility.

1846: FND_MSG_PUB.Initialize;
1847: END IF;
1848:
1849: --
1850: -- Standard check for API version compatibility.
1851: --
1852: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
1853: p_api_version,
1854: L_API_NAME,

Line 1917: -- Standard API to get message count, and if 1,

1913: END IF;
1914:
1915:
1916: --
1917: -- Standard API to get message count, and if 1,
1918: -- set the message data OUT NOCOPY variable.
1919: --
1920: FND_MSG_PUB.Count_And_Get (
1921: p_count => x_msg_count,

Line 2005: -- Standard check for API version compatibility.

2001: FND_MSG_PUB.Initialize;
2002: END IF;
2003:
2004: --
2005: -- Standard check for API version compatibility.
2006: --
2007: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
2008: p_api_version,
2009: L_API_NAME,

Line 2083: -- Standard API to get message count, and if 1,

2079: -- End API Body.
2080: --
2081:
2082: --
2083: -- Standard API to get message count, and if 1,
2084: -- set the message data OUT NOCOPY variable.
2085: --
2086: FND_MSG_PUB.Count_And_Get (
2087: p_count => x_msg_count,

Line 2467: l_item_name VARCHAR2(30); -- Used to standardize error messages.

2463: p_act_metric_fact_rec IN act_metric_fact_rec_type,
2464: x_return_status OUT NOCOPY VARCHAR2
2465: )
2466: IS
2467: l_item_name VARCHAR2(30); -- Used to standardize error messages.
2468: l_act_metric_fact_rec act_metric_fact_rec_type := p_act_metric_fact_rec;
2469: l_return_status VARCHAR2(1);
2470:
2471: