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 2187: l_dflex_enabled := FND_PROFILE.VALUE('AP_WEB_DESC_FLEX_NAME');

2183: BEGIN
2184: -- Bug 2188747 we need to able to user the profile option of the employee instead of the preparer
2185: l_debug_info := 'Get AP_WEB_DESC_FLEX_NAME profile option';
2186: if (p_userId is null) then -- user loggon
2187: l_dflex_enabled := FND_PROFILE.VALUE('AP_WEB_DESC_FLEX_NAME');
2188: else
2189: l_dflex_enabled := AP_WEB_UTILITIES_PKG.VALUE_SPECIFIC(
2190: p_name => 'AP_WEB_DESC_FLEX_NAME',
2191: p_user_id => p_userId,