Unable to schedule reports in BOBJ infoview to recipient

Dear all Expert,
i have the following error when i try to schedule my report to a recipient and cc to 10 HOD. i currently using a administrator user in BOBJ to do the scheduling.
The error is:
address error. http://CrystalEnterprise.Smtp: [Error sending address(es) to SMTP server. Return code: http://SMTP 554 - Transaction failed..
is the any limitation on recipient? Because when i try to send to 1 recipient and cc to 1 HOD, it works.
Thank You.

This forum is for SDK related questions only, you should be posting this in a forum over [here|/community [original link is broken];

Similar Messages

  • Unable print scheduled report on network printer using BOEXI 3.0

    Hi,
    I'm unable to print a scheduled report on network printer using BOE XI 3.0. I get the following error
    Error Message: Error in File ~ce6a054be1a25b52.rpt: Request cancelled by the user. ]
    Has anyone encountered this kind of problem and know what the solution is?
    Thanks,

    Hey Falk,
    Thanks for the response.
    I can print on a network printer after I changed 'Crystal Reports Job Server' to run under a user account that has privileges to access the printer.
    To answer your questions regarding the problem:
    >Can you schedule the report successfully ?
    >>Yes I was able to schedule the report successfully
    >Can you print the report successfully?
    >>NO the scheduled task would fail with the error message as posted above.
    Thanks,

  • Unable to access reports/content in Infoview

    I have a strange issue in InfoView. It was working normal till yesterday.
    Once I login into InfoView, clicking on "documents list" does not take me any further. Clicking on My favorites does the same. The log out option is no more available once I login. Same issue when clicking on preferences.
    I have no problems accessing content/reports through the rich client and widgets, that part works fine.
    I have tried logging in with Administrator and users with full control. And I have checked the user security on InfoView application in CMC.
    Version of IE is 8.0.7601.17514 and this is happening on both Win 2008 and Win 7....(but it has always been working till yesterday).
    Browser zoom is set to 100% and IE compatability mode is enabled.
    I also tried in firefox but with no luck.
    Any suggestions appreciated.

    Thanks for the response.
    It turned out to be that the InfoViewApp and InfoViewAppAction files in TomCat somehow got corrupted. Once we redeployed them, InfoView starting working normal. So the issue has been resolved.

  • Launch specific BPC Excel Report/Input Schedule or BPF from Infoview

    Hi all,
    We would like to launch either a specific BPC for Excel report and/or input schedule, or link to a specific BPF from BOBJ Infoview (probably a Webi report).
    Therefore is it possible to provide a url to Webi to do this?
    This is BPC NW 7.5
    Many thanks,
    Andy

    Hi you all,
    we are dealing with the same problem in our project. Our customer is implementing BPC and wants the Excel input schedules to be launched from the same place where their current BI (BO) reports are stored. That's InfoView, or actually soon BI Launchpad 4.0.
    Is it anyhow possible to launch a normal BPC Excel input schedule directly from InfoView/BI Launchpad? I tested a bit with OsCLD function with a published Input schedule, and using the link OsCLD returns as Launchpad hyperlink, it's possible to open the .xls file in Launchpad browser window. Of course, none of the BPC's own structures or functions are there so it's just a plain excel sheet, not an really input schedule... so I guess BPC for Excel must be running when opening them and that pretty much is the same as using them directly from the Excel UI. But it's not the solution the customer wants to use.
    Their reason for using Launchpad is that they control user access to their current reporting with the InfoView folder structure and want to use the existing authorization this way for BPC planning too.
    Any suggestions?
    BR,
    Andy

  • Unable to schedule a report to email and print

    I have been working on a task to both print and email a report to recipients whose email addresses are obtained at runtime.  So far I am able to email the report as a PDF attachment, however, I am not able to get the report to print.  I have three thoughts as to why the report is not printing.
    1. The printer is in a subdomain under the domain where InfoView and the Enterprise server reside.
    2. It is not possible to schedule a report for both an SMTP and print destination simultaneously.
    3. The format is causing an issue in printing - the SDK API states "Printer is a report format specific destination and can only be used when the report object is a Crystal Report."
    I have looked at the scheduled report in InfoView and can see that the print settings I am passing are correctly set for the scheduled instance.  Does anyone know if there is a problem with trying to schedule printing and email at the same time, or if the report format must be .rpt?
    Below is my code. Thank you for your time.
    String query = "Select SI_ID, SI_NAME, SI_PROCESSINFO, SI_SCHEDULEINFO, SI_SCHEDULE_STATUS From CI_INFOOBJECTS Where SI_ID=" + reportId;
            IInfoObjects results = null;
            ISchedulingInfo schedulingInfo = null;
            try {       
               results = iStore.query(query);           
            } catch( SDKException sdke ){
               logger.error(sdke);
            if( !results.isEmpty() ){
                // get the actual report object from collection and set scheduling information
                IInfoObject report = (IInfoObject)results.get(0);
                schedulingInfo = report.getSchedulingInfo();
                schedulingInfo.setType(CeScheduleType.ONCE);
                schedulingInfo.setRightNow(true);
                schedulingInfo.setRetriesAllowed(3);           
                try {
                    Set<String> keys = destinations.keySet();
                    Iterator i = keys.iterator();
                    while( i.hasNext() ){
                        String dest = (String) i.next();
                        if(dest.equals(CrystalDestinations.EMAIL)){
                            // get the destination object and set it to SMTP plugin
                            List emailAddress = destinations.get(CrystalDestinations.EMAIL);
                            IDestination destinationObject = schedulingInfo.getDestination();
                            destinationObject.setName("CrystalEnterprise.SMTP");    
                            IDestinationPlugin smtpPlugin = (IDestinationPlugin) iStore.query("SELECT * FROM CI_SYSTEMOBJECTS WHERE SI_PARENTID = 29 AND SI_NAME='CrystalEnterprise.SMTP'").get(0);
                            ISMTPOptions smtpOptions = (ISMTPOptions) smtpPlugin.getScheduleOptions();
                            smtpOptions.setDomainName( emailDomain );
                            smtpOptions.setServerName( smtpHost );
                            smtpOptions.setSMTPUserName( smtpUser );
                            smtpOptions.setSMTPPassword( smtpPass );
                            smtpOptions.setSubject( "Email for report " + report.getTitle() );
                            smtpOptions.setMessage( "This is the message body" );
                            smtpOptions.setSenderAddress( smtpUser + "@cdrh.fda.gov" );
                            smtpOptions.setSMTPAuthenticationType( ISMTPOptions.CeSMTPAuthentication.LOGIN );
                            for(int j = 0; j < emailAddress.size(); j++ ){
                                smtpOptions.getToAddresses().add( emailAddress.get(j) );
                            destinationObject.setFromPlugin( smtpPlugin );                                                                               
    } else if ( dest.equals(CrystalDestinations.PRINT) ){
                            List printers = destinations.get( CrystalDestinations.PRINT );                   
                            IReportPrinterOptions printerOptions = ((IReport)report).getReportPrinterOptions();
                            printerOptions.setCopies(1);
                            printerOptions.setEnabled(false);
                            printerOptions.setPrinterName( (String)printers.get(0) );                   
                            printerOptions.setPageLayout(IReportPrinterOptions.CeReportLayout.USE_SPECIFIED_PRINTER_SETTING);
                    List reportPrompts = ((IReport)report).getReportParameters();
                    for(int j = 0; j < reportPrompts.size(); j++){
                        IReportParameter prompt = (IReportParameter) reportPrompts.get(j);                   
                        if(prompt.getParameterName().equals(mdrParamName)){
                          IReportParameterSingleValue v = prompt.getCurrentValues().addSingleValue();
                          v.setValue(reportParameters.get(mdrParamName));
                        } else if(prompt.getParameterName().equals(addressParamName)){
                            IReportParameterSingleValue v = prompt.getCurrentValues().addSingleValue();
                            v.setValue(reportParameters.get(addressParamName)); 
                    IReportFormatOptions format = ( (IReport) report).getReportFormatOptions();
                    format.setFormat(IReportFormatOptions.CeReportFormat.PDF);
                    iStore.schedule( results );

    Hi Jason,
    Based on your code, I could not tell if you were scheduling a Crystal Report or a WebI document.
    Regardless, what I would suggest is you try scheduling the report/document on InfoView.
    Once you schedule it on InfoView, you can retrieve the instance on Query Builder (or through code) and compare the properties that are being set through InfoView and the one you set through your code.
    This should indicate if you are missing some properies or have set some properties incorrectly.
    Hope this helps.
    Regards,
    Dan

  • Scheduling Report through InfoView - Destination Email

    My question pertains to InfoView in Crystal Report Server 2008.  I am trying to set up a scheduled report to run once, and be emailed as a pdf to my own email address.  I am using the administrator account and can successfully do this through the CMC, but when I try to schedule the report through InfoView, the destination always reverts back to the Inbox destination rather than the email destination.  The job has a successful status, but the destination is always the Inbox.
    I am fairly confident my job servers are set up with the proper SMTP information since I am successful when trying this through the CMC and I am setting everything the same through InfoView. 
    Any ideas?

    Hello,
    This is Crystal Report Server 2008 and I guess Business Objects Enterprise 3.0.  
    When scheduling a report through InfoView I do the following:
    Recurrence - Now
    Format - I choose PDF, although it doesn't really matter for the problem I am having.  
    Destination - I choose email from the dropdown, there is no checkbox to ignore the defaults.  I have to input my own information.  I populate the From, To, and Subject boxes.  I also choose to have an attachment sent.  
    I click the Schedule button and I am taken to the History window.  The job has a status of Running.  I choose refresh and the job completes with a status of Success.  However, when I click the status and the Instance Details are shown, the external destination line reads as Inbox and no email is delivered.  The report is delivered to the InfoView user's inbox, but not in an email as I selected.  
    This process works when performed through the CMC, but not through InfoView.
    Edited by: vtrujillo on Oct 8, 2009 5:13 PM

  • Unable to schedule WebI  reports

    I am running BOE  Version 3.1
    Implemented a cluster of 2 servers.   Am able to schedule reports when I run as Administrator. When I log in as any other user, the scheduled reports go into a pending state.  For testing purposes, the user has been given full control similar to the Administratior. Same resuls though..
    The log file WIReportServer.bin_4414_2009_11_15_14_43_31_484_trace.log has this error:
    SystemHelpers.cpp:540:static bo_utf8string Helpers::Registry::expandUserDocumentDir(bo_utf8string&): TraceLog message 34
    2009/11/16 12:20:36.476|>>|E| | 4414|1175346096| |||||||||||||||in static bo_utf8string Helpers::Registry::expandUserDocumentDir(bo_utf8string&) at SystemHelpers.cpp:540: unable to resolve the USER_PROFILE_APP_DIR variableSystemHelpers.cpp:532:static bo_utf8string Helpers::Registry::expandUserDocumentDir(bo_utf8string&): TraceLog message 35
    2009/11/16 12:22:21.551|>>|E| | 4414|1175346096| |||||||||||||||in static bo_utf8string Helpers::Registry::expandUserDocumentDir(bo_utf8string&) at SystemHelpers.cpp:532: unable to resolve the USER_DOCUMENTS variable
    SystemHelpers.cpp:540:static bo_utf8string Helpers::Registry::expandUserDocumentDir(bo_utf8string&): TraceLog message 36
    2009/11/16 12:22:21.551|>>|E| | 4414|1175346096| |||||||||||||||in static bo_utf8string Helpers::Registry::expandUserDocumentDir(bo_utf8string&) at SystemHelpers.cpp:540: unable to resolve the USER_PROFILE_APP_DIR variable
    Edited by: tekuser on Nov 20, 2009 5:33 PM

    Hi Nicolas,
    When you saved your large report, did you keep the original data in it? If so purging the data will reduce the size of the report template. This may improve performance as I think when you click the schedule button, the template is copied to the cache area - and if your report template is contains the a large amount of data the copy may be slow.
    It is only a guess but I would be interested to know if it makes a difference
    Regards
    Alan

  • Infoview - unable to view report

    Hi
    I'm trying to view a crystal report (XI) through infoview.  The report file is there, but when try to view it through infoview, i receive the following message:
    Unable to retrieve Object.
    Function expected
    I've tried all of the different viewers to no avail and i can't find any help on the help files or on here hence the reason for my question.
    Any help greatly appreciated
    Craig

    Hi,
    To view the folder you have to give the root folder rights too not only on the folder where report is available.
    You can refer the Admin guide for more information.
    If you just want to view the report in infoview then you can add the created user to the Administrator group and then can view the report in Infoview.
    -Noor.

  • Unable to change the background color of a webi report in the infoview

    Hi,
    Can someone please me help me with the below issue.
    Environment Details:
    BusinessObjects XI3.1 SP1SP2SP3                                                                               
    BusinessObjects XIR2 SP5                                                                               
    .Net infoview                                                                               
    IE 7                                                                               
    JRE versions used as;                                                                               
    On BOXI3.1 SP3 Server -1.6.0_03                                                                               
    On BOXIR2 SP5 Server -1.4.2_02                                                                               
    On the client machine   -1.6.0_14      
    Issue Description:
    -Open an existing webi report in the infoview.                                                                               
    -In the report,I am not able to change the background and the font color for the column headings from the properties tab in the left navigation panel.                                                                               
    -I can change the color after hitting the color tab for multiple times.Also the color was getting changed when the color code was manually changed.                                                                               
    -The reports background color was getting changed,but not the font color.                                                                               
    -I tried to create a test report,where I was able to change the color.                                                          
    I have;
    -Installed the Java update 14 on BOXI3.1 server machine,here I was  able to change the background and font color.
    -However on the client machine,with the same Java update 14,the background and the font color for the column headings was not getting changed.
    -Same behaviour is observed on BOE XIR2 SP5 machine.
    Is there any limitations for using Java update 14 or am I required to do any other settings.
    Regards,
    Pankaj

    Hi Pankaj,
    It is a strange behavior. You also stated that when you create a test report it works fine.
    Can you create a copy of this report and then try on the new copy?
    One thing you can do as a test to refresh the universe and then try it. And change some columns - add some column and then save and ten remove and save and make changes like this and trying changing color.
    I think there is a problem with this report this is why it is behaving like this on all machine.
    Regards,
    Bashir Awan

  • SCHEDULED REPORT RUNS FINE BUT UNABLE TO PULL UP THE RESULTS

    Hello all,
    I can create a new report in against Discoverer with no problem. The report can be run as a scheduled report....and the
    results pulled up with no problem.
    EXISTING reports that were converted during our 9i to 10G can be scheduled and run. However, when the user attempts to see
    the results they receive an error message stating:
    The results run for this scheduled workbook can no longer be used because the query has been changed.
    Do you want to query the database for the new results?
    After installing a patch some of the workbooks were able to be retrieved. It seems like there is some commonality in the workbooks that don't seem to work from the scheduled reports. It seems that any workbook that has an admin created calculation in the EUL as one of the selected fields or as a condition of the report, causes a problem.
    If anyone of you came across this situation please guide us.
    Thanks
    Manohar

    Hi Manohar
    By resaving I mean opening the workbook in Plus then clicking the Save button to force Discoverer to save a clean copy. You should then reschedule this and see what happens.
    Here's another trick from way back in the early days of Discoverer that might help. You said that the issue was with an admin created calculation. So, try this:
    Create a brand new calculation in your workbook and load the admin calculation into it. Then change all references for the admin calculation, conditions etc, to point at the new calculation.
    Believe it or not, this trick can sometime force Discoverer to work when it otherwise will not. At any rate, its worth a try don't you think?
    Best wishes
    Michael

  • Issue with SAP Single Sign-On and Scheduling Reports

    Hello --
    We are on XI 3.1 with SAP BW and SSO.  Some users are getting failures with this error message when they schedule a report to run:
    "A database error occured. The database error text is: Unable to connect to SAP BW server System received an expired SSO ticket. (WIS 10901)." 
    It SEEMS as though the users are fine if they schedule the report to run immediately and have it run every hour (or less) after that.  If they schedule it to run several hours from the time they are in the system, however, it looks like they begin getting failures around 8 hours after they were in the system.  This would make sense from looking at the "InfoView and Central Management Console Session Management" document (https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/405547f9-b840-2b10-44b5-8e17ff9e48a9&overridelayout=true) since a logon token expires after 8 hours, but since it is a scheduled report, and the user is not logged in through a browser, how is a token being passed?  Is it captured and included when the report is scheduled?  Would disabling logon tokens fix this issue?  How is authentication handled here if they are disabled? 
    Thanks for any info
    Casey

    Hi Gurus
    I am facing the exact same error.
    However, we are not trying to schedule the WEBI report.
    The user gets this error even when he is running on demand from the portal.
    Here are the various steps tha twe have tried and still it doesnt work:
    1) Refreshed and created new Universe connection
    2) Bounced BOE server
    3) Synced up the SSO timeout ticket to 8 hrs on all systems including BOE
    4) Changed browsers
    5) Removed cache, cookies etc
    Please help.

  • SAP ABAP/BOBJ Infoview initial password change

    Hi all,
    We are using BOBJ Crystal Repors and BI for reporting. All authentication and data security is working great including user/role sync from ABAP stack.
    My problem is as follows - Say I reset the initial password in the ABAP side for a user id. I log into BOBJ Infoview and the new inital password syncs as expected. However.....the infoview does not promt for the user to change the initial password as the ABAP side or portal would. Now the user maintains the initial password the admin set. Again, our portal or ABAP system forces the user to change the initial password but I can't seem to have the infoview do the same.
    Any guidance would be greatly appreciated.
    Thanks!
    SAP BI - Netweaver 2004 S
    BOBJ Enterprise XI 3.1 
    SAP Integration Kit
    Crystal 2008 (12.2.0.29)

    I believe this note pertains to your issue:
    1319430 - SAP Users not prompted to change their passwords    
    Version   1     Validity: 03/18/2009 - active   
    Language   English 
    Edit Show change log 
    Content:    Summary   |   Header Data   |   References   |   Product
    Symptom
    When the SAP system has a new user set to change their password on the initial login and the user attempts to log into Infoview using the SAP integration kit the user is not prompted to change their password.
    Reproducing the Issue
    When SAP system has a new user set to change password on initial login and user attempts to log into Infoview using SAP integration kit the user is not prompted to change password.
    Cause
    This occurs because, as with other 3rd party integration solutions, we do not write to the authentication system but only read the information that is there. Thus we are unable to "CHANGE" an SAP password.
    Resolution
    Have a new user access the SAP GUI or another SAP utility before accessing InfoView for the first time.
    Keywords
    SAP PASSWORD RESET NEW USER

  • BIPlatform WebService to schedule reports

    I am able to successfully submit a request to schedule the crystal report to the BIPlatform Web Service. I have monitored a SOAP request before I submit it to the BIPlatform WS. The SOAP request contains the input values in the <CurrentValues> section under <Parameters> section. I don't see the input values in the SOAP Envelope response sent by the BIPlatform. It doesn't return any exceptions.
    The BO server is unable to schedule the reports because the BIPlatform WS is not supplying the input values that I sent in the soap request. The server shows up 'No Parameters' error when I check the request using the Infoview. Anyone noticed a similar issue?

    The code below schedules CR with parameters' values.
    Have a look at it:
    <%
        String reportName = "simpleParam";
        String servicesURL = session.getAttribute("servicesURL").toString();
        try
            ResponseHolder rh;
            CrystalReport oCrystalReport;
            InfoObjects oInfoObjects;
            //get biPlatform service
            oConnection.setURL(new URL(servicesURL +"biplatform"));
            BIPlatform oPlatform = new BIPlatform(oConnection,oSession.getConnectionState());
            //set the getOptions for retrieval of the Users folder
            GetOptions oGetOptions=new GetOptions();
            oGetOptions.setIncludeSecurity(Boolean.FALSE);
           //get the report
            rh = oPlatform.get("path://InfoObjects/Root Folder/Report Samples/General Business/" + reportName +
                               "@SI_SCHEDULEINFO,SI_PROCESSINFO" ,oGetOptions);
            oInfoObjects = rh.getInfoObjects();
            oCrystalReport = (CrystalReport)oInfoObjects.getInfoObject(0);
            //set name of instance
            oCrystalReport.setName(reportName);
            //create a schedulinginfo object for the report
            SchedulingInfo oSchedulingInfo = new SchedulingInfo();
            oCrystalReport.setSchedulingInfo(oSchedulingInfo);
            //set this line to schedule a report to run immediately with default values
            oCrystalReport.getSchedulingInfo().setRightNow(Boolean.TRUE);
                /*You can set the start and end dates for a recurring instance
                SchedulingInfo oSchedInfo = oCrystalReport.getSchedulingInfo();
                Calendar startDate = new GregorianCalendar(2006,0,24,13,06);
                oSchedInfo.setBeginDate(new GregorianCalendar());
                oSchedInfo.getBeginDate().setTimeInMillis(startDate.getTimeInMillis());
                Calendar endDate = new GregorianCalendar(2006,0,24,13,10);
                oSchedInfo.setEndDate(new GregorianCalendar());
                oSchedInfo.getEndDate().setTimeInMillis(endDate.getTimeInMillis());
             //get the report processing info
             ReportProcessingInfo procInfo = oCrystalReport.getPluginProcessingInterface();
             //get the report parameter
             ReportParameter[] repParams = procInfo.getReportParameters().getParameters();
             //set the report parameter values
             CurrentValues oCurrentValues = new CurrentValues();
             PromptValue[] oPromptValue = new PromptValue[1];
             oPromptValue[0] = new PromptValue();
             oPromptValue[0].setData("Cristian test value");
             oCurrentValues.setCurrentValue(oPromptValue);
             repParams[0].setCurrentValues(oCurrentValues);
             //schedule the report
             oPlatform.schedule(oInfoObjects);
             out.println("Your report has been scheduled.");
       catch(DSWSException ex)
              out.println(ex.getMessage());
              out.println("<BR><BR>" + ex.getCauseMessage());

  • Error while scheduling report for SAP users

    Hi All,
    We have SAP authentication enabled in our BO environment. (BO XI 3.1 sp2 FP 2.6 on windows 2003 server).
    There are some webi reports based on BW Bex queries that we are trying to run on behalf of certain SAP end users. This we are doing using "schedule for" option.
    Now what is happening here is if the end user has logged in once in BO system ,it runs fine. But in case user has not logged in to BO (using infoview etc.) ,it throws error saying "incomplete logon data" . Also if user changes or reset his password in BW and if he doesn't login to infoview after that ,system throws another error "Name or password incorrect (repeat logon)".
    Based on these observation, we are suspecting if BO system uses stored SAP users credentials while scheduling report for them based on their last login.
    Would like to mention here that we have checked option "automatically import users".
    Please advice if this behavior is normal or we are missing some setting.
    Thanks in advance,
    Chandra

    Hi All,
    Any pointers or suggestions for this issue ??
    Is there a setting/option avialable in CMC which could resolve these errors.
    Or, user has to login once to infoview in all circumstances to avoid these errors.
    Thanks,
    Chandra

  • Failed to schedule report in Excel format

    We have successfully scheduled report in PDF format, however, we go the error message "Error in File D:\Business Objects\BusinessObjects Enterprise 11.5\Data\procSched\eagnmnsx2c5.reportjobserver\~tmp2ee063064fe000e.rpt: The request could not be submitted for background processing" if we select excel as schedule format.
    Anyone has any idea why it's happened?
    Thank you very much for your help.

    If you are using BOE Java SDK please refer to the following link for the code:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/JavaBusinessObjectsEnterpriseSDKSamples
    Select Scheduling option to get quick access to the code.
    Also see if you can schedule the report to excel format through CMC or not.
    Regards,
    Anuj

Maybe you are looking for

  • WDTV Live has lost all content, Root Directory no longer showing on PC - HELP

    Hi All, I disconnected my WDTV Live last night from my TV and connected directly to my router with a network cable. When I click on the WDTV under networks in my computer there is nothing there at all! no root folder, none of my files etc. I have tri

  • Blue-ray drive specifications

    My dv6-2110tx notebook has a blu-ray drive "hp BD MLT UJ240"can anyone help with the drive characteristics - info wasn't supplied with PC.

  • BAPI_LEAD_CREATEMULTI  .. Partner issue

    Hello, I am using bapi "bapi_lead_createmulti" to create lead documents from a file. The lead is getting created, however the Partner data is not being filled. Really dont understand what values need to passed..       l_partner-REF_GUID       l_partn

  • Suggest podcast to a friend

    I want to be able to suggest a podcast to a friend (email). This should be a feature on the iTunes store.

  • Can a Thick slab of magnet affect my iPhone 6 plus?

    Hey Guys, I've read a previous post wherein someone had concluded that an iPhone cannot be damaged with a thin magnet. I have an iPhone 6 plus and I happened to keep it next to a thick slab of magnet  (the ones that are attached to cling doors, havin