DBA Data[Home] [Help]

APPS.GCS_CONS_ENGINE_PKG dependencies on GCS_CONS_ENG_RUNS_PKG

Line 749: gcs_cons_eng_runs_pkg.update_status(

745: ELSE
746: l_status_code := 'COMPLETED';
747: END IF;
748:
749: gcs_cons_eng_runs_pkg.update_status(
750: p_run_name => cons_entity_wf_info.run_identifier,
751: p_most_recent_flag => 'Y',
752: p_status_code => l_status_code,
753: p_run_entity_id => cons_entity_wf_info.consolidation_entity,

Line 971: GCS_CONS_ENG_RUNS_PKG.insert_row

967:
968: l_childkey_list.extend(1);
969: l_childkey_list(counter) := l_child_key;
970:
971: GCS_CONS_ENG_RUNS_PKG.insert_row
972: (
973: p_run_name => cons_entity_wf_info.run_identifier,
974: p_hierarchy_id => cons_entity_wf_info.consolidation_hierarchy,
975: p_process_method_code => cons_entity_wf_info.process_method,

Line 1112: gcs_cons_eng_runs_pkg.update_status ( p_run_name => l_prior_run_name,

1108: WF_ENGINE.SetItemAttrText(itemtype, itemkey, 'PRIOR_RUN_NAME', l_prior_run_name);
1109: result := 'COMPLETE:F';
1110:
1111: --Bugfix 3750740 : Update Prior Run To MOST_RECENT_FLAG = 'N'
1112: gcs_cons_eng_runs_pkg.update_status ( p_run_name => l_prior_run_name,
1113: p_most_recent_flag => 'N',
1114: p_status_code => NULL,
1115: p_run_entity_id => cons_entity_wf_info.consolidation_entity);
1116:

Line 1117: gcs_cons_eng_runs_pkg.update_status ( p_run_name => cons_entity_wf_info.run_identifier,

1113: p_most_recent_flag => 'N',
1114: p_status_code => NULL,
1115: p_run_entity_id => cons_entity_wf_info.consolidation_entity);
1116:
1117: gcs_cons_eng_runs_pkg.update_status ( p_run_name => cons_entity_wf_info.run_identifier,
1118: p_most_recent_flag => 'Y',
1119: p_status_code => 'IN_PROGRESS',
1120: p_run_entity_id => cons_entity_wf_info.consolidation_entity);
1121:

Line 1136: gcs_cons_eng_runs_pkg.update_status ( p_run_name => cons_entity_wf_info.run_identifier,

1132: EXCEPTION
1133: WHEN NO_DATA_FOUND THEN
1134: WF_ENGINE.SetItemAttrText(itemtype, itemkey, 'PRIOR_RUN_NAME', 'NO_PRIOR_RUN');
1135:
1136: gcs_cons_eng_runs_pkg.update_status ( p_run_name => cons_entity_wf_info.run_identifier,
1137: p_most_recent_flag => 'Y',
1138: p_status_code => 'IN_PROGRESS',
1139: p_run_entity_id => cons_entity_wf_info.consolidation_entity);
1140: result := 'COMPLETE:F';