cancel
Showing results for 
Search instead for 
Did you mean: 

ResultSet Class in XI

Former Member
0 Kudos

Hi,

I need to know in which jar file the ResultList class is available and how to get, I want to know all the methods in ResultList.

I will add value to result list by using result.addValue, but how to remove single value.

Thanks,

RamuV

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Praveen,

Can you provide the jar file

Thanks,

RamuV

former_member181985
Active Contributor
0 Kudos

Hi,

The same jar file can found on your client machine(where you work on IR and ID frameworks) at

C:\Documents and Settings\<USER>\Application Data\Sun\Java\Deployment\javaws\cache\http\D<XIserverName>\P<portno>\DMrep\DMrepository

However the jar file will be prefixed with extra alphatbets "RM". This is only for internal application purposes.

The jar file will be "RMaii_mt_rt.jar".

Since you might not have access to server you better take it from your client PC and rename if required.

Thanks,

Gujjeti

GabrielSagaya
Active Contributor
0 Kudos

Use any of the below options:

1. In your XI server go to Drive:\usr\sap\<SID>\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.services and get the aii_mt_rt.jar and use it.

2. Go to service marketplace and download SAPXITOOL Patch of any version (better 13 open it with winzip u'll find IntegrationServices.sda open this with winzip and get the aii_mt_rt.jar and use it.

0 Kudos

These are the methods available in the class ResultSet

void addValue(String value); Appends a value to the results list

void addContextChange(); Appends a context change to the list. This can also be achieved if you append the constant ResultList.CC by using addValue().

void addSuppress(); Appends the constant ResultList.SUPPRESS to the list. The generation of the target field and its sub nodes is suppressed for such entries.

void clear(); Deletes all previously appended values from the list.

former_member181985
Active Contributor
0 Kudos

Hi

The jar file is "aii_mt_rt.jar".

This will be available at least on two to three paths under XI server directory(usr\sap...)

\usr\sap\<SID>\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository

\usr\sap\<SID>\SYS\global\xi\repository_server\javaws\repository

The same jar file can found on your client machine(where you work on IR and ID frameworks) at

C:\Documents and Settings\<USER>\Application Data\Sun\Java\Deployment\javaws\cache\http\Dsystem\P50000\DMrep\DMrepository

However the jar file will be prefixed with extra alphatbets "RM". This is only for internal application purposes.

The jar file will be "RMaii_mt_rt.jar".

Since you might not have access to server you better take it from your client PC and rename if required.

For your remaining queries you can follow Aamirs link.

Thanks

Gujjeti

Edited by: Praveen Gujjeti on May 12, 2008 9:32 PM

Former Member
0 Kudos