DBA Data[Home] [Help]

APPS.EGO_PUB_WS_ICC dependencies on EGO_PUB_WS_AG

Line 724: child VS will get synced. Explode_ICC() will call EGO_PUB_WS_AG.Explode_Attribute_Group() procedure.

720: END IF; /* l_mode */
721:
722: /*In both Batch and List Mode, hard-code the param CHILD_VALUESETS as Y.
723: This param is NOT available in ICC xml. So, always set it to Y so that
724: child VS will get synced. Explode_ICC() will call EGO_PUB_WS_AG.Explode_Attribute_Group() procedure.
725: It inturn looks for this param and decides whether to call EGO_PUB_WS_VS.Explode_Value_Set() or not
726: If ICC does not hard-code this param, Explode_Attribute_Group will raise a no-data-found exception.*/
727: --debug(L_PROC_NAME||'Batch,List Mode, Insert into EGO_PUB_WS_CONFIG, Parameter_Name: CHILD_VALUESETS with Value =TRUE');
728: INSERT INTO EGO_PUB_WS_CONFIG ( session_id,

Line 1434: -- from the derived AGs and calls EGO_PUB_WS_AG.Explode_Attribute_Group procedure.

1430: -- Description : This procedure performs the following actions:
1431: -- 1. Explode the given ICCs and fetches the AGs associated to them.
1432: -- Insert these AGs into EGO_PUB_WS_ENTITIES table
1433: -- 2. Based on the config param VALUESETS, finds out whether Valuesets have to be exploded
1434: -- from the derived AGs and calls EGO_PUB_WS_AG.Explode_Attribute_Group procedure.
1435: -- This procedure is called from Preprocess_Input_ICC
1436: --
1437: -- Scope : Private
1438: --

Line 1702: /*For all the AGs exploded above, VSs have to be derived, so calling EGO_PUB_WS_AG.Explode_Attribute_Group procedure

1698: --debug(L_PROC_NAME||' End of an iteration for cur_derived_ags cursor, l_prev_ag_id: '||l_prev_ag_id||' ,l_prev_ag_seq_id: '||l_prev_ag_seq_id);
1699: END LOOP; /* rec_derived_ags */
1700: --debug(L_PROC_NAME||' End of Loop on cur_derived_ags cursor');
1701:
1702: /*For all the AGs exploded above, VSs have to be derived, so calling EGO_PUB_WS_AG.Explode_Attribute_Group procedure
1703: only when Publish Valuesets config param is set to Yes.
1704: For both modes - batch and list, VALUESETS param has been added to EGO_PUB_WS_CONFIG table in Create_params_ICC procedure.
1705: So, we don't differentiate the mode while fetching this param below*/
1706:

Line 1711: --debug(L_PROC_NAME||' Calling EGO_PUB_WS_AG.Explode_Attribute_Group');

1707: l_param_vs := EGO_PUB_WS_UTIL.Get_Char_Param_Value(p_session_id, 'VALUESETS', NULL, NULL);
1708: --debug(L_PROC_NAME||' l_param_vs: '||l_param_vs);
1709:
1710: IF l_param_vs = G_CHAR_TRUE THEN
1711: --debug(L_PROC_NAME||' Calling EGO_PUB_WS_AG.Explode_Attribute_Group');
1712: EGO_PUB_WS_AG.Explode_Attribute_Group(p_session_id);
1713: --debug(L_PROC_NAME||' Returned from EGO_PUB_WS_AG.Explode_Attribute_Group');
1714: END IF;
1715:

Line 1712: EGO_PUB_WS_AG.Explode_Attribute_Group(p_session_id);

1708: --debug(L_PROC_NAME||' l_param_vs: '||l_param_vs);
1709:
1710: IF l_param_vs = G_CHAR_TRUE THEN
1711: --debug(L_PROC_NAME||' Calling EGO_PUB_WS_AG.Explode_Attribute_Group');
1712: EGO_PUB_WS_AG.Explode_Attribute_Group(p_session_id);
1713: --debug(L_PROC_NAME||' Returned from EGO_PUB_WS_AG.Explode_Attribute_Group');
1714: END IF;
1715:
1716:

Line 1713: --debug(L_PROC_NAME||' Returned from EGO_PUB_WS_AG.Explode_Attribute_Group');

1709:
1710: IF l_param_vs = G_CHAR_TRUE THEN
1711: --debug(L_PROC_NAME||' Calling EGO_PUB_WS_AG.Explode_Attribute_Group');
1712: EGO_PUB_WS_AG.Explode_Attribute_Group(p_session_id);
1713: --debug(L_PROC_NAME||' Returned from EGO_PUB_WS_AG.Explode_Attribute_Group');
1714: END IF;
1715:
1716:
1717: /*

Line 1967: synced and derive them. Once AGs are exploded call the EGO_PUB_WS_AG.explode_attribute_group for

1963: --debug(L_PROC_NAME||'Batch mode, l_param_ag: '||l_param_ag );
1964: END IF;
1965:
1966: /* check for the explosion of the immediate child entity only. In this case, check if AG have to be
1967: synced and derive them. Once AGs are exploded call the EGO_PUB_WS_AG.explode_attribute_group for
1968: VS explosion */
1969: IF l_param_ag = G_CHAR_TRUE THEN
1970: --debug(L_PROC_NAME||'Calling Explode_ICC procedure');
1971: Explode_ICC(p_session_id);