DBA Data[Home] [Help]

APPS.HRDPP_CREATE_USER_COLUMN_INSTA dependencies on HR_PUMP_BATCH_LINES

Line 90: delete from hr_pump_batch_lines where batch_line_id = blid;

86: ,P_USER_COLUMN_USER_KEY 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 109: ,nvl(blid,hr_pump_batch_lines_s.nextval)

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

Line 138: from hr_pump_batch_lines l

134: decode(l.pval006,cn,dn,d(l.pval006)) p6,
135: decode(l.pval007,cn,dn,d(l.pval007)) p7,
136: decode(l.pval008,cn,vn,l.pval008) p8,
137: decode(l.pval009,cn,vn,l.pval009) p9
138: from hr_pump_batch_lines l
139: where l.batch_line_id = p_batch_line_id;
140: --
141: c cr%rowtype;
142: l_validate boolean := false;

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

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

Line 190: update hr_pump_batch_lines l set

186: ,P_EFFECTIVE_END_DATE => c.p7);
187: hr_data_pump.api_trc_off;
188:
189: --
190: update hr_pump_batch_lines l set
191: l.pval004 = decode(c.p4,null,cn,c.p4),
192: l.pval005 = decode(c.p5,null,cn,c.p5),
193: l.pval006 = decode(c.p6,null,cn,dc(c.p6)),
194: l.pval007 = decode(c.p7,null,cn,dc(c.p7))