DBA Data[Home] [Help]

APPS.HRDPP_CREATE_USER_TABLE dependencies on HR_PUMP_BATCH_LINES

Line 92: delete from hr_pump_batch_lines where batch_line_id = blid;

88: ,P_USER_TABLE_USER_KEY in varchar2) is
89: blid number := p_data_pump_batch_line_id;
90: begin
91: if blid is not null then
92: delete from hr_pump_batch_lines where batch_line_id = blid;
93: delete from hr_pump_batch_exceptions
94: where source_type = 'BATCH_LINE' and source_id = blid;
95: end if;
96: insert into hr_pump_batch_lines

Line 96: insert into hr_pump_batch_lines

92: delete from hr_pump_batch_lines where batch_line_id = blid;
93: delete from hr_pump_batch_exceptions
94: where source_type = 'BATCH_LINE' and source_id = blid;
95: end if;
96: insert into hr_pump_batch_lines
97: (batch_id
98: ,batch_line_id
99: ,business_group_name
100: ,api_module_id

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

109: ,pval006
110: ,pval007)
111: values
112: (p_batch_id
113: ,nvl(blid,hr_pump_batch_lines_s.nextval)
114: ,p_data_pump_business_grp_name
115: ,3042
116: ,'U'
117: ,p_user_sequence

Line 147: from hr_pump_batch_lines l

143: decode(l.pval006,cn,vn,vn,vn,l.pval006) p6,
144: l.pval006 d6,
145: l.pval007 p7,
146: l.pval008 p8
147: from hr_pump_batch_lines l
148: where l.batch_line_id = p_batch_line_id;
149: --
150: c cr%rowtype;
151: l_validate boolean := false;

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

156: open cr;
157: fetch cr into c;
158: if cr%notfound then
159: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
160: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
161: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
162: hr_utility.set_message_token('VALUE',p_batch_line_id);
163: hr_utility.raise_error;
164: end if;

Line 182: update hr_pump_batch_lines l set

178: hr_data_pump.api_trc_off;
179: --
180: iuk(p_batch_line_id,c.p7,L_USER_TABLE_ID);
181: --
182: update hr_pump_batch_lines l set
183: l.pval007 = decode(c.p7,null,cn,c.p7),
184: l.pval008 = decode(c.p8,null,cn,c.p8)
185: where l.rowid = c.myrowid;
186: --