DBA Data[Home] [Help]

APPS.HR_DATA_PUMP dependencies on HR_PUMP_UTILS

Line 949: hr_pump_utils.set_dt_enforce_foreign_locks(p_enforce => l_lock);

945: l_lock :=
946: not l_found or
947: (l_found and (l_pap_value = 'Y' or l_pap_value = 'y'));
948:
949: hr_pump_utils.set_dt_enforce_foreign_locks(p_enforce => l_lock);
950:
951: if l_lock then
952: hr_data_pump.message('Foreign key locking enforced');
953: else

Line 1273: hr_pump_utils.name(p_module_package, p_module_name,

1269:
1270: if(l_cache_entry is null) then
1271: -- Not in cache - will need to parse.
1272: -- Start by getting the appropriate name.
1273: hr_pump_utils.name(p_module_package, p_module_name,
1274: l_package_name, l_view_name);
1275:
1276: -- Build call string.
1277: l_call_string := 'begin ' || l_package_name || '.' ||

Line 1308: hr_pump_utils.set_multi_msg_error_flag(false);

1304: -- 1. Clear the message list.
1305: -- 2. Reset multi message error flag.
1306: --
1307: hr_multi_message.enable_message_list;
1308: hr_pump_utils.set_multi_msg_error_flag(false);
1309:
1310: -- Call the API.
1311: execute immediate l_call_string
1312: using in p_business_group_id

Line 1321: if hr_pump_utils.multi_msg_errors_exist then

1317: -- If there are multi-message errors then raise the exception. The
1318: -- exception cannot be propagated out from the call block because
1319: -- it gets converted to an unhandled user exception.
1320: --
1321: if hr_pump_utils.multi_msg_errors_exist then
1322: raise hr_multi_message.error_message_exist;
1323: end if;
1324:
1325: hr_data_pump.exit('call_wrapper');

Line 1662: hr_pump_utils.set_multi_msg_error_flag(false);

1658: --
1659: -- Initialise code for output of error message.
1660: --
1661: hr_multi_message.enable_message_list;
1662: hr_pump_utils.set_multi_msg_error_flag(false);
1663: --
1664: hr_utility.set_message (800, 'HR_7208_API_BUS_GRP_INVALID');
1665: hr_utility.raise_error;
1666: end if;

Line 1998: hr_pump_utils.set_current_session_running(p_running => true);

1994: set_dt_foreign_locking;
1995: --
1996: -- Mark this session as a running Data Pump session.
1997: --
1998: hr_pump_utils.set_current_session_running(p_running => true);
1999:
2000: /*
2001: * Main processing loop. We attempt to grab a
2002: * range of batch lines to process until there

Line 2127: hr_pump_utils.set_current_session_running(p_running => false);

2123:
2124: --
2125: -- This is no longer a running Data Pump session.
2126: --
2127: hr_pump_utils.set_current_session_running(p_running => false);
2128:
2129: hr_data_pump.exit('internal_slave');
2130:
2131: /*

Line 2166: hr_pump_utils.set_current_session_running(p_running => false);

2162:
2163: --
2164: -- This is no longer a running Data Pump session.
2165: --
2166: hr_pump_utils.set_current_session_running(p_running => false);
2167:
2168: end internal_slave;
2169:
2170: ---------------------------------- slave --------------------------------------