DBA Data[Home] [Help]

APPS.EGO_BOM_BULKLOAD_PVT_PKG dependencies on MTL_PARAMETERS

Line 98: * organization_id using MTL_PARAMETERS.

94: /********************************************************************
95: * Function : Organization
96: * Returns : NUMBER
97: * Purpose : Will convert the value of organization_code to
98: * organization_id using MTL_PARAMETERS.
99: * If the conversion fails then the function will return
100: * a NULL otherwise will return the org_id.
101: * For an unexpected error function will return a
102: * missing value.

Line 111: FROM Mtl_Parameters

107: l_id NUMBER;
108: BEGIN
109: SELECT Organization_Id
110: INTO l_id
111: FROM Mtl_Parameters
112: WHERE Organization_Code = p_organization;
113:
114: RETURN l_id;
115: