cancel
Showing results for 
Search instead for 
Did you mean: 

Methods for getting data from Export parameters of ZRFC --Rfc Lookup

Former Member
0 Kudos

HI all

I am following the link for RFC lookup

ht[ | ]

For setting the input for import parameters

we can use the method "setValue()"

Like wise for getting data from export parameters of ZRFC what all methods can be used ?

i am importing the package com.sap.mw.jco.*? Are any additional Packages required?

what are the methods for getting the output from the export parameters of the functionmodule?

Thanks

Full Points will Be Awarded

Regards

Bhasker

Accepted Solutions (1)

Accepted Solutions (1)

dharamveer_gaur2
Active Contributor
0 Kudos

hi

use this way of RFC lookup

/people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler

If u are using PI 7.1 then RFC lookup

Former Member
0 Kudos

HI all

I have declared a export parameter list using

JCO.ParameterList output = function.getExportParameterList();

and retreived the index of my export paramter using

i = output.indexOf("EX_SSSSSS");

and got the value at that index by using the following:

output.getValue(i);

and passed it to result.addvalue after converting it to string format

Thanks

Bhasker

Answers (1)

Answers (1)

Former Member
0 Kudos

thanks