DBA Data[Home] [Help]

APPS.ENG_VAL_TO_ID dependencies on MTL_PARAMETERS

Line 1290: * using MTL_PARAMETERS.

1286: /***************************************************************************
1287: * Function : Organization
1288: * Returns : NUMBER
1289: * Purpose : Will convert the value of organization_code to organization_id
1290: * using MTL_PARAMETERS.
1291: * If the conversion fails then the function will return a NULL
1292: * otherwise will return the org_id. For an unexpected error
1293: * function will return a missing value.
1294: ****************************************************************************/

Line 1307: FROM mtl_parameters

1303: BEGIN
1304:
1305: SELECT organization_id
1306: INTO l_id
1307: FROM mtl_parameters
1308: WHERE organization_code = p_organization;
1309:
1310: RETURN l_id;
1311: