DBA Data[Home] [Help]

APPS.BOM_RTG_VAL_TO_ID dependencies on MTL_PARAMETERS

Line 32: * organization_id using MTL_PARAMETERS.

28: /********************************************************************
29: * Function : Organization
30: * Returns : NUMBER
31: * Purpose : Will convert the value of organization_code to
32: * organization_id using MTL_PARAMETERS.
33: * If the conversion fails then the function will return
34: * a NULL otherwise will return the org_id.
35: * For an unexpected error function will return a
36: * missing value.

Line 48: FROM mtl_parameters

44: l_err_text VARCHAR2(2000);
45: BEGIN
46: SELECT organization_id
47: INTO l_id
48: FROM mtl_parameters
49: WHERE organization_code = p_organization;
50:
51: RETURN l_id;
52: