DBA Data[Home] [Help]

APPS.JTF_UM_USERTYPE_CREDENTIALS dependencies on FND_PROFILE

Line 254: IF (nvl(FND_PROFILE.value('JTF_INDIVIDUALUSER_ACCOUNT'),'N') <> 'Y')

250:
251: P_PARTY_ID := l_customer_id;
252:
253: /* Bug 3493035
254: IF (nvl(FND_PROFILE.value('JTF_INDIVIDUALUSER_ACCOUNT'),'N') <> 'Y')
255: THEN
256: l_profile := FALSE;
257: END IF;*/
258:

Line 441: p_assign_def_resp := fnd_profile.save

437: p_resp_id => p_responsibility_id,
438: p_app_id => X_APPLICATION_ID
439: ) ;
440: /* This has been replaced by a method above
441: p_assign_def_resp := fnd_profile.save
442: (X_NAME => 'JTF_PROFILE_DEFAULT_RESPONSIBILITY',
443: X_VALUE => p_responsibility_id,
444: X_LEVEL_NAME => 'USER',
445: X_LEVEL_VALUE => X_USER_ID);

Line 623: notification_preference => nvl(fnd_profile.value_specific('JTA_UM_MAIL_PREFERENCE'),'QUERY'));*/

619: --Added for bug 7661549
620: /*wf_directory.SetUserAttr(user_name => X_USER_NAME,
621: orig_system => 'FND_USR',
622: orig_system_id => X_USER_ID,
623: notification_preference => nvl(fnd_profile.value_specific('JTA_UM_MAIL_PREFERENCE'),'QUERY'));*/
624:
625: end if;
626: --end of changes for 3899304
627: -- removing JTF_PENDING_REMOVAL resp assigned during registration process

Line 738: IF (nvl(FND_PROFILE.value('JTA_UM_AUTO_ACCT_CREATION'),'Y') = 'Y') THEN

734:
735:
736:
737: -- Bug Fix: 3493035
738: IF (nvl(FND_PROFILE.value('JTA_UM_AUTO_ACCT_CREATION'),'Y') = 'Y') THEN
739:
740: QUERY_ACCOUNT (
741: X_USER_ID => X_USER_ID
742: );

Line 1269: p_assign_def_resp := fnd_profile.save

1265: p_message => 'p_user_id:' || p_user_id || '+' || 'p_resp_id:' || p_resp_id || '+' || 'p_app_id:' || p_app_id
1266: );
1267: end if;
1268:
1269: p_assign_def_resp := fnd_profile.save
1270: (X_NAME => 'JTF_PROFILE_DEFAULT_RESPONSIBILITY',
1271: X_VALUE => p_resp_id,
1272: X_LEVEL_NAME => 'USER',
1273: X_LEVEL_VALUE => p_user_id);

Line 1275: p_assign_def_appl := fnd_profile.save

1271: X_VALUE => p_resp_id,
1272: X_LEVEL_NAME => 'USER',
1273: X_LEVEL_VALUE => p_user_id);
1274:
1275: p_assign_def_appl := fnd_profile.save
1276: (X_NAME => 'JTF_PROFILE_DEFAULT_APPLICATION',
1277: X_VALUE => p_app_id,
1278: X_LEVEL_NAME => 'USER',
1279: X_LEVEL_VALUE => p_user_id);