DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_ORG_STRUCTURE_VER dependencies on HR_PUMP_BATCH_LINES

Line 97: delete from hr_pump_batch_lines where batch_line_id = blid;

93: ,P_ORGANIZATION_STRUCTURE_ID in number) is
94: blid number := p_data_pump_batch_line_id;
95: begin
96: if blid is not null then
97: delete from hr_pump_batch_lines where batch_line_id = blid;
98: delete from hr_pump_batch_exceptions
99: where source_type = 'BATCH_LINE' and source_id = blid;
100: end if;
101: insert into hr_pump_batch_lines

Line 101: insert into hr_pump_batch_lines

97: delete from hr_pump_batch_lines where batch_line_id = blid;
98: delete from hr_pump_batch_exceptions
99: where source_type = 'BATCH_LINE' and source_id = blid;
100: end if;
101: insert into hr_pump_batch_lines
102: (batch_id
103: ,batch_line_id
104: ,business_group_name
105: ,api_module_id

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

116: ,pval009
117: ,pval010)
118: values
119: (p_batch_id
120: ,nvl(blid,hr_pump_batch_lines_s.nextval)
121: ,p_data_pump_business_grp_name
122: ,2256
123: ,'U'
124: ,p_user_sequence

Line 156: from hr_pump_batch_lines l

152: l.pval007 d7,
153: l.pval008 p8,
154: decode(l.pval009,cn,vn,l.pval009) p9,
155: decode(l.pval010,cn,nn,n(l.pval010)) p10
156: from hr_pump_batch_lines l
157: where l.batch_line_id = p_batch_line_id;
158: --
159: c cr%rowtype;
160: l_validate boolean := false;

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

170: open cr;
171: fetch cr into c;
172: if cr%notfound then
173: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
174: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
175: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
176: hr_utility.set_message_token('VALUE',p_batch_line_id);
177: hr_utility.raise_error;
178: end if;

Line 234: update hr_pump_batch_lines l set

230: else
231: c.p8 := 'FALSE';
232: end if;
233: --
234: update hr_pump_batch_lines l set
235: l.pval008 = decode(c.p8,null,cn,c.p8)
236: where l.rowid = c.myrowid;
237: --
238: close cr;