Scheduling Business Object 5.1.5 reports

Hi all.
I'm trying to schedule BO reports. I found something abount running BO from command line in the user manual but it doesn't run.
If I try to launch "C:\Business Object\BUSOBJ.EXE" -user USER - password PASSWORD -online -nologo C:\REPORT.rep it shows the windows of log in.
Anyway, after this step how could I in automatic refresh data setting a range of dates and export the result in a local path, with a specific name and a specific format, settings (like Not Dos Format) and close the repot saving chages?
Another question: Is possibile to manipulate Business Object with C#?
Thank you.
Edited by: y.chen on Jul 29, 2011 10:16 AM

Is there anyone that can help me? Thank you.

Similar Messages

  • How to enable Business Objects Inbox to receive reports?

    How can I enable Business Objects inbox to receive report?
    I can schedule or send report to a recipient without error, however, if I log into system as the receipient, I could not find the report in the inbox.
    Any solutions?

    Hi Simon,
    The report is not sent because of missing rights on the report or the Inbox.
    You can check this article to get minimum rights required to send to Inbox : 1612499 - What are the minimum rights required to be able to send a report object to another user's inbox on BI Launch Pad?
    I hope this helps.
    Regards,
    Yosra

  • How can we use business object (e.g. crystal report ) in webdynpro abap

    Hi All,
    We all know that business object has been part of sap products.
    But even though in SAP, I really don't know much about business object.
    and how can we use the great function of BO and integrate into our development to make
    user have much better function and user experience.
    Do we have some learning material of BO?
    Could someone share some material here?
    Thanks and Regards
    Aaron.

    One of the main ways that you can integrate some Business Objects content with WDA is via FlashIslands.  If you are on 7.01 or higher, you have the option to use FlashIslands UI element.  There are many tutorials on FlashIslands available on SDN. FlashIslands work well with Xcelsius content, since the output of Xcelsius is a Flex component.  It is pretty easy to set the Xcelsius interface to External Connection and then write a wrapper Flex Component around the generated output, so that it can be used in the FlashIslands interface.
    For Crystal Reports integration you will need NetWeaver 7.02 (comming early next year).  We have integrated Crystal Reports as an output option in the Web Dynpro ABAP ALV and the Classic Dynpro ALV.  You don't need to do any development to enable this.  You can use two different SAP delivered Crystal Reports templates for the ALV output, or create and add your own templates.
    Some of ther BOBJ integration is still in prototype and demo phase within SAP.  For instance we have a data interface to send data to Explorer onDemand from any ABAP application. We have a prototype FlashIsland for WebI to run in place within Web Dynpro ABAP.  Over future enhancement packages you will see increased integration opportunties with the BOBJ capabilites.

  • Business Objects Edge and Crystal reports integration.

    I'm new to the SAP BO application and I would like to know how to allow users to create and publish Crystal Reports via the Business Objects applicaiton.  Currently I have published some reports and the users are able to View then via the InfoViewer Web interface. Now I have a request to allow the users to create their own Crystal reports and publish them. The problem is that the users are not part of my companies network but we have a VPN connection that they user to login to the InfoViewer Web front end to view the reports I have published.

    Hi Ed,
    what for a Database do you mean ? The Repository Database or the Database with your productive Data for Designing the Reports?
    1.
    When they enter their username and password in InfoView the Application Server (Tomcat) does it.
    2.
    Via their ODBC connection. Or when you use Oracle via the native client.
    Regards
    -Seb.

  • Business Objects Enterprise vs Crystal Reports Server for Central Reporting

    A question for all the Architects and Administrators out thereu2026
    I have a vision of centrally managing operational reporting (reporting directly against applications and/or ODS databases).  The main reasons:
    - Management of Security
    - Management of Report Inventory
    - More efficient use of server resources and capacity (clustering/sharable)
    This will be Crystal Reports only.
    Is Business Objects Enterprise a feasible solution for this or is a series of Crystal Reports Servers?
    My understanding is that the server version does not cluster or scale and a series of them operates independently from each other.  Is there a concern of the over-kill or magnitude of Business Objects Enterprise for just Crystal Reports?
    What are everyoneu2019s thoughts?
    Thanks Much
    Ryan Shaw
    Enterprise Architect

    Hi Ryan,
    It really depends what meets your business needs.  If you require to scale and expand your BOE XI environment then BOE is what you'll need.  BOE will allow you to have clustered CMS' and have multiple processing servers that reside on remote servers.
    If your deployment does not require a lot resource and one server can handle the amount of reporting requests and logons,  then CR Server would be the better choice.  You are correct,  CR Server is not scalable and is a single server install only.  You cannot expand or add additional BOE servers on remote servers if you use CR Server.
    Regards,
    Wallie
    Edited by: Wallie Cheng on Aug 23, 2008 12:31 AM
    If you want to centralize this,  a series of CR Servers will not work as each installation will be its entity.

  • CALLING BUSINESS OBJECT FROM AN ABAP REPORT

    Hi friends,
               I have a business object to which a Custom Function Module is assigned in one of its method.This Function Module calls a Bapi to update a Service Order.I need to capture the status of Idocs regarding success or failure from the function Module in the ABAP Report.I would like to know if there is any way to call this business object from my report and get the status of IDOC.
    Regards,
    Dev Reddy

    sorry I think i was not clear in explaining .I am calling a BAPI to update 'Priority' field of service orders in a custom function module(remote enabled) and I have assigned this bapi to a custom business object. Also I have developed an ALE interface thru BDBG transaction which automatically generates custom basic idoc type,messsage type ,Ale i/b and o/b function modules.
    Actually my requirement deals with a report where we have list of service orders in an internal table and pass each service order to update Priority field.
    Is there any way to create an IDOC from the report and update the priority field and pass back the status of IDOC.
    I have tried calling ALE O/B function function module generated thru BDBG transaction in my report but as a result i am unable to get any of the message whether idoc is created or not.
    Here is my report code.
    data: it_methods type table of BAPI_ALM_ORDER_METHOD with header line,
          it_header type table of BAPI_ALM_ORDER_HEADERS_I with header line,
          it_header_up type table of BAPI_ALM_ORDER_HEADERS_UP with header line,
          RECEIVERS TYPE TABLE OF BDI_LOGSYS WITH HEADER LINE.
    T_METHODS-REFNUMBER = '000001'.
    IT_METHODS-OBJECTTYPE = 'HEADER'.
    IT_METHODS-METHOD = 'CHANGE'.
    IT_METHODS-OBJECTKEY = '000004000768'.
    APPEND IT_METHODS.
    CLEAR IT_METHODS.
    IT_METHODS-REFNUMBER = '000000'.
    IT_METHODS-METHOD = 'SAVE'.
    APPEND IT_METHODS.
    IT_HEADER-ORDERID = '000004000768'.
    IT_HEADER-PRIORITY = '2'.
    APPEND IT_HEADER.
    IT_HEADER_UP-ORDERID = '000004000768'.
    IT_HEADER_UP-PRIORITY = 'X'.
    APPEND IT_HEADER_UP.
    CALL FUNCTION 'ZZ_FM_SM_ORD_PRIOR_UPDATE'
    EXPORTING
       OBJ_TYPE                      = 'ZBOSMPRUPD'
       SERIAL_ID                     = '0'
      TABLES
        ITMETHODS                     = IT_METHODS
        ITHEADER                      = IT_HEADER
        ITHEADERUP                    = IT_HEADER_UP
        RECEIVERS                     = RECEIVERS
      COMMUNICATION_DOCUMENTS       =
      APPLICATION_OBJECTS           =
    EXCEPTIONS
       ERROR_CREATING_IDOCS          = 1
       OTHERS                        = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks,
    Dev Reddy

  • How to monitor Print Spool folder in Business Objects XI R2 - Crystal report

    Hi Guru's
    We recently had a issue where disc space was full in BO server and it was down. The reason was there was one job in print spool folder which was eating up whole space in C drive.
    We had to stop the print spool service and delete the jobs and restart it back.
    In order to prevent this from happening what can be done??.
    One way that my client suggested is to write a script where in it will send us the size of print spool folder every hour so we can find the report which is causing this. I have no idea how this can be done.
    This happened once and I dont have an answer when my manager asks will it happen again. Is there a way where we can monitor this or stop this from happening.
    My current environment is
    BOXI R2 , crystal report XI is the reporting tool.
    Thanks.

    Normally you should run your CR reports in the INfoView. You can start a report either by double clicking on it or by selecting View in the context menu. Still in order to fetch data you have to press the Refresh button in the CR viewer window (in the InfoView).
    In the CMC I assume that you are using the Run now option in the context menu. Please note that this will just schedule your report immediatelly. hen the report is scheduled a new instance is created hich is available in the History of the report. In order to see a report in the CMC select again View in the context menu and you can again fetch data by pressing the Refresh button.
    Regards,
    Stratos

  • Business Objects Finance 10.5 Report Formula Stopped Working

    HI
    I have build reports in Report Designer, in the LAYOUT tab I have a simple formula in one Column A to add Column B and Column C
    Column B and C are straight forward extracts from the packages and there are figures in column B and C, lately I have been having this problem that formulas are just not working, it keeps bringing back a 0.  There are no error messages or anything else that I can see that is going on.  On some reports when I delete the columns from the SELECT DATA tab and rebuild it exactly the same way the formula starts working, but I have one report where nothing is working.  I have rebuild it several times and Column A values still comes up as 0.  It is a real simple formula B5+C5, but it is just not working.
    I have had to rebuild several reports and it is taking up a lot of my time, if anyone can please help me with this I would really appreciate it.
    Thanks

    Hi ,
    Do you want to restrict the data at universe level : Rowlevel Restriction
    Follow the below steps:
    - Create a new universe in Designer
    - Save and export the universe to repository
    - From menu go to Tools->Manage Security->Manage Access Restrictions-
    - Manage Access Restriction window opens,Click on NEW-
    - Select Rows Tab and click on ADD
    - Select the table to apply the restriction and also the condition in the Where clause then click OK
    - A new restriction is created
    - Select users or groups which we want to restrict from available list by clicking Add New User or Group
    - Select the newly created restriction and click Apply to the group or user selected then click OK
    - Save the universe and export it to repository
    - Create a new report based on the universe by selecting any one object from the table on which restriction is applied along with other objects and check the SQL whether restriction is applied.
    Hope this helps.
    Regards,
    Deepti Bajpai

  • Difference between Business objects Entprise and crystal report server

    hello,
      I have to develop reports which will be used by a group of 100 to 150 users and total reports are 7 and each report will be around 100-150 pages each. So i am in the process of evaluvation BOE and CR server.Can any body help me out in this.
    Prem
    Trying something new

    Hello Prem,
    The Concurrent Access License is per-user logon to Crystal Report Server or BusinessObjects Enterprise.
    Each User logon will increment the CAL.  If a User logs on twice, then CAL is increased by two.  A CAL will not be released until a User logs off.  If the maximum number of CALs have been attained, further logon attempts will be denied.
    With a Named User License, you can have a number of active Users up to the number of NUL that you've purchased.  The named user can connect multiple times to the system.  If you would like to add additional Users beyond the NUL that you have, you either have to purchase further NUL, or disable a User already there.
    In either case, the CAL or NUL won't work like the CPL that you have with the JRC - license management is handled by the Enterprise system.
    With Licensing for the Server or Enterprise, each user accessing reports must be named within the system.
    Sincerely,
    Ted Ueda

  • Business Objects Scheduler Jobs Monitoring

    Hi,
    Is there a management pack available for integration with System Centre (SCOM) such that we can monitor failed scheduled jobs in Business Objects via SCOM?
    Is there any other way to monitor failed scheduled Business Objects jobs straight from the database or via any other method?
    Thanks,
    Chandan

    Hi Chandran,
    I'm not a SCOM expert but I understand it is basically a monitoring tool.
    Normally you would check for failed schedules in Business Objects using the Instance Manager, to filter for failed scheduled reports. Alternatively you could use the Query Builder to report directly against the XI3.1 Repository and return a list of failed instances.
    Above workflows can also be coded into the SDK to provide customised feedback on schedule failures
    The final option would be to simply set up email Notifications on the schedules to simply email the Administrator in the event of a schedule failure.
    With any of the above options it should be possible to link in your SCOM system to read\monitor from this output.
    I hope this helps.
    Kind regards,
    John

  • Signaling start and stop of a Business Objects report execution

    Hi we are facing the following issues on Business Objects:
    When starting a report we would like to signal to the backend database that the report has stared.
    When finishing a report we would like to signal to the backend database that the report execution has ended.
    Any idears on how this can be hooked into the reports?
    Best regards
    Jacob Mossin Andersen

    What type of report, and what type of signal?  Are you scheduling or on-demand viewing?
    Need more info.
    Sincerely,
    Ted Ueda

  • Business Objects parameters names to configure using JAVA SDK for report generation

    Post Author: christof
    CA Forum: JAVA
    Hello All, I have created a small set of reports which need to be generated from a Java application.The Crystal Reports configuration was relatively easy for the parameters as you have control over their names but is this also the case in Business Objects. For some reports I have created parameters linked to a user prompt. What would the parameters name be that I should use in the Java application.Is this then just the prompt text or should we use e.g. a number e.g parameter 1,.. Kind Regards,

    Post Author: Ted Ueda
    CA Forum: JAVA
    Hello Christof,If you're referring to the Crystal Report parameters via code, then you would refer to them by their parameter name, and not their prompt string.I note that, with BusinessObjects (now called Desktop Intelligence), prompts were referred to by their prompt string.Sincerely,Ted Ueda

  • Business Objects Reports and Web Services for Dashboards

    Hello!
    I am writing a Business Object report against my Universe.  I save the report to the CMS and then right click on the report block and click "Publish as a Web Service...".  This opens up that diaglog and I am able to publish the web service.  I then can import the web service into Dashboards 4.1 (Xcelsius) and am working working to figure it out further at this point.
    My question is this:  When I go back to the report in Business Objects, and modify the report, I would like to republish the web service.  I click on Design and rework the report.  Run the report.  Save the report.  I right click on the report block and I don't see the "Publish as a Web Service..." choice.
    What am I doing wrong?
    Business Objects 4.1...
    Thank you.

    Hi Susan,
    Go to the web service publisher, expand the web service, select the block and select edit.
    Select the content and prompt and select Update.
    Regards,
    Abhilasha

  • Crystal Reports to Business Objects

    Hi Gurus,
    Please help me out with your valuable suggestions. Here is my scenario,
    Very recently my client implemented Business Objects for their Corporate reporting in place of Crystal Enterprise.
    There are about 400+ reports that to be converted in Business Objects. In the phase 1 we planned to convert the High priory reports of about 80 + reports.
    Our game plan is to convert CR to Universes and then after using Universes >>>webi reports. Please suggest me whether we are going in the right path.
    After analyzing the reports I found like we are using about 65-80 tables over all. Please suggest me, Can I create a single Universe and point the 70 reports to that single Universe or do I need to create a single universe for single crystal report.
    Moreover, we are upgrading my back end too. But in future some of the tables, fields may exist or not. As the Back-end is also in the initial phases. So please suggest how to convert the CR to Universe with back-end modification.
    As having discussion with client. User have no experience in creating any sort of reporting, All they need is exact the same report in Business Objects.
    Please post me your valuable suggestion.

    Hello,
    Here a are few tips:
    - How many different data sources are used?
    A Business Objects universe can only point at one data source (there are some workarounds for this). Therefore it's quite important to know how many different data sources are involved.
    - Complexity of reports
    When developing complex reports in webi you'll find that you can't always meet the requirements by using standard webi functionality.
    In that case you will have to move some of the more complex calculations to the universe. Therefore it's not uncommon for a very complex report to have one universe but in most case a universe will serve multiple webi reports.
    - Ad-hoc reporting.
    From reading your post I donu2019t think this is very relevant to you but I mention it anyway.
    If users want to use the universe for ad-hoc reporting, always make sure that you give proper business descriptions to the dimension and measure objects.
    Also, it's important that you don't try to stuff everything into one universe as this will confuse the business users. Try to divide the universes into the logical business areas i.e. finance, HR, Purchasing etc.
    - Training / Involve the Business
    Have you considered training a few web intelligence super users that can help converting some webi reports?
    If you involve the Business users at an early stage of the project, the reaction to the change of reporting system will be a lot more positive.
    - Make the reports more intuitive
    Instead of simply re-developing all the reports in exactly the same way as they were developed in Crystal look for ways to enhance the usability.
    Business Objects has many great features that could help with this i.e. input controls, data tracking, profiles, dynamic recipients etc).
    Also, you will find a lot of duplication i.e. multiple version of the same report with different prompts. You should possibly try to consolidate those reports.
    Best regards
    Rim Geurts
    EDIT: Like Fritz mentioned, you probably don't need to migrate all of the reports because you can simply migrate you Crytsal report to te new BO environment
    Edited by: Rim Geurts on Aug 16, 2010 3:08 PM

  • Possible to report on QC using Business Objects?

    Hello Geeks,
    Please excuse me if I am posting this in wrong thread and help me moving it in right one.
    As I am new to Sol Man, I heard that we could use  Business Objects reporting on/for/with HPQC.
    After going through forum links and sdn search, I found that Sol Man Adapter is used for the same.
    My simple question, is, can we use HPQC for BO reporting (Universe, Webi), if yes is Sol Man the adapter which could help me to achiecve it? Also do we have any white paper, which will help me to use Business Objects as a QC reporting tool?
    Thanks
    P

    You need someone who is very comfortable with the QC database Schema.
    You will need someone who can develop reports for you on the fly. The BO piece can connect directly to the QC database just like a reporting tool like SSRS does and you can build reports and host them on MOSS or something.
    That is what I have done in the past and recommend it at places as a best practice.
    Knowing the QC schema inside out is the key piece and you do not need any adapter in this whatsoever.

Maybe you are looking for

  • Safari 3.1.1 is very slow.

    Not sure if this is the best place to post this problem. If not, would appreciate advice on where to go. My problem -- I downloaded the new 3.1.1 Safari the day it came out and every since, it's been like having dial up. Loading pages, doing anything

  • Images won't display in Review mode

    When I send a draft of a page for review, several of the images (jpegs and gifs) will not display. Do the images need to be formatted in a certain way?

  • Can't Create Event

    I'm a system administrator at a school. Currently I'm in the process of testing iMovie 08, as we've purchased the 3 year maintenance plan. When trying to import from a DV deck I'm given the error Can't Create Event The import was canceled. You may no

  • Downloaded song problem

    I downloaded a track from ITunes on my IPhone and it was listed in the Purchased playlist. I synced with my Mac and no problems there either. The only issue is that the song is listed twice in my Purchased playlist and is stuck at the bottom of the l

  • HT4623 how to sunchronize outlook contacts

    Hi , I have been trying to update contacts by syncronizing my i phone with Microsoft Outlook in my laptop ,dirst time when i connected my iphone with my laptop and opened itunes it did transfer open up an option of email account and contact sync but