DBA Data[Home] [Help]

APPS.HRDPP_ACTIVATE_EMP_ASG dependencies on HR_PUMP_BATCH_LINES

Line 91: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 95: insert into hr_pump_batch_lines

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

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

107: ,pval007
108: ,pval008)
109: values
110: (p_batch_id
111: ,nvl(blid,hr_pump_batch_lines_s.nextval)
112: ,p_data_pump_business_grp_name
113: ,1190
114: ,'U'
115: ,p_user_sequence

Line 141: from hr_pump_batch_lines l

137: decode(l.pval007,cn,vn,vn,vh,l.pval007) p7,
138: l.pval007 d7,
139: decode(l.pval008,cn,vn,vn,vh,l.pval008) p8,
140: l.pval008 d8
141: from hr_pump_batch_lines l
142: where l.batch_line_id = p_batch_line_id;
143: --
144: c cr%rowtype;
145: 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 226: update hr_pump_batch_lines l set

222: ,P_EFFECTIVE_END_DATE => c.p4);
223: hr_data_pump.api_trc_off;
224:
225: --
226: update hr_pump_batch_lines l set
227: l.pval003 = decode(c.p3,null,cn,dc(c.p3)),
228: l.pval004 = decode(c.p4,null,cn,dc(c.p4))
229: where l.rowid = c.myrowid;
230: --