DBA Data[Home] [Help]

APPS.OKS_AUTO_REMINDER dependencies on FND_CRYPTO

Line 311: Note : Call FND_CRYPTO for generating the password (track bug 4358822)

307: --@ USER_SYNCHED constant pls_integer := 3;
308: --@ USER_EXISTS_NO_LINK_ALLOWED constant pls_integer := 4;
309: IF l_test_user IN (0,3) THEN
310: CALL FND_USER_PKG.CreateUserIdParty
311: Note : Call FND_CRYPTO for generating the password (track bug 4358822)
312: FND_USER_RESP_GROUPS_API.insert_assignment with responsibility as 'OKS_ERN_WEB'
313: ELSE -- l_test_user <> 0 ,3
314: -- error, raise exception
315: RAISE FND_API.G_EXC_ERROR;

Line 3257: 'ok to create a new user, calling FND_CRYPTO.randombytes');

3253:
3254: -- log file
3255: fnd_file.put_line
3256: (fnd_file.LOG,
3257: 'ok to create a new user, calling FND_CRYPTO.randombytes');
3258: x_password :=
3259: fnd_crypto.randomstring
3260: (NVL (fnd_profile.VALUE ('SIGNON_PASSWORD_LENGTH'),
3261: 4));

Line 3259: fnd_crypto.randomstring

3255: fnd_file.put_line
3256: (fnd_file.LOG,
3257: 'ok to create a new user, calling FND_CRYPTO.randombytes');
3258: x_password :=
3259: fnd_crypto.randomstring
3260: (NVL (fnd_profile.VALUE ('SIGNON_PASSWORD_LENGTH'),
3261: 4));
3262:
3263: /*modified for bug7207391*/

Line 3274: fnd_crypto.randomstring

3270: v_counter := v_counter + 1;
3271:
3272: -- generate password
3273: x_password :=
3274: fnd_crypto.randomstring
3275: (NVL (fnd_profile.VALUE ('SIGNON_PASSWORD_LENGTH'),
3276: 4));
3277:
3278: fnd_file.put_line