‎2008 Feb 02 6:47 AM
Hi,
try to call an ABAP function, but I always get en error message
"Incorrect field length for Remote Function Call".
My call statement looks as follows:
call "Z_CHANGE_CONFIRMATION_TEXT" In.I_RUECK="1716"
In.I_RMZHL="3" Table.LINES(width:132)="t1"
Thanks,
Suneela.
‎2008 Feb 02 9:10 AM
Hi,
You probably used "Integer" data type to define the ABAP function module parameters I_RUECK and I_RMZHL. Please use character data type instead. GuiXT always works with character fields.
Reward Points if found helpfull..
Cheers,
Chandra Sekhar.
‎2008 Feb 02 6:54 AM
Is it a remote function call.If so You should specify Destination.
Otherwise : your function call has some sytax errors .I think Importing or exporting parameter is missed out.
ie,
call "Z_CHANGE_CONFIRMATION_TEXT"
IMPORTING.
In.I_RUECK="1716"
In.I_RMZHL="3"
Table.LINES(width:132)="t1".
Try to call this function module from pattern.
‎2008 Feb 02 9:10 AM
Hi,
You probably used "Integer" data type to define the ABAP function module parameters I_RUECK and I_RMZHL. Please use character data type instead. GuiXT always works with character fields.
Reward Points if found helpfull..
Cheers,
Chandra Sekhar.