DBA Data[Home] [Help]

APPS.FEM_REFRESH_ENG_PKG dependencies on FEM_PL_PKG

Line 1254: -- Call the FEM_PL_PKG.Register_Request API procedure to register

1250: v_apps_user_id := FND_GLOBAL.User_Id;
1251: v_login_id := FND_GLOBAL.Login_Id;
1252: v_pgm_id := FND_GLOBAL.Conc_Program_Id;
1253: v_pgm_app_id := FND_GLOBAL.Prog_Appl_ID;
1254: -- Call the FEM_PL_PKG.Register_Request API procedure to register
1255: -- the concurrent request in FEM_PL_REQUESTS.
1256:
1257: FEM_PL_PKG.Register_Request
1258: (P_API_VERSION => c_api_version,

Line 1257: FEM_PL_PKG.Register_Request

1253: v_pgm_app_id := FND_GLOBAL.Prog_Appl_ID;
1254: -- Call the FEM_PL_PKG.Register_Request API procedure to register
1255: -- the concurrent request in FEM_PL_REQUESTS.
1256:
1257: FEM_PL_PKG.Register_Request
1258: (P_API_VERSION => c_api_version,
1259: P_COMMIT => c_false,
1260: P_REQUEST_ID => v_request_id,
1261: P_USER_ID => v_apps_user_id,

Line 1281: FEM_PL_PKG.Register_Object_Execution

1277: END IF;
1278: -- Check for process locks and process overlaps and register
1279: -- the execution in FEM_PL_OBJECT_EXECUTIONS, obtaining an execution lock.
1280:
1281: FEM_PL_PKG.Register_Object_Execution
1282: (P_API_VERSION => c_api_version,
1283: P_COMMIT => c_false,
1284: P_REQUEST_ID => v_request_id,
1285: P_OBJECT_ID => p_object_id,

Line 1300: FEM_PL_PKG.Register_Object_Def

1296: -- Lock exists or API call failed
1297: RAISE e_exec_lock_failed;
1298: END IF;
1299:
1300: FEM_PL_PKG.Register_Object_Def
1301: (P_API_VERSION => c_api_version,
1302: P_COMMIT => c_false,
1303: P_REQUEST_ID => v_request_id,
1304: P_OBJECT_ID => p_object_id,

Line 1321: FEM_PL_PKG.Update_Obj_Exec_Status(

1317:
1318: ------------------------------------
1319: -- Update Object Execution Status --
1320: ------------------------------------
1321: FEM_PL_PKG.Update_Obj_Exec_Status(
1322: P_API_VERSION => c_api_version,
1323: P_COMMIT => c_true,
1324: P_REQUEST_ID => v_request_id,
1325: P_OBJECT_ID => p_object_id,

Line 1340: FEM_PL_PKG.Update_Request_Status(

1336:
1337: ---------------------------
1338: -- Update Request Status --
1339: ---------------------------
1340: FEM_PL_PKG.Update_Request_Status(
1341: P_API_VERSION => c_api_version,
1342: P_COMMIT => c_true,
1343: P_REQUEST_ID => v_request_id,
1344: P_EXEC_STATUS_CODE => p_execution_status,

Line 1379: FEM_PL_PKG.Unregister_Request(

1375: (p_severity => c_log_level_1,
1376: p_module => c_block||'.'||'Register_process_execution',
1377: p_msg_text => 'raising Exec_Lock_failed');
1378:
1379: FEM_PL_PKG.Unregister_Request(
1380: P_API_VERSION => c_api_version,
1381: P_COMMIT => c_true,
1382: P_REQUEST_ID => v_request_id,
1383: X_MSG_COUNT => v_msg_count,