Skip to Content
0
Former Member
Sep 27, 2005 at 02:57 PM

Cannot retrieve any result from an adaptive RFC model

53 Views

Hi Fellas,

I have read plenty of entries regarding my particular problem but somehow I seem to miss something terribly.

I have successfully imported an adaptive RFC model from a SAP 6.2 instance. My WebDynpro has been successfully deployed into my (remote) J2EE WAS 6.40 which runs on a separate host. I have created appropriate JCO connectors in the WebDynpro Content Administrator which refer to the remote SAP 6.2 instance of my WAS 6.40 - and tested them as well.

When the model in my ModelController is executed I get no exception but I do not seem to get any result either. I have already checked the RFC, but its declared as "remote" and does not include any authorization procedures.

My Context Model looks like

Root

...PartnerInput (Model node)

.....Partner

.....Partner_Lesen

...PartnerOutput (Model node)

.....E_Partnerdaten (Model node)

.......Name

.......further Model Attributes

Here is my model execution code.

IWDMessageManager manager = wdComponentAPI.getMessageManager();

try{

wdContext.currentPartnerInputElement().setPartner_Lesen("X");

wdContext.nodePartnerOutput().bind(new Z_Bilanzdaten_Aarloan_Output());

wdContext.nodePartnerOutput().nodeE_Partnerdaten().bind(new Zdalbp01(new Partner()));

wdContext.currentPartnerInputElement().modelObject().execute();

wdContext.nodePartnerOutput().invalidate();

} catch(WDDynamicRFCExecuteException ce) {

manager.reportException(ce.getMessage(), false);

}

So, does anyone know of any meaningful means how to trace down the problem.

Regards

Metin