DBA Data[Home] [Help]

APPS.HRDPP_CREATE_USER_COLUMN_INSTA 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 147: hr_data_pump.entry('call');

143: L_USER_ROW_ID number;
144: L_USER_COLUMN_ID number;
145: --
146: begin
147: hr_data_pump.entry('call');
148: open cr;
149: fetch cr into c;
150: if cr%notfound then
151: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 174: hr_data_pump.api_trc_on;

170: PAY_USER_TABLE_DATA_PUMP.get_user_column_id
171: (P_USER_COLUMN_USER_KEY => c.p9);
172: end if;
173: --
174: hr_data_pump.api_trc_on;
175: PAY_USER_COLUMN_INSTANCE_API.CREATE_USER_COLUMN_INSTANCE
176: (p_validate => l_validate
177: ,P_EFFECTIVE_DATE => c.p1
178: ,P_USER_ROW_ID => L_USER_ROW_ID

Line 187: hr_data_pump.api_trc_off;

183: ,P_USER_COLUMN_INSTANCE_ID => c.p4
184: ,P_OBJECT_VERSION_NUMBER => c.p5
185: ,P_EFFECTIVE_START_DATE => c.p6
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),

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

195: where l.rowid = c.myrowid;
196: --
197: close cr;
198: --
199: hr_data_pump.exit('call');
200: exception
201: when hr_multi_message.error_message_exist then
202: if cr%isopen then
203: close cr;