DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_MX_PERSONAL_PAY_M dependencies on HR_PUMP_BATCH_LINES

Line 126: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 130: insert into hr_pump_batch_lines

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

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

174: ,pval041
175: ,pval042)
176: values
177: (p_batch_id
178: ,nvl(blid,hr_pump_batch_lines_s.nextval)
179: ,p_data_pump_business_grp_name
180: ,3868
181: ,'U'
182: ,p_user_sequence

Line 309: from hr_pump_batch_lines l

305: decode(l.pval041,cn,vn,vn,vn,l.pval041) p41,
306: l.pval041 d41,
307: decode(l.pval042,cn,vn,vn,vh,l.pval042) p42,
308: l.pval042 d42
309: from hr_pump_batch_lines l
310: where l.batch_line_id = p_batch_line_id;
311: --
312: c cr%rowtype;
313: l_validate boolean := false;

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

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

Line 405: update hr_pump_batch_lines l set

401: ,P_EFFECTIVE_END_DATE => c.p38);
402: hr_data_pump.api_trc_off;
403:
404: --
405: update hr_pump_batch_lines l set
406: l.pval035 = decode(c.p35,null,cn,c.p35),
407: l.pval036 = decode(c.p36,null,cn,c.p36),
408: l.pval037 = decode(c.p37,null,cn,dc(c.p37)),
409: l.pval038 = decode(c.p38,null,cn,dc(c.p38))