DBA Data[Home] [Help]

APPS.AP_WEB_DFLEX_PKG dependencies on FND_PROFILE

Line 1208: FND_PROFILE.GET('AP_WEB_DESC_FLEX_NAME', l_dflex_name);

1204: IS
1205: l_dflex_name VARCHAR2(30) := NULL;
1206: BEGIN
1207:
1208: FND_PROFILE.GET('AP_WEB_DESC_FLEX_NAME', l_dflex_name);
1209:
1210: RETURN (l_dflex_name IS NOT NULL);
1211:
1212: END IsCustomFieldsFeatureUsed;

Line 2179: l_dflex_enabled := FND_PROFILE.VALUE('AP_WEB_DESC_FLEX_NAME');

2175: BEGIN
2176: -- Bug 2188747 we need to able to user the profile option of the employee instead of the preparer
2177: l_debug_info := 'Get AP_WEB_DESC_FLEX_NAME profile option';
2178: if (p_userId is null) then -- user loggon
2179: l_dflex_enabled := FND_PROFILE.VALUE('AP_WEB_DESC_FLEX_NAME');
2180: else
2181: l_dflex_enabled := AP_WEB_UTILITIES_PKG.VALUE_SPECIFIC(
2182: p_name => 'AP_WEB_DESC_FLEX_NAME',
2183: p_user_id => p_userId,