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

JAVA call SAP RFC pass parameter is failed

JamesG
Participant
0 Likes
1,021

When I call RFC in Java, I need to pass a range table type argument.

  • But when I called, the parameters I passed did not pass successfully.
  • This is me pass parameters
        JCoTable tb_list = function.getTableParameterList().getTable("EBELN");
        tb_list.appendRow();
        tb_list.setValue("SIGN","I");
        tb_list.setValue("OPTION","NE");
        tb_list.setValue("LOW","4500000191");
//        tb_list.setValue("HIGH","");

This is RFC parameters:

  • Can someone tell me what went wrong?
  • Thanks everybody.
2 REPLIES 2
Read only

Sandra_Rossi
Active Contributor
0 Likes
904

How did you make sure that they "did not pass successfully" ? Did you debug at ABAP side ? (or did you ask an abaper to do it ?)

Read only

JamesG
Participant
0 Likes
904

ABAP side is ok.

Because when JAVA calls SAP RFC, the data returned are all of the data.

If the parameter to be passed is successful, the returned data is the filtered data.