DBA Data[Home] [Help]

APPS.BOM_VAL_TO_ID dependencies on MTL_PARAMETERS

Line 146: * organization_id using MTL_PARAMETERS.

142: /********************************************************************
143: * Function : Organization
144: * Returns : NUMBER
145: * Purpose : Will convert the value of organization_code to
146: * organization_id using MTL_PARAMETERS.
147: * If the conversion fails then the function will return
148: * a NULL otherwise will return the org_id.
149: * For an unexpected error function will return a
150: * missing value.

Line 162: FROM mtl_parameters

158: l_err_text VARCHAR2(2000);
159: BEGIN
160: SELECT organization_id
161: INTO l_id
162: FROM mtl_parameters
163: WHERE organization_code = p_organization;
164:
165: RETURN l_id;
166: