DBA Data[Home] [Help]

APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_SV_UTIL

Line 438: l_is_mut_excl := igs_sv_util.ismutuallyexclusive(p_person_id,

434: l_return_batch_id NUMBER(14) := -1;
435: l_num_parallel_rec NUMBER(4) := 0;
436: l_rec_count NUMBER(5) := 0;
437: BEGIN
438: l_is_mut_excl := igs_sv_util.ismutuallyexclusive(p_person_id,
439: p_batch_id,
440: p_action,
441: p_tag_code);
442: IF l_is_mut_excl = TRUE THEN

Line 446: l_is_mut_excl := igs_sv_util.ismutuallyexclusive(p_person_id,

442: IF l_is_mut_excl = TRUE THEN
443: IF(g_parallel_batches.COUNT >0) THEN
444: FOR i IN g_parallel_batches.FIRST..g_parallel_batches.LAST LOOP
445: l_rec_count := l_rec_count +1;
446: l_is_mut_excl := igs_sv_util.ismutuallyexclusive(p_person_id,
447: g_parallel_batches(l_rec_count),
448: p_action,
449: p_tag_code);
450: IF l_is_mut_excl = FALSE THEN

Line 452: igs_sv_util.create_Person_Rec(p_person_id,p_batch_id,l_return_batch_id);

448: p_action,
449: p_tag_code);
450: IF l_is_mut_excl = FALSE THEN
451: l_return_batch_id := g_parallel_batches(l_rec_count);
452: igs_sv_util.create_Person_Rec(p_person_id,p_batch_id,l_return_batch_id);
453: EXIT;
454: END IF;
455: END LOOP;
456: END IF;

Line 463: l_return_batch_id := igs_sv_util.open_new_batch(p_person_id,p_batch_id, 'CONN_JOB');

459: END IF;
460:
461: IF l_is_mut_excl = TRUE THEN
462: l_num_parallel_rec := g_parallel_batches.count + 1;
463: l_return_batch_id := igs_sv_util.open_new_batch(p_person_id,p_batch_id, 'CONN_JOB');
464: g_parallel_batches(l_num_parallel_rec) := l_return_batch_id;
465: END IF;
466: RETURN l_return_batch_id;
467:

Line 3695: p_data_rec(l_counter).batch_id := igs_sv_util.open_new_batch(p_person_rec.person_id, p_person_rec.batch_id,'CONN_JOB');

3691: IF l_counter > 25 AND p_person_rec.batch_id = g_running_create_batch THEN
3692: IF g_parallel_batches.count > 0 THEN
3693: p_data_rec(l_counter).batch_id := g_parallel_batches(1);
3694: ELSE
3695: p_data_rec(l_counter).batch_id := igs_sv_util.open_new_batch(p_person_rec.person_id, p_person_rec.batch_id,'CONN_JOB');
3696: g_parallel_batches(1) := p_data_rec(l_counter).batch_id;
3697: END IF;
3698: ELSE
3699: p_data_rec(l_counter).batch_id := p_person_rec.batch_id;