DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_MX_LOC_PERSON_ADD dependencies on HR_PUMP_BATCH_LINES

Line 134: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 138: insert into hr_pump_batch_lines

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

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

190: ,pval045
191: ,pval046)
192: values
193: (p_batch_id
194: ,nvl(blid,hr_pump_batch_lines_s.nextval)
195: ,p_data_pump_business_grp_name
196: ,3865
197: ,'U'
198: ,p_user_sequence

Line 344: from hr_pump_batch_lines l

340: l.pval044 d44,
341: decode(l.pval045,cn,vn,l.pval045) p45,
342: decode(l.pval046,cn,vn,vn,vh,l.pval046) p46,
343: l.pval046 d46
344: from hr_pump_batch_lines l
345: where l.batch_line_id = p_batch_line_id;
346: --
347: c cr%rowtype;
348: l_validate boolean := false;

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

356: open cr;
357: fetch cr into c;
358: if cr%notfound then
359: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
360: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
361: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
362: hr_utility.set_message_token('VALUE',p_batch_line_id);
363: hr_utility.raise_error;
364: end if;