Does anyone have experience reading an Abap RAW data type using JCO? I am trying to read a GUID (via RFC_READ_TABLE) that is defined as RAW length 16. When I view this field in SAP GUI, I see 32 characters. However, when I read this field using JCO, I only see the first 16 characters.
The mapping documents state Abap RAW maps to a Java byte array. I have tried that - no luck. I have used the constructor of a string that takes a byte array - no luck. I have made sure my character set is UTF-8 in case Unicode was a possibility. I have turned on tracing to level 8 and only see 16 characters in the output. I need the other 16 characters as all 32 characters are used as the primary key into other tables.
I also posted this on the Java Development space. I know the rule about not cross-posting, but I wasn't sure which was a better place to post something like this. This my first post on here, so my apologies in advance.
Larry