Hi all,
I have the following piece of code:
String sQuery="SELECT * FROM CI_SYSTEMOBJECTS where si_kind='Event' and si_name='myEvent'" ;
IInfoObjects myReportObjects = myInfoStore.query(sQuery) ;
IInfoObject myObject = (IInfoObject)myReportObjects.get(0) ;
IEvent myEvent = (IEvent)myObject ;
myUserEvent = (IUserEvent)myEvent.getEventInterface() ;
myUserEvent.trigger() ;
and in my naive assumption I’d thought this would be enough to trigger a user event called “myEvent”. To my chagrin, it does not…
Any ideas about what am I doing wrong?
Cheers,
broccoli (BOB member since 2005-03-10)