DBA Data[Home] [Help]

APPS.HRDPP_MAINTAIN_PAYE_TAX_INFO dependencies on HR_PUMP_BATCH_LINES

Line 126: delete from hr_pump_batch_lines where batch_line_id = blid;

122: ,P_ASSIGNMENT_USER_KEY in varchar2) 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 181: ,nvl(blid,hr_pump_batch_lines_s.nextval)

177: ,pval040
178: ,pval042)
179: values
180: (p_batch_id
181: ,nvl(blid,hr_pump_batch_lines_s.nextval)
182: ,p_data_pump_business_grp_name
183: ,2167
184: ,'U'
185: ,p_user_sequence

Line 310: from hr_pump_batch_lines l

306: l.pval039 d39,
307: decode(l.pval040,cn,vn,l.pval040) p40,
308: l.pval041 p41,
309: decode(l.pval042,cn,vn,l.pval042) p42
310: from hr_pump_batch_lines l
311: where l.batch_line_id = p_batch_line_id;
312: --
313: c cr%rowtype;
314: 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 392: update hr_pump_batch_lines l set

388: else
389: c.p41 := 'FALSE';
390: end if;
391: --
392: update hr_pump_batch_lines l set
393: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),
394: l.pval002 = decode(c.p2,null,cn,dc(c.p2)),
395: l.pval041 = decode(c.p41,null,cn,c.p41)
396: where l.rowid = c.myrowid;