DBA Data[Home] [Help]

APPS.HRDPP_DELETE_POSITION dependencies on HR_PUMP_BATCH_LINES

Line 90: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 94: insert into hr_pump_batch_lines

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

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

104: ,pval005
105: ,pval006)
106: values
107: (p_batch_id
108: ,nvl(blid,hr_pump_batch_lines_s.nextval)
109: ,p_data_pump_business_grp_name
110: ,1218
111: ,'U'
112: ,p_user_sequence

Line 132: from hr_pump_batch_lines l

128: decode(l.pval004,cn,vn,l.pval004) p4,
129: decode(l.pval005,cn,nn,vn,HR_SECURITY.GET_SECURITY_PROFILE,n(l.pval005)) p5,
130: l.pval005 d5,
131: decode(l.pval006,cn,vn,l.pval006) p6
132: from hr_pump_batch_lines l
133: where l.batch_line_id = p_batch_line_id;
134: --
135: c cr%rowtype;
136: l_validate boolean := false;

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

142: open cr;
143: fetch cr into c;
144: if cr%notfound then
145: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
146: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
147: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
148: hr_utility.set_message_token('VALUE',p_batch_line_id);
149: hr_utility.raise_error;
150: end if;

Line 187: update hr_pump_batch_lines l set

183: ,P_SECURITY_PROFILE_ID => c.p5);
184: hr_data_pump.api_trc_off;
185:
186: --
187: update hr_pump_batch_lines l set
188: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),
189: l.pval002 = decode(c.p2,null,cn,dc(c.p2))
190: where l.rowid = c.myrowid;
191: --