Hi ,
when i am trying to move 6 byte alphanumeric data to 6 byte numeric variable, i am able to get the data properly.
but when i am passing an alphanumeric data greater than 6 bytes,my programcanhandle that data and get only the 6 bytes
from the input data in the alphanumeric variable then pass to the numeric variable.
in the second case i am not getting the correct output.
EX::
input :: AAA/ZA
Output :: AAA/ZA (as expected)
case2::
Input :: HFGBCHGAAA/ZA
Output :: AAA/Z1 (But expect output is AAA/ZA).
please suggest what changes i have to made in the code to get the correct output.
Thanks.