DBA Data[Home] [Help]

APPS.FEM_RULE_SET_MANAGER dependencies on FEM_RULESET_PROCESS_DATA

Line 1425: -- Function : Insert a row into the fem_ruleset_process_data table.

1421: l_module_name VARCHAR2(70) := G_MODULE_NAME || 'Create_RuleSet_Process_Data';
1422: Begin
1423: -- *******************************************************************************************
1424: -- name : Create_RuleSet_Process_Data
1425: -- Function : Insert a row into the fem_ruleset_process_data table.
1426: --
1427: -- Parameters
1428: -- IN
1429: -- p_RuleSet_Object_ID

Line 1451: insert into fem_ruleset_process_data

1447: z_global_counter := z_global_counter+1;
1448: --Bug # 4283689
1449: --fnd_file.put_line(fnd_file.LOG,'Inserting row :'||GetObjectDisplayName(p_Child_Object_ID)||':'||p_RuleSet_Object_ID||':'||z_conc_request_id||':'||p_Child_Object_Definition_ID);
1450:
1451: insert into fem_ruleset_process_data
1452: (RULE_SET_OBJ_ID
1453: ,CHILD_OBJ_ID
1454: ,CHILD_OBJ_DEF_ID
1455: ,ENGINE_EXECUTION_SEQUENCE

Line 3325: DELETE FROM fem_ruleset_process_DATA

3321: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3322: END IF;
3323:
3324: -- and on to the real code...
3325: DELETE FROM fem_ruleset_process_DATA
3326: WHERE request_id = FND_GLOBAL.CONC_REQUEST_ID
3327: AND rule_set_obj_id = p_RuleSet_Object_ID;
3328:
3329:

Line 3681: -- in fem_ruleset_process_data so the engines can run.

3677: IF (z_master_err_state = FEM_UTILS.G_RSM_FATAL_ERR) THEN
3678: RAISE FND_API.G_EXC_ERROR;
3679: -- For nonfatal errors, report error if "continue to process on error"
3680: -- is set to No. In either case, do not rollback what was stored
3681: -- in fem_ruleset_process_data so the engines can run.
3682: -- Ideally, we want to differentiate between a fatal and nonfatal error
3683: -- but since the FND API Standard has only one expected error code,
3684: -- we have to continue to report error for the same cases as before this
3685: -- change for backward compatability.