Hello everybody,
I got a problem concerning Bapi-calls from WebDynpro.
The problem is:
Deploying the FlightTutorial on J2EE and calling an RFC on same System works good.
Calling an RFC on an other system doesn't work (the FlightTut and also an own application)
What shows that they don't work?
No data is displayed.
Already checked:
- JCOs are Working
- no Exceptions
- no entries in SysLog
Thx for all helpful answers.
Aksel
hi,
after executing the RFC in the exception use this code to see whether you are getting any JCO exceptions? then we can decide as why we are getting that error.
<b>final Writer wr = new StringWriter();
final PrintWriter pw = new PrintWriter(wr);
e.printStackTrace(pw);
wdComponentAPI.getMessageManager().reportSuccess("Error:" + wr.toString());
wdComponentAPI.getMessageManager().reportSuccess("Error:" + e.getMessage());</b>
Regards,
Gopi
Add a comment