DBA Data[Home] [Help]

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

121: L_BENFTS_GRP_ID number;
122: L_OBJECT_VERSION_NUMBER number;
123: --
124: begin
125: hr_data_pump.entry('call');
126: open cr;
127: fetch cr into c;
128: if cr%notfound then
129: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 154: hr_data_pump.api_trc_on;

150: (P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
151: ,P_BENEFITS_GROUP => c.p1);
152: end if;
153: --
154: hr_data_pump.api_trc_on;
155: ben_benefits_group_api.DELETE_BENEFITS_GROUP
156: (p_validate => l_validate
157: ,P_BENFTS_GRP_ID => L_BENFTS_GRP_ID
158: ,P_OBJECT_VERSION_NUMBER => L_OBJECT_VERSION_NUMBER);

Line 159: hr_data_pump.api_trc_off;

155: ben_benefits_group_api.DELETE_BENEFITS_GROUP
156: (p_validate => l_validate
157: ,P_BENFTS_GRP_ID => L_BENFTS_GRP_ID
158: ,P_OBJECT_VERSION_NUMBER => L_OBJECT_VERSION_NUMBER);
159: hr_data_pump.api_trc_off;
160:
161: --
162:
163: --

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

162:
163: --
164: close cr;
165: --
166: hr_data_pump.exit('call');
167: exception
168: when hr_multi_message.error_message_exist then
169: if cr%isopen then
170: close cr;