DBA Data[Home] [Help]

APPS.HRDPP_CREATE_JOB_GROUP dependencies on HR_PUMP_BATCH_LINES

Line 92: delete from hr_pump_batch_lines where batch_line_id = blid;

88: ,P_JOB_GROUP_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: ,1591
116: ,'U'
117: ,p_user_sequence

Line 144: from hr_pump_batch_lines l

140: hr_pump_get.gl(l.pval006,'YES_NO',d(l.pval001),vn)) p6,
141: l.pval006 d6,
142: l.pval007 p7,
143: l.pval008 p8
144: from hr_pump_batch_lines l
145: where l.batch_line_id = p_batch_line_id;
146: --
147: c cr%rowtype;
148: l_validate boolean := false;

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

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

Line 179: update hr_pump_batch_lines l set

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