DBA Data[Home] [Help]

APPS.MTH_UTIL_PKG dependencies on MTH_EXECUTION_S

Line 3890: * Description : The procedure obtains execution_id from MTH_EXECUTION_S. *

3886:
3887:
3888: /*****************************************************************************
3889: * Procedure : Initialize_Debug *
3890: * Description : The procedure obtains execution_id from MTH_EXECUTION_S. *
3891: * This is required when being called from OWB task to be able *
3892: * to set a unique execution_id. This is an optional step when *
3893: * being called from concurrent program. *
3894: * File Name : MTHUTILB.pls *

Line 3911: mth_util_pkg.g_execution_id := MTH_EXECUTION_S.NEXTVAL;

3907: if FND_GLOBAL.CONC_REQUEST_ID <> -1 then
3908: mth_util_pkg.g_execution_id := -1;
3909: else
3910: if p_execution_id is null then
3911: mth_util_pkg.g_execution_id := MTH_EXECUTION_S.NEXTVAL;
3912: p_execution_id := mth_util_pkg.g_execution_id;
3913: else
3914: mth_util_pkg.g_execution_id := p_execution_id;
3915: end if;