DBA Data[Home] [Help]

APPS.AST_CAMP_REASON_PVT dependencies on STANDARD

Line 55: -- Standard Start of API savepoint

51:
52: BEGIN
53:
54:
55: -- Standard Start of API savepoint
56: SAVEPOINT CREATE_camp_reason_PVT;
57:
58: -- Standard call to check for call compatibility.
59: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

Line 58: -- Standard call to check for call compatibility.

54:
55: -- Standard Start of API savepoint
56: SAVEPOINT CREATE_camp_reason_PVT;
57:
58: -- Standard call to check for call compatibility.
59: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
60: p_api_version_number,
61: l_api_name,
62: G_PKG_NAME)

Line 139: -- Standard check for p_commit

135: --
136: -- End of API body
137: --
138:
139: -- Standard check for p_commit
140: IF FND_API.to_Boolean( p_commit )
141: THEN
142: COMMIT WORK;
143: END IF;

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

145:
146: -- Debug Message
147: JTF_PLSQL_API.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'AST', 'Private API: ' || l_api_name || 'end');
148:
149: -- Standard call to get message count and if count is 1, get message info.
150: FND_MSG_PUB.Count_And_Get
151: ( p_count => x_msg_count,
152: p_data => x_msg_data
153: );

Line 206: -- Standard Start of API savepoint

202: l_api_name CONSTANT VARCHAR2(30) := 'Delete_camp_reason';
203: l_api_version_number CONSTANT NUMBER := 1.0;
204: l_camp_reason_Rec camp_reason_Rec_Type := p_camp_reason_Rec;
205: BEGIN
206: -- Standard Start of API savepoint
207: SAVEPOINT DELETE_camp_reason_PVT;
208:
209: -- Standard call to check for call compatibility.
210: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

Line 209: -- Standard call to check for call compatibility.

205: BEGIN
206: -- Standard Start of API savepoint
207: SAVEPOINT DELETE_camp_reason_PVT;
208:
209: -- Standard call to check for call compatibility.
210: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
211: p_api_version_number,
212: l_api_name,
213: G_PKG_NAME)

Line 243: -- Standard check for p_commit

239: WHERE reason_id = l_camp_reason_Rec.reason_id
240: AND source_code = l_camp_reason_Rec.source_code
241: AND object_id = l_camp_reason_Rec.object_id;
242:
243: -- Standard check for p_commit
244: IF FND_API.to_Boolean( p_commit )
245: THEN
246: COMMIT WORK;
247: END IF;

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

251: JTF_PLSQL_API.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'AST', 'Private API: ' || l_api_name || 'end');
252:
253:
254:
255: -- Standard call to get message count and if count is 1, get message info.
256: FND_MSG_PUB.Count_And_Get
257: ( p_count => x_msg_count,
258: p_data => x_msg_data
259: );