2007 Dec 07 5:04 AM
Hi all,
my structure field data1 contains the following value : S1USSALARY 0100000000 USD 00000000###/S/######Pb # 1002#####p##### ########### #####
data1(250) type c .
l_p type p.
I want move this values into another structure . but the data is not getting populated into another field .
l_p = data1 + 53(10) .
after this step there is no value in l_p .
Can you give some inputs in this ?
Thank you.
2007 Dec 07 5:10 AM
first change the type of l_p, then it will work
u try change that as n or i.
2007 Dec 07 5:13 AM
Hi,
the problem is u want to move the character value to a number field.
declare like l_p(10) TYPE C
and then assign l_p = data1+53(10)
it will get populated
2007 Dec 07 5:20 AM
here i tried to conver the data1(char ) and l_p is in packed type .
I used the FM char_pack_conversion . that is giving error that character input is not identified.
I want to move the char value to packed value .
That is my problem.