Quantcast
Channel: SCN : Unanswered Discussions - BI Platform
Viewing all articles
Browse latest Browse all 5661

IPublication.getDocuments() etc. Empty

$
0
0

BI Platform 4.1 SP4 Java SDK

 

I'm working on a program to document publications.  My initial CMS query is this:

 

Select * from CI_INFOOBJECTS where SI_KIND = 'Publication'

 

So I should be getting all of the information about each publication.  However, when I call getDocuments(), getSchedulableDocuments(), or getStaticDocument() the collections are empty.  Here's my code :

 

-------------------------------------------------------------------------------------------------------------

  public PublicationInfo (IInfoObject o, QueryHelper qh, Logger log) throws SDKException{

      super(o, qh, log, false, false);

      IPublication pub = (IPublication) o;

      int i = (int) pub.getBurstingMode();  //this is a long value, but only contains 0, 1, or 2;

      burstMode = translateBurstMode(i);

      i = pub.getDeliveryRuleOptions();

      deliveryRuleOpt = translateDeliveryRuleOption(i);

      i = pub.getProfileResolutionType();

      profResolutionType = translateProfileResolutionType(i);

      serverName = pub.getPublicationServerName();

      scopeBatchSize = pub.getScopeBatchSize();

      rerunAllDynRecipients = (pub.isDynamicRecipientsReRunAll() ? "Y" : "N");

      deliverIfAlert = (pub.isGlobalDeliverIfAlertIsTrue() ? "Y" : "N");

      pdfMerge = (pub.isPdfMergeSupported() ? "Y" : "N");

      showForNullProfile = (pub.isShowAllDataForNullProfileValues() ? "Y" : "N");

      for(Object obj : pub.getProfiles()){

          Integer id = (Integer) obj;

          profiles.put(id, new ObjectInfo(id, qh));

      }

     

      Collection<Object> rpts = pub.getSchedulableDocuments(); 

      for (Object obj : rpts){

          int rptId = ((IInfoObject) obj).getID();

          //unfortunately, this IInfoObject doesn't have everything we need, so we need to get one that does.

          IInfoObject rpt = qh.getObjectByID(rptId);

          schedDocs.put(rptId, new PublicationReport(pub, rpt, qh, log));

      }

     

      rpts = pub.getStaticDocuments();

      for (Object obj : rpts){

          int rptId = ((IInfoObject) obj).getID();

          //unfortunately, this IInfoObject doesn't have everything we need, so we need to get one that does.

          IInfoObject rpt = qh.getObjectByID(rptId);

          staticDocs.put(rpt.getID(), new PublicationReport(pub, rpt, qh, log));

      }

     

      rpts = pub.getDocuments();

      for (Object obj : rpts){

          Integer rptId = (Integer) obj;

          if (!schedDocs.containsKey(rptId) && !staticDocs.containsKey(rptId)){  //for some reason the report wasn't in the schedulable or static docs

              IInfoObject rpt = qh.getObjectByID(rptId);

              schedDocs.put(rptId, new PublicationReport(pub, rpt, qh, log));

          }

      }

}

-------------------------------------------------------------------------------------------------------------------------

 

All of this seems to be working except the parts that look at the documents.  They only seem to work for Webi reports, and then not always.  I'm working in our Test system, so I have created a bunch of different types of publications from combinations of - Crystal, Webi, burst based on Profiles, burst based on Crystal report, burst based on Webi report, single report, multiple reports - the only one that I'm able to get the document data for has multiple Webi reports and is burst based on a Webi report.

 

What do I need to do to get this information??

 

Thanks!

 

-Dell


Viewing all articles
Browse latest Browse all 5661

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>