DBA Data[Home] [Help]

APPS.FEM_ALLOC_BR_UTIL_PKG dependencies on FEM_ALLOC_BUSINESS_RULE

Line 1895: FROM fem_alloc_business_rule

1891:
1892: /* get the business rule data */
1893: SELECT cost_contribution_flag, accumulate_flag
1894: INTO v_br_cost_flag,v_br_acc_flag
1895: FROM fem_alloc_business_rule
1896: WHERE object_definition_id = p_map_rule_obj_def_id;
1897:
1898: /* get the snapshot business rule data */
1899: SELECT cost_contribution_flag, accumulate_flag

Line 1901: FROM fem_alloc_business_rule

1897:
1898: /* get the snapshot business rule data */
1899: SELECT cost_contribution_flag, accumulate_flag
1900: INTO v_sbr_cost_flag,v_sbr_acc_flag
1901: FROM fem_alloc_business_rule
1902: WHERE object_definition_id = v_helper_obj_def_id;
1903:
1904:
1905: IF v_br_cost_flag <> v_sbr_cost_flag OR v_br_acc_flag <> v_sbr_acc_flag THEN

Line 3116: from fem_alloc_business_rule

3112: --Get the Track Contributions flag.
3113: BEGIN
3114: select decode(NVL(cost_contribution_flag,'N'),'Y',1,0)
3115: into v_trace_contrib_flag
3116: from fem_alloc_business_rule
3117: where object_definition_id = p_object_definition_id;
3118:
3119: EXCEPTION
3120: WHEN no_data_found THEN