DBA Data[Home] [Help]

APPS.HRDPP_CREATE_PROCESSED_ASSIGNM dependencies on HR_PUMP_BATCH_LINES

Line 119: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 123: insert into hr_pump_batch_lines

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

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

163: ,pval035
164: ,pval036)
165: values
166: (p_batch_id
167: ,nvl(blid,hr_pump_batch_lines_s.nextval)
168: ,p_data_pump_business_grp_name
169: ,2221
170: ,'U'
171: ,p_user_sequence

Line 281: from hr_pump_batch_lines l

277: l.pval033 p33,
278: l.pval034 p34,
279: decode(l.pval035,cn,vn,l.pval035) p35,
280: decode(l.pval036,cn,vn,l.pval036) p36
281: from hr_pump_batch_lines l
282: where l.batch_line_id = p_batch_line_id;
283: --
284: c cr%rowtype;
285: l_validate boolean := false;

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

291: open cr;
292: fetch cr into c;
293: if cr%notfound then
294: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
295: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
296: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
297: hr_utility.set_message_token('VALUE',p_batch_line_id);
298: hr_utility.raise_error;
299: end if;

Line 362: update hr_pump_batch_lines l set

358: ,P_PROCESSED_ASSIGNMENT_OVN => c.p34);
359: hr_data_pump.api_trc_off;
360:
361: --
362: update hr_pump_batch_lines l set
363: l.pval033 = decode(c.p33,null,cn,c.p33),
364: l.pval034 = decode(c.p34,null,cn,c.p34)
365: where l.rowid = c.myrowid;
366: --