DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_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: ,1592
116: ,'U'
117: ,p_user_sequence

Line 143: from hr_pump_batch_lines l

139: decode(l.pval006,cn,vn,vn,vh,
140: hr_pump_get.gl(l.pval006,'YES_NO',d(l.pval001),vn)) p6,
141: l.pval006 d6,
142: decode(l.pval007,cn,vn,l.pval007) p7
143: from hr_pump_batch_lines l
144: where l.batch_line_id = p_batch_line_id;
145: --
146: c cr%rowtype;
147: 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;