‎2008 Oct 10 1:33 PM
Hello Experts!
I have one question. I have variable or structure and now I want get a binary sum form of it. I thought about TRANSLATE statement but I'm not sure that is proper way. So if you have any hints I will be gratefull.
Thanks in advance
BL
‎2008 Oct 10 1:53 PM
Please explain further. I've no idea what you are talking about. Give an example.
‎2008 Oct 10 1:53 PM
Please explain further. I've no idea what you are talking about. Give an example.
‎2008 Oct 10 2:02 PM
I.e.
I have variable or structure name i.e. uservartiant.
In this structure I have some data i.e. (name, plant, work center).
Now I want to see binary sum of this data, like you can se binary sum of file.
‎2008 Oct 10 2:09 PM
So, some kind of parity check? You want to convert the fields into binary form and see what the value is?
You'll have to convert the entire structure to xstring. What's the purpose behind this?
matt
‎2008 Oct 10 2:17 PM
I have to check response time in some transactions. I know how to do it. But I also have to know why response times are different. Cause is database and sytem or someone changes their variant to not to see somethig (if they don't see something they don't do it). So I want to save with all logs binary sum of variant to check if user changed his variant.
‎2008 Oct 10 3:16 PM
The binary sum won't be guaranteed unique. I.e. two variants could have the same binary sum. Sum for AB = sum for BA.
I'd simply put whole structure into the key.
But otherwise, you could use a hashing function as in function group SECH.
E.g.
CALCULATE_HASH_FOR_CHAR
CALCULATE_HASH_FOR_RAW
matt