DBA Data[Home] [Help]

APPS.BEN_RELATED_PERSON_LER_API dependencies on HR_UTILITY

Line 57: hr_utility.set_location('Entering:'|| l_proc, 10);

53: l_le_exists VARCHAR2(1);
54: --
55: begin
56: --
57: hr_utility.set_location('Entering:'|| l_proc, 10);
58: --
59: -- Operation
60: -- =========
61: -- 1) Get the active life events occured date, this is what we use to check

Line 89: hr_utility.set_location(' St Loop CONREC:'||l_proc, 70);

85: if l_con_rec.exists(1) then
86: --
87: for l_count in l_con_rec.first..l_con_rec.last loop
88: --
89: hr_utility.set_location(' St Loop CONREC:'||l_proc, 70);
90: --
91: -- Since l_con_rec has all the contacts for the person, make sure to
92: -- select only contacts whose relationships have not been end dated.
93: --

Line 127: hr_utility.set_location(' Done CREPPL:'||l_proc, 70);

123: p_program_update_date => sysdate,
124: p_ntfn_dt => trunc(sysdate),
125: p_dtctd_dt => p_effective_date);
126: --
127: hr_utility.set_location(' Done CREPPL:'||l_proc, 70);
128: if p_from_form = 'Y' then
129: --
130: null;
131: --

Line 140: hr_utility.set_location(' Done PERGOBJ:'||l_proc, 70);

136: ben_person_object.get_object
137: (p_person_id => l_con_rec(l_count).contact_person_id,
138: p_rec => l_per_rec);
139: --
140: hr_utility.set_location(' Done PERGOBJ:'||l_proc, 70);
141: ben_life_object.get_object
142: (p_ler_id => l_css_rec(l_count2).rsltg_ler_id,
143: p_rec => l_ler_rec);
144: hr_utility.set_location(' Done LIFEGOBJ:'||l_proc, 70);

Line 144: hr_utility.set_location(' Done LIFEGOBJ:'||l_proc, 70);

140: hr_utility.set_location(' Done PERGOBJ:'||l_proc, 70);
141: ben_life_object.get_object
142: (p_ler_id => l_css_rec(l_count2).rsltg_ler_id,
143: p_rec => l_ler_rec);
144: hr_utility.set_location(' Done LIFEGOBJ:'||l_proc, 70);
145: --
146: fnd_message.set_name('BEN','BEN_92110_RELATED_PERSON_LER');
147: fnd_message.set_token('NAME',l_per_rec.full_name);
148: fnd_message.set_token('LER',l_ler_rec.name);

Line 158: hr_utility.set_location(' End Loop CONREC:'||l_proc, 70);

154: end if;
155: --
156: end if;
157: --
158: hr_utility.set_location(' End Loop CONREC:'||l_proc, 70);
159: end loop;
160: --
161: end if;
162: --

Line 167: hr_utility.set_location(' Leaving:'||l_proc, 70);

163: end loop;
164: --
165: end if;
166: --
167: hr_utility.set_location(' Leaving:'||l_proc, 70);
168: --
169: end create_related_person_ler;
170: --
171: end ben_Related_person_ler_api;