DBA Data[Home] [Help]

APPS.FND_USER_PKG dependencies on FND_FUNCTION

Line 365: fnd_function_security_cache.update_user(l_user_id);

361: select user_id into l_user_id
362: from fnd_user
363: where user_name = upper(x_user_name);
364:
365: fnd_function_security_cache.update_user(l_user_id);
366: end if;
367:
368:
369: if (fnd_log.LEVEL_STATEMENT >= fnd_log.g_current_runtime_level) then

Line 1584: fnd_function_security_cache.update_user(p_from_id);

1580: set customer_id = p_to_fk_id
1581: where customer_id = p_from_fk_id;
1582:
1583: -- Added for Function Security Cache Invalidation
1584: fnd_function_security_cache.update_user(p_from_id);
1585:
1586: end if;
1587:
1588: end MergeCustomer;

Line 3024: fnd_function_security_cache.delete_user(l_user_id);

3020: fnd_message.set_token('USER_NAME', username);
3021: app_exception.raise_exception;
3022: else
3023: -- Added for Function Security Cache Invalidation
3024: fnd_function_security_cache.delete_user(l_user_id);
3025: end if;
3026:
3027: end RemovePendingUser;
3028:

Line 3206: fnd_function_security_cache.update_user(l_user_id);

3202: into l_user_id
3203: from fnd_user
3204: where user_name = upper(x_new_user_name);
3205:
3206: fnd_function_security_cache.update_user(l_user_id);
3207:
3208: -- propagate username change to WF and entity mgr
3209: tmpbuf := 'Start calling fnd_user_pkg.user_synch('||x_new_user_name||')';
3210: if (fnd_log.LEVEL_STATEMENT >= fnd_log.g_current_runtime_level) then

Line 3313: fnd_function_security_cache.update_user(p_from_id);

3309: set person_party_id = p_to_fk_id
3310: where person_party_id = p_from_fk_id;
3311:
3312: -- Added for Function Security Cache Invalidation
3313: fnd_function_security_cache.update_user(p_from_id);
3314:
3315: end if;
3316:
3317: end MergePartyId;

Line 3744: isOverrideFuncAssigned := fnd_function.test('OVERRIDE_PASSWORD_POLICY_PERM','N');

3740: -- Get the profile value at the user level for the affected user and
3741: -- encrypt accordingly. If not set at the user level, this will default to
3742: -- the site level profile value.
3743: /* Code change for bug 7043484 */
3744: isOverrideFuncAssigned := fnd_function.test('OVERRIDE_PASSWORD_POLICY_PERM','N');
3745: if(isOverrideFuncAssigned = true) then
3746: pwdCaseOpt := fnd_profile.value('SIGNON_PASSWORD_CASE');
3747: else
3748: pwdCaseOpt := fnd_profile.value_specific('SIGNON_PASSWORD_CASE', userid);