DBA Data[Home] [Help]

APPS.HRDPP_CREATE_USER_COLUMN dependencies on HR_PUMP_BATCH_LINES

Line 90: delete from hr_pump_batch_lines where batch_line_id = blid;

86: ,P_FORMULA_NAME in varchar2 default null) 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 109: ,nvl(blid,hr_pump_batch_lines_s.nextval)

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

Line 135: from hr_pump_batch_lines l

131: l.pval004 p4,
132: decode(l.pval005,cn,vn,l.pval005) p5,
133: decode(l.pval006,cn,vn,vn,vn,l.pval006) p6,
134: l.pval006 d6
135: from hr_pump_batch_lines l
136: where l.batch_line_id = p_batch_line_id;
137: --
138: c cr%rowtype;
139: l_validate boolean := false;

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

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

Line 187: update hr_pump_batch_lines l set

183: hr_data_pump.api_trc_off;
184: --
185: iuk(p_batch_line_id,c.p3,L_USER_COLUMN_ID);
186: --
187: update hr_pump_batch_lines l set
188: l.pval003 = decode(c.p3,null,cn,c.p3),
189: l.pval004 = decode(c.p4,null,cn,c.p4)
190: where l.rowid = c.myrowid;
191: --