Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Remote Function Call

Former Member
0 Likes
1,105

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.

1 ACCEPTED SOLUTION
Read only

Former Member
807

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.

2 REPLIES 2
Read only

Former Member
0 Likes
807

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.

Read only

Former Member
808

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.