DBA Data[Home] [Help]

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

946: L_PAY_BASIS_ID number;
947: L_SUPERVISOR_ID number;
948: --
949: begin
950: hr_data_pump.entry('call');
951: open cr;
952: fetch cr into c;
953: if cr%notfound then
954: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 1108: hr_data_pump.api_trc_on;

1104: hr_pump_get.get_supervisor_id
1105: (P_SUPERVISOR_USER_KEY => c.p164);
1106: end if;
1107: --
1108: hr_data_pump.api_trc_on;
1109: hr_position_api.create_position
1110: (P_POSITION_ID => c.p1
1111: ,P_EFFECTIVE_START_DATE => c.p2
1112: ,P_EFFECTIVE_END_DATE => c.p3

Line 1275: hr_data_pump.api_trc_off;

1271: ,P_PROGRAM_APPLICATION_ID => c.p146
1272: ,P_PROGRAM_ID => c.p147
1273: ,P_PROGRAM_UPDATE_DATE => c.p148
1274: ,P_SECURITY_PROFILE_ID => c.p149);
1275: hr_data_pump.api_trc_off;
1276:
1277: --
1278: update hr_pump_batch_lines l set
1279: l.pval001 = decode(c.p1,null,cn,c.p1),

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

1285: where l.rowid = c.myrowid;
1286: --
1287: close cr;
1288: --
1289: hr_data_pump.exit('call');
1290: exception
1291: when hr_multi_message.error_message_exist then
1292: if cr%isopen then
1293: close cr;