DBA Data[Home] [Help]

APPS.FEM_BR_MAPPING_RULE_PVT dependencies on FEM_ALLOC_BUSINESS_RULE

Line 553: -- in the FEM_ALLOC_BUSINESS_RULE table.

549: -- DeletMappingRuleRec
550: --
551: -- DESCRIPTION
552: -- Deletes a Mapping Rule Definition by performing deletes on records
553: -- in the FEM_ALLOC_BUSINESS_RULE table.
554: --
555: -- IN
556: -- p_obj_def_id - Object Definition ID.
557: --

Line 566: delete from fem_alloc_business_rule

562: --------------------------------------------------------------------------------
563: IS
564: BEGIN
565:
566: delete from fem_alloc_business_rule
567: where object_definition_id = p_obj_def_id;
568:
569: END DeleteMappingRuleRec;
570:

Line 781: insert into fem_alloc_business_rule (

777: --------------------------------------------------------------------------------
778: IS
779: BEGIN
780:
781: insert into fem_alloc_business_rule (
782: object_definition_id
783: ,cost_contribution_flag
784: ,accumulate_flag
785: /*,source_where_clause

Line 807: from fem_alloc_business_rule

803: ,FND_GLOBAL.user_id
804: ,sysdate
805: ,FND_GLOBAL.login_id
806: ,object_version_number
807: from fem_alloc_business_rule
808: where object_definition_id = p_source_obj_def_id;
809:
810: END CopyMappingRuleRec;
811:

Line 1615: the mapping rule content viz. FEM_ALLOC_BUSINESS_RULE,

1611: /*************************************************************************
1612:
1613: delete_map_rule_content
1614: This procedure deletes the data from the 3 tables that store
1615: the mapping rule content viz. FEM_ALLOC_BUSINESS_RULE,
1616: FEM_ALLOC_BR_FORMULA and FEM_ALLOC_BR_DIMENSIONS.
1617:
1618: *************************************************************************/
1619: