‎2009 Jul 22 5:20 PM
Hi All,
For a program there are using the SET/GET PARAMETER statements and they are capturing the respective fields.
In the Unicode conversion it is saying that, at SET/GET PARAMETER statements it is saying that (must be a character-type field (data type C, N, D, or T) ).....
So how to handle these type of scenarios......Information on this more valuable.....
Thanks in advance
Regards
Chakri
‎2009 Jul 23 3:42 AM
Hi Chakradar,
<li> It means it accepts only filed type char.
<li> It does not accept fields with type P or F.
DATA data_1 TYPE char10.
SET PARAMETER ID 'MAT1' FIELD data_1.
Thanks
Venkat.O
DATA data_1 TYPE p.
SET PARAMETER ID 'MAT1' FIELD data_1.
‎2009 Jul 22 6:58 PM
‎2009 Jul 23 3:42 AM
Hi Chakradar,
<li> It means it accepts only filed type char.
<li> It does not accept fields with type P or F.
DATA data_1 TYPE char10.
SET PARAMETER ID 'MAT1' FIELD data_1.
Thanks
Venkat.O
DATA data_1 TYPE p.
SET PARAMETER ID 'MAT1' FIELD data_1.
‎2009 Jul 23 4:37 AM
Hi,
Declare the fields as character type(C) or Numeric type (N) or Date type (D) or Time type (T) and pass those fields.
Here though Type N is numeric type but type N objects take them internally as numeric characters and are not considered as numbers.
DATA field_name TYPE C.
SET PARAMETER ID: 'NAME' FIELD FIELD_NAME.Hope it helps you.
Thanks,
Sri.