DBA Data[Home] [Help]

APPS.WIP_BATCH_MOVE dependencies on QA_TXN_GRP

Line 1306: l_quality_plan_exist := qa_txn_grp.evaluate_triggers(

1302: END IF;
1303:
1304: BEGIN
1305: -- Check whether qualtiy collection plan exist or not
1306: l_quality_plan_exist := qa_txn_grp.evaluate_triggers(
1307: p_txn_number => qa_ss_const.wip_move_txn,
1308: p_org_id => p_org_id,
1309: p_context_values => l_context_values,
1310: x_plan_txn_ids => l_plan_txn_ids);

Line 1313: -- qa_txn_grp.commit_allowed().

1309: p_context_values => l_context_values,
1310: x_plan_txn_ids => l_plan_txn_ids);
1311: IF(l_quality_plan_exist = fnd_api.g_false)THEN
1312: -- If no collection plan exist, there is no need to call
1313: -- qa_txn_grp.commit_allowed().
1314: raise fnd_api.g_exc_unexpected_error;
1315: END IF;
1316: -- If quality collection plan exist, we have to check whether it is
1317: -- mandatory or not.

Line 1321: l_commit_allow := qa_txn_grp.is_commit_allowed(

1317: -- mandatory or not.
1318: -- Fixed bug 5335024.Call is_commit_allowed() instead of commit_allowed()
1319: -- because is_commit_allowed will also check child quality plan.
1320: -- Moreover, is_commit_allowed will also return quality plan name.
1321: l_commit_allow := qa_txn_grp.is_commit_allowed(
1322: p_txn_number => qa_ss_const.wip_move_txn,
1323: p_org_id => p_org_id,
1324: p_plan_txn_ids => l_plan_txn_ids,
1325: --Pass 0 as Bryan suggested.

Line 1335: l_qa_enabled := qa_txn_grp.qa_enabled(p_txn_number => qa_ss_const.wip_move_txn,

1331: x_quality_require := fnd_api.g_true;
1332: GOTO end_quality_check;
1333: --Start of Fix bug 13336388
1334: ELSE
1335: l_qa_enabled := qa_txn_grp.qa_enabled(p_txn_number => qa_ss_const.wip_move_txn,
1336: p_org_id => p_org_id);
1337: IF(l_qa_enabled = fnd_api.g_true)THEN
1338: l_collection_id := qa_txn_grp.get_collection_id();
1339: qa_txn_grp.post_background_results (

Line 1338: l_collection_id := qa_txn_grp.get_collection_id();

1334: ELSE
1335: l_qa_enabled := qa_txn_grp.qa_enabled(p_txn_number => qa_ss_const.wip_move_txn,
1336: p_org_id => p_org_id);
1337: IF(l_qa_enabled = fnd_api.g_true)THEN
1338: l_collection_id := qa_txn_grp.get_collection_id();
1339: qa_txn_grp.post_background_results (
1340: p_txn_number => qa_ss_const.wip_move_txn,
1341: p_org_id => p_org_id,
1342: p_plan_txn_ids => l_plan_txn_ids,

Line 1339: qa_txn_grp.post_background_results (

1335: l_qa_enabled := qa_txn_grp.qa_enabled(p_txn_number => qa_ss_const.wip_move_txn,
1336: p_org_id => p_org_id);
1337: IF(l_qa_enabled = fnd_api.g_true)THEN
1338: l_collection_id := qa_txn_grp.get_collection_id();
1339: qa_txn_grp.post_background_results (
1340: p_txn_number => qa_ss_const.wip_move_txn,
1341: p_org_id => p_org_id,
1342: p_plan_txn_ids => l_plan_txn_ids,
1343: p_context_values => l_context_ids,

Line 1356: qa_txn_grp.relate_results(l_collection_id);

1352: p_return_status => l_return_status,
1353: p_msg_count => l_msg_count,
1354: p_msg_data => l_err_msg);
1355:
1356: qa_txn_grp.relate_results(l_collection_id);
1357:
1358: END IF; -- end if for (l_qa_enabled = fnd_api.g_true)
1359: END IF; --End of Fix bug 13336388
1360: EXCEPTION