DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on FND_CRYPTO

Line 3977: l_oldpasschar:=mod(fnd_crypto.randomnumber,10);

3973: -- l_oldpasschar:=floor(dbms_random.value(0,9));
3974: -- the following line has an ATG CU3 dependency. If you need to update and
3975: -- release the patch before that, comment it out and replace with the line above
3976:
3977: l_oldpasschar:=mod(fnd_crypto.randomnumber,10);
3978: l_password:=l_oldpasschar;
3979:
3980: loop
3981: --l_passchar:=dbms_random.string('U',1);

Line 3985: l_passchar:=fnd_crypto.RandomString(len=>1);

3981: --l_passchar:=dbms_random.string('U',1);
3982: -- the following line has an ATG CU3 dependency. If you need to update and
3983: -- release the patch before that, comment it out and replace with the line above
3984:
3985: l_passchar:=fnd_crypto.RandomString(len=>1);
3986: if (l_passchar<>l_oldpasschar) then
3987: l_password:=l_password||l_passchar;
3988: l_oldpasschar:=l_passchar;
3989: end if;