Scheduling a Publication in BI4

Hello
When setting up a Publication, in its Properties there is a section for setting the Recurrence.
However, the Publication does not seem to take note of this property and has to be Scheduled (as per setting up a normal Web Intelligence document) . When going through the Schedule though, it does remember the settings from the Recurrence page of the Publication Properties.
Is this expected behaviour or am I missing something? If it is expected, then why is the Recurrence option in the Publication Properties if it is ignored?
Many Thanks in advance
Cheers
Julian

Can we refer the excellent blogs from Christina with reference to publication to understand the basics and how it works
Introduction into the SAP BusinessObject Intelligence Platform Publication
Creating and Scheduling Publications for Dynamic Recipients on SAP BusinessObjects Enterprise
http://scn.sap.com/community/bi-platform/blog/2013/05/23/understanding-publication-bursting-modes
Regards
Mani

Similar Messages

  • An exception was caught while scheduling the publication. (FBE60203)

    Hi All,
    Iam getting below error when  am using publication to send doc to personal email.
    Please advice me to find out the solution, thanks in adavance...
    Error Message:
    ERROR [PublishingService:HandlerPool-124] BusinessObjects_PublicationAdminLog_Instance_177746 - [Publication ID # 177746] - An exception was caught while scheduling the publication. (FBE60203)
    com.crystaldecisions.sdk.occa.infostore.internal.InfoStoreException: Sorry, you do not have the right to 'Edit objects' (ID: 6) for 'ScopeBatch177754' (ID: 177754). Please contact your administrator if you require this right.
    cause:com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    detail:Sorry, you do not have the right to 'Edit objects' (ID: 6) for 'ScopeBatch177754' (ID: 177754). Please contact your administrator if you require this right.

    Hi,
    This error messgae occurs when the 'Edit Objects' right is missing for the published reports.
    These are the rights required to schedule a publication :
    1. Login to CMC with Enterprise Administrative account
    2. Navigate to Users and Groups >> Top-level security >> All Users
    3. Add the required group/user facing the issue > Advanced > Add/Remove rights > General
    4. Grant View objects and Subscribe to objects
    5. Navigate to the folder where publication is there > User Security
    6. Add/Remove Rights > At General level grant following rights:
    - Schedule on behalf of other users
    - Modify the rights users have to objects
    - Edit objects
    - Copy objects to another folder
    - Schedule document to run
    - Schedule to destinations
    Regards,
    Yosra

  • Schedule book publication in ASCII files

    Hi all,
    Is there any way to schedule the extraction of reports to ascii files, using the book publication tool, or any other?
    I´m trying to extract some reports using this tool. There is no problem using the "publish now" option, and i´m able to save the .txt files in the right route, but i´ll like to program this action, to be executed automatically in a certain date, every month. Is there any possibility?
    Thanks for all,
    Alfonso

    Hi,
    There is an existing functionality inside the Book Publication wizard to schedule a publication, but in fact, you can only generate PDF or HTM files. ASCII generation seems only possible using the "Publish Now" button, and not the "Schedule" button.
    By the way, what is the scenario that forces you to generate ASCII files? Would it be possible for you to maybe use the Scheduling area of the Book publication, meaning that you will only have PDF or HTM files generated?
    Hope this helps.
    Kind Regards,
    Patrick

  • Calling and scheduling existing publication by SDK with promt value

    Hi
    Context
    Calling and scheduling existing publication by SDK with different promt values, included document in publication are Webi.
    Issue
    I can call and shedule publication with different promp values, however some promts are multivalue with various value count. (For example there is value 111 in first case and values 222 and 333 in second case).  Problem is i can fill such a many values how i set in publication by GUI (to understant i can change value but i can;t add/delete another value in one promt).
    Here is some example of my code:
    IProperties oInfoDocumentsProp = publication.getProcessingInfo().properties().getProperties("SIPROCESSINFO_PER_DOC");
    IProperties     oInfoDocumentProp = oInfoDocumentsProp.getProperties("1"..."N");
    IProperties     oWebiPrompts     = oInfoDocumentProp.getProperties("SI_WEBI_PROMPTS");
    IProperties     oWebiPrompt     = oWebiPrompts.getProperties("1"... "N");
    //to get Values collection
    IProperties      oWebiPromptValues     = oWebiPrompt.getProperties("SI_VALUES");
    //to get N value
    IProperty      oWebiPromptValue     = oWebiPromptValues.getProperty(1...N);
    //to set prompt value
    oWebiPromptValue.setValue("something")
    _publication.schedule/save.... .
    for now it is good, however when i do this
    oWebiPromptValues. add(x,x,x) or oWebiPromptValues.removeLocal(n) it do almost nothing when i look into publicaiton by GUI.
    Any idea how to change promt values count ?
    Thanks in advance.

    Hi,
    You can use the following code to add prompt values to a webi report :
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.exception.SDKException" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*" %>
    <%@ page import="com.crystaldecisions.sdk.plugin.CeKind" %>
    <%@ page import="com.businessobjects.sdk.plugin.desktop.webi.*" %>
    <%@ page import="com.crystaldecisions.sdk.properties.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import ="com.businessobjects.rebean.wi.* "%>
    <%@ page import ="com.businessobjects.sdk.ceutils.prompts.* "%>
    <%
    boolean loginSuccessful = false;
    IEnterpriseSession boEnterpriseSession = null;
    String username = "Administrator";
    String password = "";
    String cmsname  = "localhost:6400";
    String authenticationType = "secEnterprise";
    try {
    //Log in.
    boEnterpriseSession = CrystalEnterprise.getSessionMgr().logon( username, password, cmsname, authenticationType);
    if (boEnterpriseSession == null) {
      out.print("<FONT COLOR=RED><B>Unable to login.</B></FONT>");
    } else {
      loginSuccessful = true;
    } catch (SDKException sdkEx) {
    out.print("<FONT COLOR=RED><B>ERROR ENCOUNTERED</B><BR>" + sdkEx + "</FONT>");
    if (loginSuccessful) {
    IInfoObject boInfoObject = null;
    String docname = "New Web Intelligence Document5";
    //Grab the InfoStore from the httpsession
    IInfoStore boInfoStore = (IInfoStore) boEnterpriseSession.getService("", "InfoStore");
    ReportEngines repEngines = (ReportEngines)boEnterpriseSession.getService("ReportEngines");
    ReportEngine widocRepEngine = (ReportEngine)repEngines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
    //Query for the report object in the CMS.  See the Developer Reference guide for more information the query language. 
    String query = "SELECT TOP 1 * " +
           "FROM CI_INFOOBJECTS " +
           "WHERE SI_INSTANCE = 0 And SI_Kind = '" + CeKind.WEBI + "' " +
           "AND SI_NAME='" + docname + "'";
    IInfoObjects boInfoObjects = (IInfoObjects) boInfoStore.query(query);
    if (boInfoObjects.size() > 0) {
      // This will schedule the first WebI document in the collection
      IWebi boWebi = (IWebi) boInfoObjects.get(0);
      int ID = boWebi.getID();
      boWebi.setTitle(boWebi.getTitle() + " - Set Prompt Test");
      DocumentInstance wiDoc = widocRepEngine.openDocument(ID);
      Prompts prompts = wiDoc.getPrompts();
                for(int j =0, m = prompts.getCount();j<m; j++)
                   Prompt prompt = prompts.getItem(j);
                   String name = prompt.getName();
                   String str[] = prompt.getPreviousValues();
                   out.println(name);
                   out.println(str[1]);
                   String [] values = {"US","Holland"};
                   prompt.enterValues(values);
                   String s[] = prompt.getCurrentValues();
                   out.println(s[0]);
                   wiDoc.save();
                   out.println("success prompts");
      PromptsUtil.populateWebiPrompts(prompts,boWebi);
      //Retrieve the ISchedulingInfo Interface for the Report object and set the schedule
      //time (right now) and type (run once)
      ISchedulingInfo boSchedulingInfo = boWebi.getSchedulingInfo();
      boSchedulingInfo.setRightNow(true);
      boSchedulingInfo.setType(CeScheduleType.ONCE);
      boWebi.schedule();
      out.println("WebI document scheduled.");
    } else {
      out.println("WebI document not found!");
    boEnterpriseSession.logoff();
    %>
    Please let me know if you need any more details.
    Regards,
    Shreyans Surana
    Edited by: shreyans_7 on Dec 9, 2011 3:39 PM

  • Can't Personalize a Publication schedule with Dynamic Recipients

    Crystal Reports Server 2008 V1
    I am trying to create a publication that will run a crystal report for each of my customers individually. I created a separate crystal report to pull all the customer object IDs from my database that I want to use in the publication. I am having trouble scheduling the publication to run for all of my dynamic recipients once I have the publication created. I take the following steps to create my publication:
    1.     General Properties: I enter a title
    2.     Source Documents: I add the crystal report that I want run for each one of my customers individually.
    3.     Dynamic Recipients: I select my crystal reports instance which contains a column with each of the customer IDs I want the main report run for. I select the customer ID column as the Recipient Identifier and the customer name column as the Full Name.
    4.     Personalization: I set the CUSTOMER parameter of the report I want run to the Dynamic Recipient Mapping of customer ID from my dynamic recipient report.
    5.     Formats: Set it to Excel
    6.     Destination: a directory on my file system
    7.     Additional Options => Advanced: Report Bursting method is set to One database fetch per recipient.
    8.     I save and close the publication.
    Now I right click the publication I just created and click Schedule. This is where I am confused. In the schedule options there is a section for Parameter but not for Personalization. If I try to run the publication without touching the Parameters section I get this error: Failed to retrieve data from the database. Details: [Database Vendor Code: 936 ] (FBE60502) [33 recipients processed.]
    It says it tried to process 33 recipients (customers) but failed to retrieved data from the database. It failed to retrieve data from the data because I did enter a parameter when I scheduled the report.
    I have also tried scheduling the publications with a parameter entered and it only runs a single report for that single customer I entered in the parameters section.
    How to a schedule my publication to run for each one of my dynamic recipients individually?

    I understand you need that parameter to get the correct data for each recipient. However the parameter should be 'answered' as part of the setup of personalization. You could try to create a simple report with sections using that ID as a section. Match that ID with the CR containing the dynamic recipient IDs and schedule that report. I would expect you get a single report for each ID. The parameter value should be included as part of your dynamic recipients report!.
    Hope this helps...
    Martijn van Foeken
    Focuzz BI Services
    http://www.focuzz.nl
    http://nl.linkedin.com/in/martijnvanfoeken
    http://twitter.com/mfoeken

  • Failure while scheduling publications with CR in BO XI3.1

    We have installed BO XI3.1 on windows server 2003 R2 SP2, with weblogic 9.2 application server and have configure to SSO for windows AD users. While scheduling publications it throws up the following error, however this error is not consistent, it happens once in 3 days.
    2009-05-25 12:03:50,149 INFO  [pool-4-thread-56] BusinessObjects_PublicationAdminLog_Instance_1370298 - [Publication ID # 1370298] - Running publication instance.
    2009-05-25 12:03:50,415 INFO  [pool-4-thread-56] BusinessObjects_PublicationAdminLog_Instance_1370298 - [Publication ID # 1370298] - The global delivery rule for this publication was met; publication processing will now begin.
    2009-05-25 12:03:54,587 ERROR [PublishingService:HandlerPool-118] BusinessObjects_PublicationAdminLog_Instance_1370298 - [Publication ID # 1370298] - Unable to find the infostore service.  Is your CMS running and configured properly? (FBE60002)
    com.crystaldecisions.sdk.exception.SDKException$OCAFramework: Unable to reconnect to the CMS ggnmis01.aircel.co.in:6400. The session has been logged off or has expired. (FWM 01002)
    cause:com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$LogonFailover: Unable to reconnect to the CMS ggnmis01.aircel.co.in:6400. The session has been logged off or has expired. (FWM 01002)
    cause:com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    detail:Unable to reconnect to the CMS ggnmis01.aircel.co.in:6400. The session has been logged off or has expired. (FWM 01002) IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    detail:Unable to reconnect to the CMS ggnmis01.aircel.co.in:6400. The session has been logged off or has expired. (FWM 01002) IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
         at com.crystaldecisions.sdk.exception.SDKException.map(SDKException.java:214)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.<init>(InternalInfoStore.java:146)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStoreFactory.makeOCCA(InternalInfoStoreFactory.java:119)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.<init>(InfoStore.java:84)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStoreFactory.makeOCCA(InfoStoreFactory.java:62)
         at com.businessobjects.publisher.common.SDKHelper.createInfoStore(SDKHelper.java:39)
         at com.businessobjects.publisher.scheduling.SchedulingHelper.scheduleScopeBatch(SchedulingHelper.java:111)
         at com.businessobjects.publisher.processing.ScopeBatchHandler.run(ScopeBatchHandler.java:101)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$LogonFailover: Unable to reconnect to the CMS ggnmis01.aircel.co.in:6400. The session has been logged off or has expired. (FWM 01002)
    cause:com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    detail:Unable to reconnect to the CMS ggnmis01.aircel.co.in:6400. The session has been logged off or has expired. (FWM 01002) IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
         at com.crystaldecisions.enterprise.ocaframework.FailoverLogonService.logonWithToken(FailoverLogonService.java:174)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSession.reconnectCMS(ManagedSession.java:733)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSession.validateServer(ManagedSession.java:720)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSession.validateStatelessService(ManagedSession.java:573)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSession.newService(ManagedSession.java:911)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSession.get(ManagedSession.java:300)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSessions.get(ManagedSessions.java:297)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(ServiceMgr.java:697)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.init(InternalInfoStore.java:1069)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.<init>(InternalInfoStore.java:142)
         ... 9 more
    Caused by: com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
         at com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuseHelper.read(oca_abuseHelper.java:106)
         at com.crystaldecisions.enterprise.ocaframework.idl.OCA.OCAs._LogonEx4Stub.LogonWithTokenEx4(_LogonEx4Stub.java:210)
         at com.crystaldecisions.enterprise.ocaframework.FailoverLogonService.logonWithToken(FailoverLogonService.java:153)
         ... 18 more
    2009-05-25 12:03:54,603 ERROR [PublishingService:HandlerPool-118] BusinessObjects_PublicationAdminLog_Instance_1370298 - [Publication ID # 1370298] - An exception was caught while scheduling the publication. (FBE60203)
    com.businessobjects.publisher.exception.PublishingException$InvalidInfoStore: Unable to retrieve the InfoStore. Is your CMS running and properly configured? (FBE42019)
         at com.businessobjects.publisher.scheduling.SchedulingHelper.scheduleScopeBatch(SchedulingHelper.java:129)
         at com.businessobjects.publisher.processing.ScopeBatchHandler.run(ScopeBatchHandler.java:101)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    2009-05-25 12:03:54,665 INFO  [pool-4-thread-56] BusinessObjects_PublicationAdminLog_Instance_1370298 - [Publication ID # 1370298] - Publication scheduling complete.
    The SIA, all server, including the windows server was re-started, but this error still pops up.

    We are seeing alot of these - using the 'retry' option when scheduling gets the Publication to finish successfully - the log however is full of these messages.
    Did you discover anything further Ranjit?
    Regards,
    Ferdie.

  • Publication, Scheduling and Report Bursting

    Hi,
    what is the main differences  between Publication and Scheduling and Report Bursting.
    Regards,
    G

    Hi,
    When scheduling a WebI report, you instruct the system to let it run for a certain parameter set at a given time. The result is stored in your system and it called instance.
    In a publication you can include more than one reports (several kinds too) and define how and to whom you want to delivered them to. Then you can run/schedule your publication and the content will be delivered as defined at a given point in time.
    How to use publication link.
    http://davidlai101.com/blog/2011/10/27/step-by-step-guide-on-bursting-reports-in-business-objects/

  • Error message FBE60013 when scheduling publication

    In BOXI 3.1 I've a publication including 62 e-mail recipients. When I run this publication as the user who created the publication, the schedules runs successfully and all 62 recipients receive an instance. However, when I run this publication as another user (who is member of the group Administrators), the schedule fails with the following error:
    2009-08-27 09:11:01,173 ERROR [PublishingService:HandlerPool-47] BusinessObjects_PublicationAdminErrorLog_Instance_72800 - [Publication ID # 72800] - Distribution to destination CrystalEnterprise.Smtp (To: xxx) failed. Recipient: bosklo01, Document Scope: 05. Ontbrekende weekstaten : 72844 (Excel) : (AND (IN_LIST Teamnummer "070205" )). (FBE60013)
    As a result, only 30 of the 62 recipients receive their instance.
    Any ideas?
    Many thanks in advance.
    Regards
    Marc

    Hi Marc,
    Any update on this? Were you able to resolve?
    I am having similar issue...trying scheduling the publication to burst to 2 users and it works ok for 1 user but not the other.
    I am getting "Object failed to run due to an error while processing on the Job Server. (FBE60013)" error.
    Thanks.
    Sathish.

  • Change in DB-Logon parameters & scheduling Publication by passing parameter

    Hi Experts,
    We have an requirement of creating an C# application which changes DBLogon parameters of a particular Publication and also pass the parameters to schedule the same for Once.
    I have been able to schedule the same without passing parameters but instance fails as they are mandatory
    Request your help for :
    1. Change in Publication DBLogon parameters.
    2. Schedule the Publication by passing parameters.
    Awaiting your reply
    Regrads,
    Ankeet Pujara

    Hello,
    Would you like to have a look at the samples available at:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETBusinessObjectsEnterpriseSDKSamples
    Does it help?

  • Data Source Missing in Publication

    HI experts,
    I've got a business objects publication which uses 1 crystal report as the source data and 1 crystal report as the dynamic recipients. When run seperately both these crystal reports work fine but when I try to schedule the publication I keep getting the error message 'Unable to connect. Incorrect logon parameters'.
    The source data crystal report uses 2 different data sources and when I look at the database logon parameter within the report I can see them both and they have the correct passwords. When I look at the database logon parameter of the source data within the publication I can only see 1 datasource.
    I'm assuming my problem is something to do with the missing datasource but I don't know how to view it within the publication.
    What am I doing wrong?
    Thanks
    Stuart.

    Hi Mansi and Rathi
    Will creating a new infopackage or replicating hamper anything that is already existing. I am new to BI and actually was asked only to work in queries. I dont want to take a chance, just in case.
    I have 3 infopackages already created for this data source.
    Thanks and Regards
    Madhu

  • Scheduling a web intelligence report with year and month in report name

    How to schedule a webi report so that it's name contains the schedule date in format "Reportname_YYYY_MM".I selected the option Date And Time in Formats and destinations tab under scheduling options but it displays system time as well.I need only in the above mentioned format.Can anybody let me know if thisis possible at all?

    YOu may want to try to create a publication with dynamic recipients and "abuse" the email or user name of your recipient to pass add the date in the desired format in the name of the instance.
    Just use aWebI report as source for the dynamic recipient that displays the current date in the format you want and use this column as the ID of the dynamic recipient.
    Check the publication guide for more information on how to create and schedule a publication (I assume oyu are using BO XI 3.1 SP3)
    http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_publisher_en.pdf
    Regards,
    Stratos

  • Getting multiple error while refreshing or scheduling WebI report

    Hi BO Admin Experts ,
    Feacing  multiple errors  while refreshing or scheduling webi reports in BI4.0 CMC ,
    Please find the below errors :
    1)report schedule status failed
    2)Parameters : xxxcorp-franklinee; ATOu supply unv
    Error Message : An internal error occured while calling 'ProcessDPcmndsEx' API (Error:ERR_WIS_30270)
    3 ) Format : WebI
    Parameters : 10000000000159270
    Error Message :CORBA error while communicating with the SL service
    Could you please help me on the abive 3 issues for the WebI schedule reports
    Cheers ,
    Pradeep Gorpadu

    Hi,
    While refreshing the WEBI Reports would recommend you check the WEBI PROCESSING Server's last changed date from CMC--> Servers.
    Check when you are refreshing the reports, do you see the time stamp changed of WEBI PROCESSING servers?
    Do you keep getting this error messages for all WEBI reports? Can you re-produce this with simple e-fashion reports as well?
    After that go to the node where WEBI PROCESSING servers installed and check on the event viewer details if you see any relevant error messages.
    Regards,
    Upendra

  • How to embed reports in an email using Scheduler

    Hi all,
    I am using the "schedule" option in a webi report to deliver a report through email in pdf format. However, our end users want the report data to be embedded in an email rather than as an attachment. We are using BO XI 3.1. I tried searching in google for more than a day and couldnt get any relevant info. Could someone please let me know if it possible to embed report data in an email ? If so, could you please share your notes.
    thanks
    Joe.

    Hi,
    Scheduling a webi document does not give the option to embed the report in mail body.
    However, this is possible while scheduling a publication. You can create a publication for the webi report and schedule it with format mhtml to email. Please refer to the publication guide for details.
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_publisher_en.pdf
    Regards

  • Error in Publication-Unable to find the infostore service

    Hi,
    I am getting this error when Publication webi report?
    2011-09-06 11:04:49,156 ERROR [PublishingService:HandlerPool-97] BusinessObjects_PublicationAdminErrorLog_Instance_40982 - [Publication ID # 40982] - Unable to find the infostore service. Is your CMS running and configured properly? (FBE60002) 2011-09-06 11:04:49,156 ERROR [PublishingService:HandlerPool-97] BusinessObjects_PublicationAdminErrorLog_Instance_40982 - [Publication ID # 40982] - An exception was caught while scheduling the publication. (FBE60203) [2 recipients processed.]
    requirement is multiple webi reports should be send multiple receipients with restricted data?
    Is it possible to publish multiple reports in Publication??
    Webi report
    XIR3
    backend oracle
    Regards,
    Ravi

    Hi,
    Follow below steps. or check SAP note 1291121.
    Disable all the services in CCM (Central Configuration Manager)
    - Re-enable all the services.
    - RE-boot the system
    Thanks,
    Amit

  • Publications fail intermittently on XI 3.1

    Hello,
    We have publications that fail intermittently with the error:
    An exception was caught while scheduling the publication. (FBE60203) or
    Unable to find the infostore service.  Is your CMS running and configured properly? (FBE60002)
    com.crystaldecisions.sdk.exception.SDKException$OCAFramework: Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002)
    cause:com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$LogonFailover: Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002)
    The publication log also invarably contains Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002).
    The publications are scheduled as follows:
    1. A program object is scheduled to kick off the publication. This program object passes values to the prompts in the publication at run time.
    2. The publications are scheduled as MHTML files to an FTP server.
    3. The publications are based on different tabs in Webi report
    Our environment consists of a full stack on a single server.
    Environment details:
    BO XI 3.1 Premium CPU on RHEL 4 (64 bit) (2.6.9-67.0.15.ELsmp)
    Oracle 64 bit
    Tomcat 5.5
    We schedule a lot of reports using a similar process flow. It is only the publications that fail.
    We have a case open too. I was hoping someone had seen something like this before.
    The entire publication log from the last time one of the publications failed is below:
    2009-01-26 18:45:27,761 INFO  [pool-4-thread-7] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - Running publication instance.
    2009-01-26 18:45:27,805 INFO  [pool-4-thread-7] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - The global delivery rule for this publication was met; publication processing will now begin.
    2009-01-26 18:45:28,015 ERROR [PublishingService:HandlerPool-39] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - An exception was caught while scheduling the publication. (FBE60203)
    com.crystaldecisions.enterprise.ocaframework.IManagedService$ManagedLogoffException: Unable to reconnect to the CMS xxx.ny2.xxx.net:6400. The session has been logged off or has expired. (FWM 01002)
         at com.crystaldecisions.enterprise.ocaframework.ManagedService.invoke(ManagedService.java:604)
         at com.crystaldecisions.sdk.occa.infostore.internal._InfoStoreEx4Proxy.queryEx3(_InfoStoreEx4Proxy.java:364)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.queryHelper(InternalInfoStore.java:708)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.query(InternalInfoStore.java:566)
         at com.crystaldecisions.sdk.occa.infostore.internal.QuerySettings.executeQuery(QuerySettings.java:94)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObject.getParent(InfoObject.java:1377)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObject.getParent(InfoObject.java:1363)
         at com.businessobjects.publisher.processing.AuditDetailHelper.buildPublicationPath(AuditDetailHelper.java:108)
         at com.businessobjects.publisher.processing.AuditDetailHelper.setupAuditDetails(AuditDetailHelper.java:72)
         at com.businessobjects.publisher.scheduling.SchedulingHelper.scheduleScopeBatch(SchedulingHelper.java:304)
         at com.businessobjects.publisher.processing.ScopeBatchHandler.run(ScopeBatchHandler.java:101)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    2009-01-26 18:45:28,028 INFO  [pool-4-thread-7] BusinessObjects_PublicationAdminLog_Instance_126761 - [Publication ID # 126761] - Publication scheduling complete.
    Once a publication fails, the only method to ensure success is to:
    1. Restart the CMS, Publication Job Server and Webi Processing Server
    2. Recreate the publication (remove the source, add it again)
    As an aside, I've had cases open twice before for the same issue. I closed them both because I can't replicate on demand (we were on XI3.0 RTM at that point).
    I'd appreciate any help.
    Thanks.
    Srinivas

    Mike,
    I still have the case open with support on this. While I am (still) unsure as to which session has logged off, support suggested that I do the following:
    Add
    -requesttimeout 3600000 on following servers.
    1.CMS
    2.Webi Processing Server.
    3.Adaptive job Server.
    4.Publication Job server.
    5.Input Server.
    This seems to have done the job, at least for now. I am still testing though.
    If your publication does fail with such an error, restarting the SIA could be a temporary solution.
    Let me know if you need anything else.
    Best,
    Srinivas

Maybe you are looking for

  • Trace in Purchase Order

    I posted a PO with a payment term XY01 "Payment due immediately". After that, the description of the Payment term was changed to XY01 "Terms to be agreed later".  In other words, the PO was not changed in any manner as the Payment terms is same as XY

  • Can hp laserjet cm1415fnw be wireless and lan connected at same time?

    I understand that on the printer settings it only allows you to be either wireless or hard wired to the LAN.  is there possibly a way for both settings to be on simultaneously?  I have a user here that's on an iPad and connects to our network via wir

  • Nokia 5800 does not connect to 3g

    Hello Everybody, I have just switched to 3g services here in chennai,india(BSNL btw) and i am having issues with my 5800 to connect... If i select UMTS, there is no signal for the network,whereas if i select dual mode i get only GSM. I have tested th

  • New to Visual Studio 2008, not new to CR - but have  question

    Hi, I started a position to build reports for a small company.  They use VS 2008 and Crystal 2008 (basic).  I am not new to Crystal Reports, been using it since version 4.0.  But I am new to integrating it into Visual Studio or using it to deploy rep

  • Reading the context of Excel File

    Dear Experts I want to read the content of excel file that is avaliable in my desktop, I want to use file upload UI Element to pick the file. Please help me with sutiable code Regards Noel