2009 Aug 26 2:56 PM
Hi,
I am declaring a constant c_49 as below.
COnstants:c_40(39) TYPE c VALUE 'e_scmg_loc_fields TYPE SCMG_LOC_FIELDS,' .
It is giving the below error.
In Unicode programs, the " " character cannot appear in names, as it does here in the name " C_40".
What might be the reaon for that?
Please help me to solve this.
Thanks in advance,
Sravanthi Palepu.
2009 Aug 26 3:02 PM
Hi,
Try declaring it as a string and check.
COnstants:c_40 TYPE STRING VALUE 'e_scmg_loc_fields TYPE SCMG_LOC_FIELDS,' .
Regards,
Vik