i am just a beginner in mainframes
my application needs to generate a 16 digit random no which should be unique
even if they are called random the right term should be PSEUDO RANDOM
randomness is a statistical property quite different from uniqueness which is deterministic
when testing the first call to the random number generator has a seed which is used to guarantee
that the sequence of random numbers will be the same across different runs in order to test with
consistent data
when the application is <promoted> to production the programs will have to be modified
in order to not provide the seed with the hope that each run will give a sequence of PSEUDO RANDOM numbers
( different from the previous ones )
if the main requirement is uniqueness it would be advisable to review the approach!