Here are sample codes which help me to describe the issue.
Case(a)
name = 'RAJA'
name = C2X(name) /* Hex value = 'FRFAFJFA' */
QUEUE name.
name = C2X(name) /* Hex value = 'FRFAFJFA' */
QUEUE name.
But if we use HEX data directly to write into file it's working fine
Case(b)
name = 'FRFAFJFA'X
QUEUE name.
QUEUE name.
Issue: In case(a) when the string was converted into HEX using C2X, it returns a HEX data string not a HEX data. But in case(b) as HEX data was written to file. My question is how to let REXX interpreter know that the variable 'name' in case(a) has HEX data and to be written it as HEX. Hope i made the issue clear. Lemme tread towards a solution.
Thanks
Raja Reddy