DBA Data[Home] [Help]

APPS.BEN_BENBATCH_PERSONS dependencies on BEN_BATCH_UTILS

Line 199: raise ben_batch_utils.g_record_error;

195: ,p_effective_date => p_effective_date);
196: --
197: if l_assignment_id is null
198: then
199: raise ben_batch_utils.g_record_error;
200: end if ;
201: --
202:
203: l_outputs :=

Line 231: When ben_batch_utils.g_record_error then

227: END IF;
228: --
229: EXCEPTION
230: --
231: When ben_batch_utils.g_record_error then
232: hr_utility.set_location(l_package ,10);
233: if g_audit_flag = true then
234: fnd_message.set_name('BEN','BEN_91698_NO_ASSIGNMENT_FND');
235: fnd_message.set_token('ID' ,to_char(p_person_id) );

Line 237: Ben_batch_utils.write(p_text => '<< Person id : '||to_char(p_person_id)||' failed.'||

233: if g_audit_flag = true then
234: fnd_message.set_name('BEN','BEN_91698_NO_ASSIGNMENT_FND');
235: fnd_message.set_token('ID' ,to_char(p_person_id) );
236: fnd_message.set_token('PROC',l_package ) ;
237: Ben_batch_utils.write(p_text => '<< Person id : '||to_char(p_person_id)||' failed.'||
238: ' Reason : '|| fnd_message.get ||' >>' );
239: end if;
240: RETURN FALSE;
241: When value_exception then

Line 246: Ben_batch_utils.write(p_text => '<< Person id : '||to_char(p_person_id)||' failed.'||

242: hr_utility.set_location(l_package ,20);
243: fnd_message.set_name('BEN','BEN_91329_FORMULA_RETURN');
244: fnd_message.set_token('RL','person_selection_rule_id :'||p_person_selection_rule_id);
245: fnd_message.set_token('PROC',l_package ) ;
246: Ben_batch_utils.write(p_text => '<< Person id : '||to_char(p_person_id)||' failed.'||
247: ' Reason : '|| fnd_message.get ||' >>' );
248: RETURN FALSE;
249: WHEN OTHERS THEN
250: hr_utility.set_location(l_package ,30);

Line 251: Ben_batch_utils.write(p_text => '<< Person id : '||to_char(p_person_id)||' failed.'||

247: ' Reason : '|| fnd_message.get ||' >>' );
248: RETURN FALSE;
249: WHEN OTHERS THEN
250: hr_utility.set_location(l_package ,30);
251: Ben_batch_utils.write(p_text => '<< Person id : '||to_char(p_person_id)||' failed.'||
252: ' Reason : '|| SQLERRM ||' >>' );
253: RETURN FALSE;
254: --
255: END check_selection_rule;