DBA Data[Home] [Help]

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

135: l_validate boolean := false;
136: L_ORGANIZATION_ID number;
137: --
138: begin
139: hr_data_pump.entry('call');
140: open cr;
141: fetch cr into c;
142: if cr%notfound then
143: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 163: hr_data_pump.api_trc_on;

159: ,P_EFFECTIVE_DATE => c.p1
160: ,P_LANGUAGE_CODE => c.p6);
161: end if;
162: --
163: hr_data_pump.api_trc_on;
164: HR_ORGANIZATION_API.CREATE_ORG_CLASSIFICATION
165: (p_validate => l_validate
166: ,P_EFFECTIVE_DATE => c.p1
167: ,P_ORGANIZATION_ID => L_ORGANIZATION_ID

Line 171: hr_data_pump.api_trc_off;

167: ,P_ORGANIZATION_ID => L_ORGANIZATION_ID
168: ,P_ORG_CLASSIF_CODE => c.p2
169: ,P_ORG_INFORMATION_ID => c.p3
170: ,P_OBJECT_VERSION_NUMBER => c.p4);
171: hr_data_pump.api_trc_off;
172:
173: --
174: update hr_pump_batch_lines l set
175: l.pval003 = decode(c.p3,null,cn,c.p3),

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

177: where l.rowid = c.myrowid;
178: --
179: close cr;
180: --
181: hr_data_pump.exit('call');
182: exception
183: when hr_multi_message.error_message_exist then
184: if cr%isopen then
185: close cr;