DBA Data[Home] [Help]

APPS.QA_RESULTS_PUB dependencies on STANDARD

Line 148: -- Standard Start of API savepoint

144: l_error_found BOOLEAN;
145:
146:
147: BEGIN
148: -- Standard Start of API savepoint
149:
150: SAVEPOINT insert_row_pub;
151:
152: -- Standard call to check for call compatibility.

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

148: -- Standard Start of API savepoint
149:
150: SAVEPOINT insert_row_pub;
151:
152: -- Standard call to check for call compatibility.
153: IF NOT FND_API.Compatible_API_Call (l_api_version,
154: p_api_version,
155: l_api_name,
156: G_PKG_NAME ) THEN

Line 217: -- Standard check of p_commit.

213: plan_id => p_plan_id);
214: -- Bug 5355933. Do not call commit if above returns error
215: -- saugupta Wed, 26 Jul 2006 03:57:30 -0700 PDT
216: ELSE
217: -- Standard check of p_commit.
218: IF FND_API.To_Boolean( p_commit ) THEN
219: COMMIT;
220: END IF;
221: END IF;

Line 303: -- Standard Start of API savepoint

299:
300:
301: BEGIN
302:
303: -- Standard Start of API savepoint
304:
305: SAVEPOINT update_row_pub;
306:
307: -- Standard call to check for call compatibility.

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

303: -- Standard Start of API savepoint
304:
305: SAVEPOINT update_row_pub;
306:
307: -- Standard call to check for call compatibility.
308: IF NOT FND_API.Compatible_API_Call (l_api_version,
309: p_api_version,
310: l_api_name,
311: G_PKG_NAME ) THEN

Line 356: -- Standard check of p_commit.

352: IF (l_error_found = TRUE) THEN
353: x_return_status := FND_API.G_RET_STS_ERROR;
354: END IF;
355:
356: -- Standard check of p_commit.
357: IF FND_API.To_Boolean( p_commit ) THEN
358: COMMIT;
359: END IF;
360:

Line 414: -- Standard Start of API savepoint

410:
411:
412: BEGIN
413:
414: -- Standard Start of API savepoint
415:
416: SAVEPOINT enable_and_fire_actions_pub;
417:
418: -- Standard call to check for call compatibility.

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

414: -- Standard Start of API savepoint
415:
416: SAVEPOINT enable_and_fire_actions_pub;
417:
418: -- Standard call to check for call compatibility.
419: IF NOT FND_API.Compatible_API_Call (l_api_version,
420: p_api_version,
421: l_api_name,
422: G_PKG_NAME ) THEN

Line 439: -- Standard check of p_commit.

435: qa_results_api.enable_and_fire_action(p_collection_id);
436:
437: x_return_status := FND_API.G_RET_STS_SUCCESS;
438:
439: -- Standard check of p_commit.
440: IF FND_API.To_Boolean( p_commit ) THEN
441: COMMIT;
442: END IF;
443:

Line 497: -- Standard Start of API savepoint

493:
494:
495: BEGIN
496:
497: -- Standard Start of API savepoint
498:
499: SAVEPOINT commit_qa_results_pub;
500:
501: -- Standard call to check for call compatibility.

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

497: -- Standard Start of API savepoint
498:
499: SAVEPOINT commit_qa_results_pub;
500:
501: -- Standard call to check for call compatibility.
502: IF NOT FND_API.Compatible_API_Call (l_api_version,
503: p_api_version,
504: l_api_name,
505: G_PKG_NAME ) THEN

Line 522: -- Standard check of p_commit.

518: qa_results_api.commit_qa_results(p_collection_id);
519:
520: x_return_status := FND_API.G_RET_STS_SUCCESS;
521:
522: -- Standard check of p_commit.
523: IF FND_API.To_Boolean( p_commit ) THEN
524: COMMIT;
525: END IF;
526: