DBA Data[Home] [Help]

APPS.GMO_CBR_GRP dependencies on GMO_CONSTANTS_GRP

Line 123: if GMO_SETUP_GRP.IS_GMO_ENABLED = GMO_CONSTANTS_GRP.YES THEN

119: l_CBR_EVENT_SUBCRIPTIONS_REC CBR_EVENT_SUBCRIPTIONS%ROWTYPE;
120: BEGIN
121:
122: if (fnd_profile.defined('GMO_ENABLED_FLAG')) THEN
123: if GMO_SETUP_GRP.IS_GMO_ENABLED = GMO_CONSTANTS_GRP.YES THEN
124: fnd_file.put_line(fnd_file.output, fnd_message.get_string('GMO', 'GMO_IS_ENABLED_START_PROCESS') );
125: fnd_file.new_line(fnd_file.output, 1);
126:
127: OPEN CBR_EVENTS;

Line 1585: IF(l_instr_status = GMO_CONSTANTS_GRP.G_INSTR_STATUS_COMPLETE OR l_instr_status = GMO_CONSTANTS_GRP.G_INSTR_STATUS_CANCEL) THEN

1581: l_orig_source := getValue(l_result,'//ORIG_SOURCE');
1582: l_orig_sourceID := getValue(l_result,'//ORIG_SOURCE_ID');
1583: l_instr_status := getValue(l_result,'//INSTR_SET_STATUS');
1584:
1585: IF(l_instr_status = GMO_CONSTANTS_GRP.G_INSTR_STATUS_COMPLETE OR l_instr_status = GMO_CONSTANTS_GRP.G_INSTR_STATUS_CANCEL) THEN
1586: l_batchprogression_status := 'COMPLETE';
1587: ELSE
1588: l_batchprogression_status := 'INPROGRESS';
1589: END IF;

Line 1592: IF(l_orig_source = GMO_CONSTANTS_GRP.G_ORIG_SOURCE_DEFN) THEN

1588: l_batchprogression_status := 'INPROGRESS';
1589: END IF;
1590:
1591:
1592: IF(l_orig_source = GMO_CONSTANTS_GRP.G_ORIG_SOURCE_DEFN) THEN
1593: PROCESS_INSTR_XML(l_entity_name,l_entity_key,l_event_key,l_instr_type,l_instr_status,l_batchprogression_status,l_event_name,l_result);
1594: ELSIF(l_orig_source = GMO_CONSTANTS_GRP.G_ORIG_SOURCE_INSTANCE) THEN
1595: -- process Instruction with new INSTR Set ID
1596: PROCESS_INSTR_XML(l_entity_name,l_entity_key,l_event_key,l_instr_type,l_instr_status,l_batchprogression_status,l_event_name,l_result);

Line 1594: ELSIF(l_orig_source = GMO_CONSTANTS_GRP.G_ORIG_SOURCE_INSTANCE) THEN

1590:
1591:
1592: IF(l_orig_source = GMO_CONSTANTS_GRP.G_ORIG_SOURCE_DEFN) THEN
1593: PROCESS_INSTR_XML(l_entity_name,l_entity_key,l_event_key,l_instr_type,l_instr_status,l_batchprogression_status,l_event_name,l_result);
1594: ELSIF(l_orig_source = GMO_CONSTANTS_GRP.G_ORIG_SOURCE_INSTANCE) THEN
1595: -- process Instruction with new INSTR Set ID
1596: PROCESS_INSTR_XML(l_entity_name,l_entity_key,l_event_key,l_instr_type,l_instr_status,l_batchprogression_status,l_event_name,l_result);
1597: -- process Instruction with old INSTR Set ID
1598: l_event_key := l_orig_sourceID;