DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_IN_PERSON_ADDRESS dependencies on HR_PUMP_BATCH_LINES

Line 122: delete from hr_pump_batch_lines where batch_line_id = blid;

118: ,P_COUNTRY in varchar2 default null) is
119: blid number := p_data_pump_batch_line_id;
120: begin
121: if blid is not null then
122: delete from hr_pump_batch_lines where batch_line_id = blid;
123: delete from hr_pump_batch_exceptions
124: where source_type = 'BATCH_LINE' and source_id = blid;
125: end if;
126: insert into hr_pump_batch_lines

Line 126: insert into hr_pump_batch_lines

122: delete from hr_pump_batch_lines where batch_line_id = blid;
123: delete from hr_pump_batch_exceptions
124: where source_type = 'BATCH_LINE' and source_id = blid;
125: end if;
126: insert into hr_pump_batch_lines
127: (batch_id
128: ,batch_line_id
129: ,business_group_name
130: ,api_module_id

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

167: ,pval034
168: ,pval035)
169: values
170: (p_batch_id
171: ,nvl(blid,hr_pump_batch_lines_s.nextval)
172: ,p_data_pump_business_grp_name
173: ,3218
174: ,'U'
175: ,p_user_sequence

Line 288: from hr_pump_batch_lines l

284: l.pval033 d33,
285: decode(l.pval034,cn,vn,l.pval034) p34,
286: decode(l.pval035,cn,vn,vn,vh,l.pval035) p35,
287: l.pval035 d35
288: from hr_pump_batch_lines l
289: where l.batch_line_id = p_batch_line_id;
290: --
291: c cr%rowtype;
292: l_validate boolean := false;

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

300: open cr;
301: fetch cr into c;
302: if cr%notfound then
303: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
304: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
305: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
306: hr_utility.set_message_token('VALUE',p_batch_line_id);
307: hr_utility.raise_error;
308: end if;