‎2006 Nov 28 6:12 PM
Is it possible to define a method parameters which is a table ?
In my case, i want to use a multiline structure as a parameter but in the edit parameter window the only two data type references available are ABAP dictionnary and Object type.
Thanks for your answer.
‎2006 Nov 28 6:13 PM
Hi,
Create a table type in SE11..Then use it in the method parameters for making the parameter as internal table..
Thanks,
Naren
‎2006 Nov 28 6:13 PM
Hi,
Create a table type in SE11..Then use it in the method parameters for making the parameter as internal table..
Thanks,
Naren
‎2006 Nov 29 2:53 AM
Hi,
U cannot declare an internal table(parameter -- Multiline structure) reffering to a structure, The only way to do it is to create a Table type for the structure in se11 and declare the paremeter like,
itab TYPE ztabletype
Bye,
‎2006 Nov 29 5:42 AM
‎2006 Nov 29 6:10 AM
Hi,
you can ofcourse do that.
create a structure in se11.
then create a table type and specify the above mentioned structure or any other DDIC table as the row type to this table type.
now specify this table type as the referece type to the parameter.
hope this helps.
Regards,
Kinshuk