DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_IN_PERSONAL_PAY_M dependencies on HR_PUMP_BATCH_LINES

Line 125: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 129: insert into hr_pump_batch_lines

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

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

172: ,pval040
173: ,pval041)
174: values
175: (p_batch_id
176: ,nvl(blid,hr_pump_batch_lines_s.nextval)
177: ,p_data_pump_business_grp_name
178: ,3853
179: ,'U'
180: ,p_user_sequence

Line 305: from hr_pump_batch_lines l

301: decode(l.pval040,cn,vn,vn,vn,l.pval040) p40,
302: l.pval040 d40,
303: decode(l.pval041,cn,vn,vn,vh,l.pval041) p41,
304: l.pval041 d41
305: from hr_pump_batch_lines l
306: where l.batch_line_id = p_batch_line_id;
307: --
308: c cr%rowtype;
309: l_validate boolean := false;

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

316: open cr;
317: fetch cr into c;
318: if cr%notfound then
319: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
320: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
321: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
322: hr_utility.set_message_token('VALUE',p_batch_line_id);
323: hr_utility.raise_error;
324: end if;

Line 400: update hr_pump_batch_lines l set

396: ,P_EFFECTIVE_END_DATE => c.p37);
397: hr_data_pump.api_trc_off;
398:
399: --
400: update hr_pump_batch_lines l set
401: l.pval034 = decode(c.p34,null,cn,c.p34),
402: l.pval035 = decode(c.p35,null,cn,c.p35),
403: l.pval036 = decode(c.p36,null,cn,dc(c.p36)),
404: l.pval037 = decode(c.p37,null,cn,dc(c.p37))