DBA Data[Home] [Help]

APPS.GMO_SETUP_PVT dependencies on FND_PROFILE

Line 23: L_CURRENT_VALUE := FND_PROFILE.VALUE('GMO_ENABLED_FLAG');

19:
20: BEGIN
21:
22: --Obtain the current value of the profile option GMO_ENABLED_FLAG.
23: L_CURRENT_VALUE := FND_PROFILE.VALUE('GMO_ENABLED_FLAG');
24:
25: IF L_CURRENT_VALUE <> 'Y' THEN
26:
27: --The profile option ios switched off.

Line 29: L_STATUS := FND_PROFILE.SAVE(X_NAME => 'GMO_ENABLED_FLAG',

25: IF L_CURRENT_VALUE <> 'Y' THEN
26:
27: --The profile option ios switched off.
28: --Hence switch on the profile option.
29: L_STATUS := FND_PROFILE.SAVE(X_NAME => 'GMO_ENABLED_FLAG',
30: X_VALUE => 'Y',
31: X_LEVEL_NAME => 'SITE');
32:
33: --Set the message name based on the status value.