DBA Data[Home] [Help]

APPS.INV_SHORTSTATEMENT_PVT dependencies on STANDARD

Line 75: -- Standard Call to check for call compatibility

71: L_Check_jobs NUMBER;
72: L_Check_rep NUMBER;
73: L_Order_System VARCHAR2(10); -- The type of order entry system which is installed.
74: BEGIN
75: -- Standard Call to check for call compatibility
76: IF NOT FND_API.Compatible_API_Call(l_api_version
77: , p_api_version
78: , l_api_name
79: , G_PKG_NAME) THEN

Line 987: -- Standard call to get message count and if count is 1, get message info

983: 'COMMIT; '||FND_GLOBAL.Newline||
984: 'END; '||FND_GLOBAL.Newline;
985: x_short_stat_detail := L_Statement;
986: --
987: -- Standard call to get message count and if count is 1, get message info
988: FND_MSG_PUB.Count_And_Get
989: (p_count => x_msg_count
990: , p_data => x_msg_data);
991: EXCEPTION

Line 1088: -- Standard Call to check for call compatibility

1084: L_Check_jobs NUMBER;
1085: L_Check_rep NUMBER;
1086: L_Order_System VARCHAR2(10); -- The type of order entry system which is installed.
1087: BEGIN
1088: -- Standard Call to check for call compatibility
1089: IF NOT FND_API.Compatible_API_Call(l_api_version
1090: , p_api_version
1091: , l_api_name
1092: , G_PKG_NAME) THEN

Line 1549: -- Standard call to get message count and if count is 1, get message info

1545: L_Statement := L_Statement||
1546: 'END; '||FND_GLOBAL.Newline;
1547: x_short_stat_sum := L_Statement;
1548: --
1549: -- Standard call to get message count and if count is 1, get message info
1550: FND_MSG_PUB.Count_And_Get
1551: (p_count => x_msg_count
1552: , p_data => x_msg_data);
1553: EXCEPTION

Line 1628: -- Standard Call to check for call compatibility

1624: L_api_version CONSTANT NUMBER := 1.0;
1625: L_api_name CONSTANT VARCHAR2(30) := 'InsertUpdate';
1626: L_Object_Exists NUMBER;
1627: BEGIN
1628: -- Standard Call to check for call compatibility
1629: IF NOT FND_API.Compatible_API_Call(l_api_version
1630: , p_api_version
1631: , l_api_name
1632: , G_PKG_NAME) THEN

Line 1716: -- Standard call to get message count and if count is 1, get message info

1712: AND detail_sum_flag = 2;
1713: END IF;
1714: CLOSE crsStatement;
1715: --
1716: -- Standard call to get message count and if count is 1, get message info
1717: FND_MSG_PUB.Count_And_Get
1718: (p_count => x_msg_count
1719: , p_data => x_msg_data);
1720: EXCEPTION

Line 1818: -- Standard Call to check for call compatibility

1814: L_api_name CONSTANT VARCHAR2(30) := 'StartBuild';
1815: L_Short_stat_sum LONG;
1816: L_Short_stat_detail LONG;
1817: BEGIN
1818: -- Standard Call to check for call compatibility
1819: IF NOT FND_API.Compatible_API_Call(l_api_version
1820: , p_api_version
1821: , l_api_name
1822: , G_PKG_NAME) THEN

Line 1905: -- Standard check of p_commit

1901: p_short_stat_sum => L_Short_stat_sum,
1902: p_short_stat_detail => L_Short_stat_detail
1903: );
1904: --
1905: -- Standard check of p_commit
1906: IF FND_API.to_Boolean(p_commit) THEN
1907: COMMIT;
1908: END IF;
1909: -- Standard call to get message count and if count is 1, get message info

Line 1909: -- Standard call to get message count and if count is 1, get message info

1905: -- Standard check of p_commit
1906: IF FND_API.to_Boolean(p_commit) THEN
1907: COMMIT;
1908: END IF;
1909: -- Standard call to get message count and if count is 1, get message info
1910: FND_MSG_PUB.Count_And_Get
1911: (p_count => x_msg_count
1912: , p_data => x_msg_data);
1913: EXCEPTION