DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_GB_PERSON_ADDRESS dependencies on HR_PUMP_BATCH_LINES

Line 131: delete from hr_pump_batch_lines where batch_line_id = blid;

127: ,P_COUNTRY in varchar2 default null) is
128: blid number := p_data_pump_batch_line_id;
129: begin
130: if blid is not null then
131: delete from hr_pump_batch_lines where batch_line_id = blid;
132: delete from hr_pump_batch_exceptions
133: where source_type = 'BATCH_LINE' and source_id = blid;
134: end if;
135: insert into hr_pump_batch_lines

Line 135: insert into hr_pump_batch_lines

131: delete from hr_pump_batch_lines where batch_line_id = blid;
132: delete from hr_pump_batch_exceptions
133: where source_type = 'BATCH_LINE' and source_id = blid;
134: end if;
135: insert into hr_pump_batch_lines
136: (batch_id
137: ,batch_line_id
138: ,business_group_name
139: ,api_module_id

Line 189: ,nvl(blid,hr_pump_batch_lines_s.nextval)

185: ,pval043
186: ,pval044)
187: values
188: (p_batch_id
189: ,nvl(blid,hr_pump_batch_lines_s.nextval)
190: ,p_data_pump_business_grp_name
191: ,1381
192: ,'U'
193: ,p_user_sequence

Line 333: from hr_pump_batch_lines l

329: l.pval042 d42,
330: decode(l.pval043,cn,vn,l.pval043) p43,
331: decode(l.pval044,cn,vn,vn,vh,l.pval044) p44,
332: l.pval044 d44
333: from hr_pump_batch_lines l
334: where l.batch_line_id = p_batch_line_id;
335: --
336: c cr%rowtype;
337: l_validate boolean := false;

Line 349: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');

345: open cr;
346: fetch cr into c;
347: if cr%notfound then
348: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
349: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
350: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
351: hr_utility.set_message_token('VALUE',p_batch_line_id);
352: hr_utility.raise_error;
353: end if;