Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 8937

Re: Calling RFC from Java Program?

$
0
0

It seems very simple.Try the following and let me know.

 

JCoTable table = function.getExportParameterList().getTable("ELIGIBLE_LIST");

for (int i = 0; i < table.getNumRows(); i++)

{

    table.setRow(i);

    System.out.println(table.getValue(0) + '\t' + table.getValue(1)+..........); // Check & verify how many columns you have in each record and get it displayed accordingly.

}

 

Thanks

MSR


Viewing all articles
Browse latest Browse all 8937

Trending Articles