UBE Interconnect status

Sar

Member
Hi All

Does anyone have idea on how to check the UBE Interconnect status?

My scenario is like this. Webmethods has to launch a JDE Report however webmethods can not launch a report directly.

So We have created a NER to call the custom JDE Report.
This NER is working fine in JDE.

Whenever webmethods call this NER,it doesn't return any parameters as NER has no output parameters.

We thought to add error code as output parm to NER data structure.

The error code should let us know whether called UBE is launched ot not ? How to acheive this ?
we have used SV Error Status, but its nt working.

Suggest me ur ideas.

Regards
Jyo
 
Call the jdeLaunchUBEEx api from a c bsfn, create your ds to store the error and use this bsfn from web methods.

Search trhoug source code for stndard bsfn tht use this api.

You can try to know if batch complete succesfuly using the job number returned from this api.

Regards.

Bruno Condemi
 
What kind of message you want from called UBE ? Does the make sense to add email function at called UBE lke "UBE started" at ER begining and E-mail"UBE finish properly" at end of called UBE. You may even add variable (calculated) at E-mail body.
 
Following this way you need to recode all your report, if your report goes in error state you don't receive the email, if you run ten times the report you need to correlate the start and the finish email, etc..;
building a generci bsfn that call the ube and return the jobnumber and the host is a good solution. In this way you can check the job status and all other info on F986110; and of course you can test the ube submission API errors if occurs.

Regards

Bruno Condemi
 
Back
Top