‎2019 May 24 10:28 AM
Hi,
I need to generate a random xstring with lenght 32.
Completely random, not using FM like CMS_API_GENERAL_GUID_CREATE that generate data like this, "sequential":
BB5242AF6F291EE99FC0B89A99310BB6
BB5242AF6F291EE99FC0B901667F0BB6
BB5242AF6F291EE99FC0C7483C194BDF
Any idea how to do it?
Thanks
‎2019 May 24 11:08 AM
Use one of the documented techniques for generating a random number in ABAP and then convert it to hex?
‎2019 May 24 11:17 AM
‎2019 May 24 12:15 PM
Generate a random integer between 0 and 15, convert to hex, 32 times should do it.
‎2019 May 24 11:12 AM
A solution could be generate random 0 to F and concatenate 32 times...
‎2019 May 24 11:58 AM