DBA Data[Home] [Help]

APPS.HRDPP_CREATE_USER_TABLE dependencies on HR_DATA_PUMP

Line 65: hr_data_pump.entry('ins_user_key');

61: p_user_key_value in varchar2,
62: p_unique_key_id in number)
63: is
64: begin
65: hr_data_pump.entry('ins_user_key');
66: insert into hr_pump_batch_line_user_keys
67: (user_key_id, batch_line_id,user_key_value,unique_key_id)
68: values
69: (hr_pump_batch_line_user_keys_s.nextval,

Line 73: hr_data_pump.exit('ins_user_key');

69: (hr_pump_batch_line_user_keys_s.nextval,
70: p_batch_line_id,
71: p_user_key_value,
72: p_unique_key_id);
73: hr_data_pump.exit('ins_user_key');
74: end iuk;
75: --
76: procedure insert_batch_lines
77: (p_batch_id in number

Line 155: hr_data_pump.entry('call');

151: l_validate boolean := false;
152: L_USER_TABLE_ID number;
153: --
154: begin
155: hr_data_pump.entry('call');
156: open cr;
157: fetch cr into c;
158: if cr%notfound then
159: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 166: hr_data_pump.api_trc_on;

162: hr_utility.set_message_token('VALUE',p_batch_line_id);
163: hr_utility.raise_error;
164: end if;
165: --
166: hr_data_pump.api_trc_on;
167: PAY_USER_TABLE_API.CREATE_USER_TABLE
168: (p_validate => l_validate
169: ,P_EFFECTIVE_DATE => c.p1
170: ,p_business_group_id => p_business_group_id

Line 178: hr_data_pump.api_trc_off;

174: ,P_USER_TABLE_NAME => c.p5
175: ,P_USER_ROW_TITLE => c.p6
176: ,P_USER_TABLE_ID => L_USER_TABLE_ID
177: ,P_OBJECT_VERSION_NUMBER => c.p8);
178: hr_data_pump.api_trc_off;
179: --
180: iuk(p_batch_line_id,c.p7,L_USER_TABLE_ID);
181: --
182: update hr_pump_batch_lines l set

Line 189: hr_data_pump.exit('call');

185: where l.rowid = c.myrowid;
186: --
187: close cr;
188: --
189: hr_data_pump.exit('call');
190: exception
191: when hr_multi_message.error_message_exist then
192: if cr%isopen then
193: close cr;