DBA Data[Home] [Help]

APPS.AST_CAMP_RESULT_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_result_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_result_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 137: -- Standard check for p_commit

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

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

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

Line 204: -- Standard Start of API savepoint

200: l_api_name CONSTANT VARCHAR2(30) := 'Delete_camp_result';
201: l_api_version_number CONSTANT NUMBER := 1.0;
202: l_camp_result_Rec camp_result_Rec_Type := p_camp_result_Rec;
203: BEGIN
204: -- Standard Start of API savepoint
205: SAVEPOINT DELETE_camp_result_PVT;
206:
207: -- Standard call to check for call compatibility.
208: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

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

Line 241: -- Standard check for p_commit

237: WHERE result_id = l_camp_result_Rec.result_id
238: AND source_code = l_camp_result_Rec.source_code
239: AND object_id = l_camp_result_Rec.object_id;
240:
241: -- Standard check for p_commit
242: IF FND_API.to_Boolean( p_commit )
243: THEN
244: COMMIT WORK;
245: END IF;

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

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