DBA Data[Home] [Help]

APPS.MST_AUDIT_REP_EXCP dependencies on FND_PROFILE

Line 106: distanceEnginePresent := fnd_profile.value('MST_MILEAGE_ENGINE_AVAIL');

102: WHERE plan_id = plan_idIn
103: AND exception_type = 900;
104:
105: --Determine if distance engine is present (if it is not then no exception of this type should be generated)
106: distanceEnginePresent := fnd_profile.value('MST_MILEAGE_ENGINE_AVAIL');
107: IF distanceEnginePresent <> 'Y' THEN
108: debug_output('No mileage engine present, no check for this exception. MST_MILEAGE_ENGINE_AVAIL=' || distanceEnginePresent);
109: RETURN;
110: END IF;

Line 1409: numberOfCalDays := fnd_profile.value('MST_CALENDAR_EXTRA_DAYS');

1405: WHERE plan_id = plan_idIn
1406: AND exception_type = 404;
1407:
1408: --Obtain number of extra days to consider in plan (using snapshot's logic here) (6/6/2003)
1409: numberOfCalDays := fnd_profile.value('MST_CALENDAR_EXTRA_DAYS');
1410: IF numberOfCalDays is null THEN
1411: numberOfCalDays := 30;
1412: END IF;
1413:

Line 1610: numberOfCalDays := fnd_profile.value('MST_CALENDAR_EXTRA_DAYS');

1606: AND exception_type = 405;
1607:
1608:
1609: --Obtain number of extra days to consider in plan (using snapshot's logic here) (6/6/2003)
1610: numberOfCalDays := fnd_profile.value('MST_CALENDAR_EXTRA_DAYS');
1611: IF numberOfCalDays is null THEN
1612: numberOfCalDays := 30;
1613: END IF;
1614:

Line 2015: own_request_id := fnd_profile.value('CONC_REQUEST_ID');

2011: debug_output('snapshotIsCaller=' || snapshotIsCaller);
2012:
2013: --Determine if audit report can be run. Need to check if another instance of engine/snapshot/audit is running
2014: --Obtain own request id
2015: own_request_id := fnd_profile.value('CONC_REQUEST_ID');
2016: IF own_request_id IS NULL THEN
2017: debug_output('No CONC_REQUEST_ID present');
2018: END IF;
2019: debug_output('own_request_id=' || own_request_id);