DBA Data[Home] [Help]

APPS.CST_PACEAMCOST_GRP dependencies on FND_CONCURRENT

Line 179: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',

175: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,
176: l_api_name,
177: l_api_message);
178:
179: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',
180: 'CST_PacEamCost_GRP.Estimate_PAC_WipJobs '
181: || l_api_message);
182:
183: ELSE -- All parameters are valid

Line 194: FROM fnd_concurrent_requests FCR

190: -- For a given Organization/legal entity/Cost type combination
191:
192: SELECT count(*)
193: INTO l_count
194: FROM fnd_concurrent_requests FCR
195: WHERE FCR.program_application_id = l_prog_app_id
196: AND FCR.concurrent_program_id = l_prog_id
197: AND FCR.argument1 = to_char(p_legal_entity_id)
198: AND FCR.argument2 = to_char(p_cost_type_id)

Line 209: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',

205:
206: IF l_count > 1 then -- more than 1 concurrent request running with same parameter combination
207:
208: -- If More than 1 then error out
209: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',
210: fnd_message.get_string('BOM','CST_REQ_ERROR'));
211:
212: ELSE
213:

Line 649: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', l_api_message);

645: ELSE
646: l_api_message := 'Estimation of one or more jobs failed';
647: END IF;
648:
649: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', l_api_message);
650:
651: END IF;
652:
653: END IF; -- IF l_wip_entity_id_tab.COUNT > 0 THEN

Line 707: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',

703: l_api_message);
704: END IF;
705:
706: -- Set status of conc process to Error.
707: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',
708: 'CST_PacEamCost_GRP.Estimate_PAC_WipJobs ' ||l_api_message);
709:
710: COMMIT;
711: