‎2007 Jun 25 7:39 AM
Hi,
when i write the statement PARAMETERS : fname type string.
It says the " nested datatype string is not allowed".
Wht possibly cud be the problem ?
‎2007 Jun 25 7:44 AM
Hi Sai,
The data Type "String" is not allowed for parameters.
you can go with type "C".
Thanks.
‎2007 Jun 25 7:44 AM
Hi Sai,
The data Type "String" is not allowed for parameters.
you can go with type "C".
Thanks.
‎2007 Jun 25 7:46 AM
Hi Sai,
Define it as: PARAMETERS: fname(255) type c.
Thanks and Regards,
Kunjal Patel
‎2007 Jun 25 7:47 AM
Hi,
After the <b>Type</b> u must give:
The built-in ABAP types c, d, i, n, p, t, and x
Otherwise,A non-specific data type from the ABAP Dictionary or a non-generic data type, from the same program, already defined using TYPES, and which is elementary and flat and not of the type f (with the exception of the use of NO-DISPLAY).
It won't accept the Predefined Data Type.
Regards,
Padmam.
‎2007 Jun 25 7:48 AM
Hi Sai,
You can define string in data element and refer it in parameters.
Like,
ZELE_STRING is your string and then
in paramaters write it like,
parameters: pa_bukrn type zele_string.
Reward if useful!