DBA Data[Home] [Help]

APPS.WFA_SEC dependencies on FND_CRYPTO

Line 1063: -- Fnd_crypto.RandomNumber return a number of 16 bytes which has maximum

1059: -- See spec for description
1060: function Random return varchar2
1061: is
1062: begin
1063: -- Fnd_crypto.RandomNumber return a number of 16 bytes which has maximum
1064: -- 39 digits. This is well within the limit of 80 that this random
1065: -- function is returning.
1066: return(to_char(fnd_crypto.RandomNumber));
1067: end Random;

Line 1066: return(to_char(fnd_crypto.RandomNumber));

1062: begin
1063: -- Fnd_crypto.RandomNumber return a number of 16 bytes which has maximum
1064: -- 39 digits. This is well within the limit of 80 that this random
1065: -- function is returning.
1066: return(to_char(fnd_crypto.RandomNumber));
1067: end Random;
1068:
1069: end WFA_SEC;