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 1113: hr_data_pump.api_trc_on;

1109: hr_pump_get.get_supervisor_id
1110: (P_SUPERVISOR_USER_KEY => c.p164);
1111: end if;
1112: --
1113: hr_data_pump.api_trc_on;
1114: HR_POSITION_API.CREATE_POSITION
1115: (P_POSITION_ID => c.p1
1116: ,P_EFFECTIVE_START_DATE => c.p2
1117: ,P_EFFECTIVE_END_DATE => c.p3

Line 1280: hr_data_pump.api_trc_off;

1276: ,P_PROGRAM_APPLICATION_ID => c.p146
1277: ,P_PROGRAM_ID => c.p147
1278: ,P_PROGRAM_UPDATE_DATE => c.p148
1279: ,P_SECURITY_PROFILE_ID => c.p149);
1280: hr_data_pump.api_trc_off;
1281:
1282: --
1283: update hr_pump_batch_lines l set
1284: l.pval001 = decode(c.p1,null,cn,c.p1),

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

1290: where l.rowid = c.myrowid;
1291: --
1292: close cr;
1293: --
1294: hr_data_pump.exit('call');
1295: exception
1296: when hr_multi_message.error_message_exist then
1297: if cr%isopen then
1298: close cr;