DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_IN_CONTACT_RELATI dependencies on HR_PUMP_BATCH_LINES

Line 131: delete from hr_pump_batch_lines where batch_line_id = blid;

127: ,P_CONTACT_REL_USER_KEY in varchar2) 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 188: ,nvl(blid,hr_pump_batch_lines_s.nextval)

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

Line 333: from hr_pump_batch_lines l

329: l.pval041 d41,
330: decode(l.pval042,cn,vn,vn,vh,l.pval042) p42,
331: l.pval042 d42,
332: decode(l.pval043,cn,vn,l.pval043) p43
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 351: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');

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