Webi/Report : Schedule : Destination configuration

In the Report : Schedule : Destination of Webi, is it possible to disable the "Use the Job Server's defaults" check box in ?

Oh, I am not sure if you can simply change an config file to achieve this. We had to modify the JSP code behing the schedule page to make the tweaks. But I could be wrong and there might be an easier way to do it that I don't know of.
If at all you want to play around with the JSP code, I think you might want to look at the file -
desktoplaunch\InfoView\schedule\destination_include.jsp
Cheers,
Sarang

Similar Messages

  • Schedule webi report to destination to Inbox AND send email notification

    I'm writing a new process that will schedule a webi report.  The output of the report needs to be delivered to multiple user's BO Inboxes AND an email notification (without the report attached) needs to be sent telling them that they have a new report to view in their Inbox.  Trying to mimic how this is done via CMC Schedule - Notification and Destination tabs.
    I can get it to deliver the report to the Inbox and I can get it to send an email seperately, but the problem I'm running into is that I can't get it to do both in the same process.  Here is the code snippet that I've written.  Any assistance would be appreciated.
    // Retrieve the managed plugin
    IInfoObjects managedInfoObjects = infoStore.query("Select SI_DEST_SCHEDULEOPTIONS, SI_PROGID From CI_SYSTEMOBJECTS Where SI_NAME = 'CrystalEnterprise.Managed'");
    IInfoObject infoObject = (IInfoObject)managedInfoObjects.get(0);
    IDestinationPlugin destinationPlugin = (IDestinationPlugin)infoObject;
    IManaged managed = (IManaged)destinationPlugin;
    // Set the destination to inbox
    IManagedOptions managedOptions = (IManagedOptions)managed.getScheduleOptions();
    managedOptions.setDestinationOption(IManagedOptions.CeDestinationOption.ceInbox);
    managedOptions.setSendOption(IManagedOptions.CeManagedSendOption.ceCopy);
    managedOptions.setIncludeInstance(true);
    managedOptions.getDestinations().add(new Integer(ditUserID1));
    managedOptions.getDestinations().add(new Integer(ditUserID2));
    managedOptions.getDestinations().add(new Integer(ditUserID3));
    scheduleInfo.getDestination().setFromPlugin(managed);
    // Retrieve the smtp plugin. to send email notification
    IInfoObjects smtpInfoObjects = infoStore.query("Select SI_DEST_SCHEDULEOPTIONS, SI_PROGID From CI_SYSTEMOBJECTS Where SI_PARENTID = 29 AND SI_NAME = 'CrystalEnterprise.Smtp'");
    IInfoObject smtpInfoObject = (IInfoObject)smtpInfoObjects.get(0);
    IDestinationPlugin smtpDestinationPlugin = (IDestinationPlugin)smtpInfoObject;
    // Set to email notification on success
    ISMTP smtp = (ISMTP)smtpDestinationPlugin;
    ISMTPOptions smtpOptions = (ISMTPOptions)smtp.getScheduleOptions();
    smtpOptions.setServerName("mailhost.XXXXX.net");
    smtpOptions.setPort(25);
    smtpOptions.setDomainName("XXXXX.com");
    smtpOptions.setSenderAddress("XXXXX.com");
    smtpOptions.setSubject("Indicative Data Update Reports");
    smtpOptions.getToAddresses().add("XXXXX.com");
    smtpOptions.setMessage("Test Message");
    smtpOptions.setSMTPAuthenticationType(CeSMTPAuthentication.NONE);
    scheduleInfo.getNotifications().getDestinationsOnFailure().add("New");
    scheduleInfo.getDestination().setFromPlugin(smtp);
    Edited by: Shannon Maret on Apr 21, 2009 7:02 PM

    One thing to keep in mind is that "scheduling to SMTP" is different from "scheduling with email notification", and it looks like you're conflating the two.  The ISchedulingInfo.getDestinations() is the access point for scheduling to SMTP and ISchedulingINfo.getNotifications() is the access point for scheduling with Notification.
    > scheduleInfo.getNotifications().getDestinationsOnFailure().add("New");
    You'd add the SI_PROGID of the SMTP Destination here, and work with the returned IDestination to set the destination parameters.
    Sincerely,
    Ted Ueda

  • Crystal Report Scheduling Destination Options in Infoview

    Hello,
    I need some information on the CR scheduling Destination Options available:
    The 9 options as per my understanding are:
    1. Default Enterprise Location: If you select this option, the instance is saved to the default Business Objects Enterprise location, which is the Output File Repository Server (FRS).
    2. Default Inbox: If you select this option, the instance is saved to the inboxes configured on the job server.
    3. Default File Location: If you select this option, the instance is saved to the unmanaged disk location configured for the job server.
    4. Default FTP Server: If you select this option, the instance is saved to the FTP server configured on the job server.
    5. Default Email Recipients: If you select this option the instance is emailed to the email recipients configured on the job server.
    6. Specific Inbox: If you select this option you can specify whose inboxes you want to save the instance to.
    7. Specific File Location: If you select this option, the instance is saved to the saved to the file location you specify here.
    8. Specific FTP Server: If you select this option, you can specify which FTP server you want to save the instance to.
    9. Specific Email Recipients: If you select this option, you can specify who you want to email the instance to.
    Among the above 9, I have problems with Specific File Location and Specific FTP Server. Can someone please let me know how I can configure my reports to use these two destination.

    Hi
    If the folder is on the local machine following setting should be configured in destination for Unmanaged Disk
    Username:Localmachine hostname\username
    password:password of the username.
    Here the username would have "Full Control" or "Modify" rights over the drive where desired folder resides and that folder.
    If the folder is on the remote machine following settings should be configured in the destination tab.
    Username:DomainName\DomainUsername
    Password:password of DomainUsername.
    DomainUsername should also have "Modify" rights over the drive and the folder.
    Is the desired folder present on the SAN drive?
    Regards,
    Hrishikesh P

  • Crsytal report Scheduling Destination Options in Infoview

    Hello,
    I need some information on the CR scheduling Destination Options available:
    The 9 options as per my understanding are:
    1.      Default Enterprise Location: If you select this option, the instance is saved to the default Business Objects Enterprise location, which is the Output File Repository Server (FRS).
    2.      Default Inbox: If you select this option, the instance is saved to the inboxes configured on the job server.
    3.      Default File Location: If you select this option, the instance is saved to the unmanaged disk location configured for the job server.
    4.      Default FTP Server: If you select this option, the instance is saved to the FTP server configured on the job server.
    5.      Default Email Recipients: If you select this option the instance is emailed to the email recipients configured on the job server.
    6.      Specific Inbox: If you select this option you can specify whose inboxes you want to save the instance to.
    7.      Specific File Location: If you select this option, the instance is saved to the saved to the file location you specify here.
    8.      Specific FTP Server: If you select this option, you can specify which FTP server you want to save the instance to.
    9.      Specific Email Recipients: If you select this option, you can specify who you want to email the instance to.
    In the above 9, I have problems with Specific File Location and Specific FTP Server. Can someone please let me know how I can configure my reports to use these two destination.

    Please post this query to the Business Objects Enterprise Administration forum:
    BI Platform
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all BOE queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Ludek

  • Server Side Trust and Webi Report Scheduling via Portal

    Hello,
    I have opened a similar  thread about Server Side Trust and webintelligence reporting through the portal a few months ago.
    At the time, we had some complaints about users that were getting SSO errors after 8 hours when scheduling WeBi Report through the SAP Portal.
    Basically, the users connect to the Portal and then FROM the Portal, to a BOI view pointing to the Infoview.
    Then, after investigatinon, it was my understanding that the WebI Reports should be scheduled through an Infoview token and not a portal token. In concrete terms Server Side Trust had to be implemented between the SAP BW Backend and the BOE 3.1 Server.
    And after that the users who wanted to schedule WebI reports should connect to the Infoview directly (using their SAP BW credentials) to generate an Infoview Token.
    Scheduling Webi reports from the Portal will not be solved by implementing Server Side Trust, since it is only a matter of time before the  the Portal token expires ( 8 hour by default).
    Now, I have configured the server side Trust between our BOE 3.1 SP2 and our BW 701 system, SNC configuration, PSE generation, exchange of certificats , etc ...
    I did some scheduling tests connecting directly to the BO Infoview and it works.
    But of course, now I am being told by the users that this solution is not acceptable.
    The Portal being the entry point of our Infrastructure, they don't want to connect to the Infoview to schedule their reports.
    So I opened a SAP customer call to try to have an official and clear statement from SAP but I never obtained it.
    I had a look at my SAP BO courses but I am still confused
    For example according to SAP BO100 , server side trust should be implemented when ;
    "BOE client session authenticated using Single sign on using SAP token
    (Enterprise Portal) and SAP reports are being scheduled at a future point in
    time (after token expiry date)."
    Anyone can help me to clear my mind ?
    Thank you
    Best Regards

    Hi,
    first of all lets separate the UI portion from the technical portion.
    on the technical side:
    yes for scheduling the Web Intelligence document you will need Server side trust
    on the UI side:
    - scheduling is part of InfoView
    - scheduling is part of the KM integration with the portal
    if that is not accepted from a UI point of view from the user you can create your own application to schedule documents using the SDK.
    ingo

  • Webi Report scheduling issue

    Dear Experts,
    I have webi reports which are running fine when i refresh the query from query panel. When i am scheduling the report it is failing.
    My webi reports are connected to the Bex Queries using OLAP Connections which is working fine for other reports.
    I am getting the following error message
    "Can not connect to the source olap com.sap.conn.jco.JCoException: (103) JCO_ERROR_LOGON_FAILURE: Access key access is no longer possible"
    Because of this BW Credentials are getting locked and user cannot able to access the BW System.
    Kindly help us getting this issue solved.
    Thanks in advance.
    THanks & Regards,
    Archit Sarwal

    Hi Archit,
    Try this...
    Logon to Central Management Console (CMC) with an Administrator user.
    Click on OLAP Connections.
    Right click on the connection and click User Security.
    Assign Full Control to the User on the connection.

  • Webi Report Scheduling

    Hi All,
    I want to know when we schedule a Webi report, which server is affected (mean Webi Processing server,Adaptives server).
    Please advise..
    Regards,

    Hi Manoj,
    When you Schedule a web Intelligence e Report, Adaptive Job Server will be responsible to do the task.
    If you go to Report History  you can see the Instance Status and you can find out the Job server Used for that particular instance by clicking on the Status.
    Thanks & Best Regards,
    -JS

  • WEBI Report Scheduling based on event.

    Hello All,
    We have a requirement to schedule a webi report based on event generated by ETL loads.
    Scheduling works fine based on events.My requirement is If event is not generated we want to schedule the report at specific time.Lets assume event will generate between 10 Am to 11 Am.If event is not generated report will not schedule,but we want schedule report after 11 Am.
    Please let us know if any one have solution for the above
    Thanks,
    Kumar

    You can schedule your report based on the file event to look for the trigger file till 11 AM. If the file not generated, you can use the below VB Script to generate the file in the desired location by 11 AM.
    Private Sub writeDebug(ByVal x As String)
        Dim path As String = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
        Dim FILE_NAME As String = path & "\mydebug.txt"
        MsgBox(FILE_NAME)
        If System.IO.File.Exists(FILE_NAME) = False Then
            System.IO.File.Create(FILE_NAME).Dispose()
        End If
        Dim objWriter As New System.IO.StreamWriter(FILE_NAME, True)
        objWriter.WriteLine(x)
        objWriter.Close()
    End Sub
    Script does the below operations:
    It will verify if the file already exist for the day.
    If it does not exist, it will overwrite the old file with the new one. If already exist, the script will end.
    Script contains "Debug" function which will be helpful for your analysis.
    Add this program to your scheduler to run everyday at 11 AM.

  • Filter condition for Webi report scheduling

    Hello,
    I have a Webi report with a query that has one filter (it states the starting and ending date of data to be displayed in the report). This report has to be scheduled but it has to contain different filter values each time the report is run.
    I'd like to know if there is a way to schedule this report taking into account that each iteration of the scheduling process has to use different values for the filter.
    On the same way, the Webi report has a XY diagram with a text title made up of a fixed literal label. Is there any way to inject the text title from the scheduling process (in order to avoid editing the report before each scheduling iteration occurs)?
    Thanks a lot!

    Victor,
    one filter (it states the starting and ending date of data to be displayed in the report). This report has to be scheduled but it has to contain different filter values each time
    There are a couple of ways to handle this requirement, depending upon other environmental factors.  Here is one method, but it requires the ability to update/change data at the database using an external tool (anything that permits processing transactional information).
    You can set up an additional table with two columns:  starting_date and ending_date
    Someone updates the additional table as appropriate before the next run will kick off in the schedule.
    The tricky part is in getting your current report to incorporate the other table, and for this you may need to either create a view in your database or a derived table in your universe.  Here is the rudimentary SQL structure that might work for you:
    create table start_end_dates (beginning_date datetime,end_date datetime)
    go
    insert into start_end_dates values ('9/1/2009','9/30/2009')
    go
    create table my_data (col_a char(1),month_id datetime)
    go
    insert into my_data values ('a','9/1/2009')
    insert into my_data values ('a','10/1/2009')
    go
    select *
    from my_data
    where month_id >= (select beginning_date from start_end_dates) and
          month_id <= (select end_date from start_end_dates)
    The start_end_dates table is the one that receives a single input, populated with the starting and ending date of data.  The "my_data" table is an example of how the source table can call in the "parameters" of the "start_end_dates" table to fulfill its quest for filtering (additional filtering on other things within your scenario can also be applied).
    Once you can get the mechanics of the SQL to work for you (either in the universe or a view), then you can set the report up to work hand-in-glove with the above structure.  In the report, you can either have a second data provider that selects on the "start_end_dates" table, storing that data in the report and displaying it somewhere, or you could use the min(month_id) and max(month_id) concepts and display that somewhere too.
    Thanks,
    John

  • Webi Report Schedule failing in BI Launchpad

    Hi,
    I am wondering if anyone has come across this error message when trying to schedule a webi report in BI Launchpad.
    Firstly, the webi report refreshes successfully in BI Launchpad. The source for the Webi report is an OLAP universe that was migrated from a 3.1 environment into BI 4.0.
    The error message occurring when scheduling is:
    'while trying to invoke the method org.eclipse.emf.ecore.EObject.eClass() of an object loaded from local variable 'eObject' '
    I haven't been able to find any documentation on this error message on a failed scheduled.
    If anyone has an idea what might be causing this I would appreciate the help.
    Many thanks,
    Ainsley

    Hi,
    - Does your souce BEx have SAP Variables coming through to the OLAP universe as Filters?
    - Does your WebI document's dataprovider have filters defined as Prompts in the query panel ?
    - or, I wonder if 'local variable' may refer to a report-level variable ? i doubt it. i imaging it's the SAP VAR.
    I know that these 2 types of prompts have been troublesome on occasions with scheduling.
    Please check Note 1602665 - SAP BusinessObjects 4.0 SP02 Patch 2.6 Release Notes
    and refer to the fixed issues .pdf attached
    there are a number 3 / 4 corrections for scheduling webi with prompts ontop of bw
    Regards,
    H

  • Webi report scheduling error

    Hi All,
    When I am refreshing Webi report, getting error:
    Invalid Prompt definition. See your Business Objects administrator. (Error: WIS 00005)
    Please help.
    Regards,

    Hi,
    Please search the Knowledge Base for Articles before posting. www.service.sap.com/xsearch
    You need to look at :
    Note 1404402 - Expanding an WebI LOV prompt, using SAP BW Hierarchy node, fails with errors.  (FixPack2.5)
    Note 1569069 - Invalid prompt definition
    Regards,
    H

  • WebI reports Scheduling using ASG Zena Schedular(third party tool)

    I have 90 Web Intelligence reports developed i need to Schedule them using a third party tool ASG Zena, if any body has any Idea or already done this activity please respond ASAP.
    Thank you in advance.
    Regards,
    Saradhi
    9949293952

    There is no command line interface for scheduling reports, so you're going to have write a program to do the actual scheduling.  I recommend this program up so that you can pass in the report ID or name and the parameters.  That way you can use one program to schedule all reports.  Your scheduling system would then run a .bat file that contains the specific information for the report being scheduled.
    -Dell

  • Cannot connect to the OLAP source - when Scheduling WebI Report

    Hi,
    I am confused by seeing the above mentioned error on random days....
    Scenario - WebI report scheduled daily:
    Some days the report works fine and other days  it is not processing correctly but gives me this error message "Cannot connect to the OLAP source".
    Our connection is via BICS and it is SSO. Data Source is BW and we use BEX.
    Person who scheduled report has admin rights, our version is 4.0 SP7 P5.
    Please advise if anyone has faced this issue and if there is a solution, did try the community but only found that the key store was a problem but that was previous versions.
    Any help or input is much appreciated.
    Kind regards,
    Sarat.

    Hi Sarat,
    This problem can occur for multiple different reasons, so it's hard to give an advice for such symptom. Could you look at trace files from SemanticLayer component (it is hosted in APS with DSLBridge service), you should find clearer errors which can then be analyzed. There is no need to activate logs if it is still at level 'Unspecified', errors have level high enough to be output by default.
    Regards,
    Loic

  • Crystal report scheduling error

    Hello,
       We are getting this error Intermittently, "login error. [CrystalEnterprise.DiskUnmanaged]: [Logon failure: unknown user name or bad password.]" when we schedule crystal report to file location. I had checked the user name and password and access to the file location, they are fine. We have scheduled this report to run daily, but somedays it throws the above error and somedays it runs fine. Any ideas please?
    Thanks,

    Rakesh,
    Issue has been resolved in below forum, please check
    CrystalEnterprise.DiskUnmanaged: Logon failure
    Crystal Report Scheduling Destination Options in Infoview
    Regards,
    Arjun

  • Outputing scheduled Webi reports to a ftp destination in encrypted format

    Is there any way I can write out a webi report to a ftp or SMTP destination in an encrypted format ?
    I can schedule the report and send it to a ftp destination but I don't know if that report can be in an encrypted format ?
    Thanks,

    Hi Rajesh,
    what do you want to encrypt ? The Report as itself or the communication to ysour destination (f.e. sFTP) ?!
    sFTP is not a supported feature...yet. But there is a Workarround on how to use sFTP. Check the Articles of BOE XI R2 here on SDN. You should find the PDF on how to do that. Its compareable to XI 3.x
    If you want to encrypt the Report as itself there is no feature from BO on how to do that.
    There are already some ADAPT cases opend for enhancment of sFTP in further releases.
    Regards
    -Seb.

Maybe you are looking for

  • Duplicate Instances in cube_instances with same root_id , parent_Id

    Environment - We are having a 2 node cluster installation of SOA SUITE 10.1.3.4, MLR- We have a file poller (say ESB_poller) and for each record in the file we call a BPEL Process (say BPEL_parent) which call another BPEL process (say BPEL_child). BP

  • DMS(Document management System) - Help?

    I am John. I am working with DMS and new to this topic! Our situstion is v r shifting our hard copy documents to <b>SAP - DMS</b> and retrieving documents through WEBdocuments(BSP). I have done the things in <b>Tcode-CV01N</b>.I don't know how to pro

  • Background video behaviourattached

    When you put a video using the video tag on stage as a background or even with edgehero background video the video behaves strangely . I will try to explain-. - the video is at the background all right . But If you start 'playing' with your browser w

  • How to find abandoned profiles/numbers?

    Hi we are using CUCM 9.1 and extension mobility. Users are synced to the LDAP Directory. Users are comming and leaving as it is usual in big firms. Now I have got the problem that the users aren´t deleted in LDAP immediatly after they have left the c

  • Exceptions handling

    Hi, I'm developing a WebCenter Portal application, and I can't find any mechanism to handle global Exceptions on the portal application. Any ideas on how to do it? Cheers,