DBA Data[Home] [Help]

APPS.EGO_LIFECYCLE_ADMIN_PUB dependencies on STANDARD

Line 228: --Standard checks

224: BEGIN
225: IF FND_API.To_Boolean(p_commit) THEN
226: SAVEPOINT Process_Phase_Delete_PUB;
227: END IF;
228: --Standard checks
229: IF NOT FND_API.Compatible_API_Call (l_api_version
230: ,p_api_version
231: ,l_api_name
232: ,g_pkg_name)

Line 247: -- Standard check of p_commit.

243: EGO_LCPHASE_POLICY
244: WHERE
245: PHASE_ID = p_phase_id;
246:
247: -- Standard check of p_commit.
248: IF FND_API.To_Boolean(p_commit)
249: THEN
250: COMMIT WORK;
251: END IF;

Line 286: --Standard checks

282: BEGIN
283: IF FND_API.To_Boolean(p_commit) THEN
284: SAVEPOINT Process_Phase_Code_Delete_PUB;
285: END IF;
286: --Standard checks
287: IF NOT FND_API.Compatible_API_Call (l_api_version
288: ,p_api_version
289: ,l_api_name
290: ,g_pkg_name)

Line 305: -- Standard check of p_commit.

301: EGO_LCPHASE_ITEM_STATUS
302: WHERE
303: PHASE_CODE = p_phase_code;
304:
305: -- Standard check of p_commit.
306: IF FND_API.To_Boolean(p_commit)
307: THEN
308: COMMIT WORK;
309: END IF;

Line 344: --Standard checks

340: BEGIN
341: IF FND_API.To_Boolean(p_commit) THEN
342: SAVEPOINT Delete_Stale_Data_Lc_PUB;
343: END IF;
344: --Standard checks
345: IF NOT FND_API.Compatible_API_Call (l_api_version
346: ,p_api_version
347: ,l_api_name
348: ,g_pkg_name)

Line 361: -- Standard check of p_commit.

357: FROM
358: EGO_OBJ_TYPE_LIFECYCLES
359: WHERE
360: LIFECYCLE_ID = p_lifecycle_id;
361: -- Standard check of p_commit.
362: IF FND_API.To_Boolean(p_commit)
363: THEN
364: COMMIT WORK;
365: END IF;

Line 367: -- Make a standard call to get message count and if count is 1,

363: THEN
364: COMMIT WORK;
365: END IF;
366: x_return_status := FND_API.G_RET_STS_SUCCESS;
367: -- Make a standard call to get message count and if count is 1,
368: -- get message info.
369: -- The client will directly display the x_msg_data (which is already
370: -- translated) if the x_msg_count = 1;
371: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get