Business Objects File Polling?

Hi all, is it possible to poll for an excel file and upload it to Business Objects on a regular basis?  I'm looking for a way to share an excel spreadsheet with the users, which is being updated every 15 minutes, so I wondered whether I could set up some sort of polling to upload it to BO XI.
All help greatly appreciated.

Hi Susannah 
I don't think it's possible to auto-upload excel files to infoview.
Maybe the following method works for you:
Create a version of the excel spreadsheet that is linked to the spreadsheet that always is updated every 15 mins.
Every time someone opens the excel spreadsheet in infoview, all the links will be automatically updated.
Regards
Rim

Similar Messages

  • Business Objects Customization Using Class file without net bean

    Hi,
    Any one please help me out.
    my requirement is like I want to use Business Objects SDK
    <%@ page import="com.crystaldecisions.sdk.framework.CrystalEnterprise" %>
    above is example..
    in Class file of Java without using netbean.
    I try to do this with creating Batch file add all Jar file and set path and but its not working.
    Also can I Login Into business Objects through class file not using netbean(means from command prompt)
    and create user group into CMS.

    Please find following servlet code who dont understand my requirement.
    * GroupCreation.java
    * Created on September 2, 2008, 3:47 PM
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import com.crystaldecisions.enterprise.ocaframework.ServiceNames;
    import com.crystaldecisions.sdk.exception.SDKException;
    import com.crystaldecisions.sdk.framework.CrystalEnterprise;
    import com.crystaldecisions.sdk.framework.IEnterpriseSession;
    import com.crystaldecisions.sdk.framework.ISessionMgr;
    import com.crystaldecisions.sdk.occa.infostore.IInfoStore;
    import com.crystaldecisions.sdk.occa.managedreports.*;
    import com.crystaldecisions.sdk.occa.security.ILogonTokenMgr;
    import javax.servlet.http.Cookie;
    import com.crystaldecisions.sdk.occa.infostore.*;
    import com.crystaldecisions.sdk.occa.pluginmgr.*;
    import com.crystaldecisions.sdk.plugin.CeProgID;
    import com.crystaldecisions.sdk.plugin.desktop.user.*;
    import com.crystaldecisions.sdk.properties.*;
    import javax.servlet.http.HttpSession;
    * @author prashant.joshi
    * @version
    public class GroupCreation extends HttpServlet
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    HttpSession session = request.getSession(true);
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    String cms = request.getParameter("CMS");
    String username = request.getParameter("UserID");
    String password = request.getParameter("Password");
    String auth = request.getParameter("Aut");
    IEnterpriseSession enterpriseSession = null;
    try
    ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
    catch(SDKException e)
    out.println(e.getMessage());
    Exception failure = null;
    boolean loggedIn = true;
         // If no session already exists, logon using the specified parameters.
    if (enterpriseSession == null)
    try
    // Attempt logon. Create an Enterprise session
    // manager object.
    ISessionMgr sm = CrystalEnterprise.getSessionMgr();
    // Log on to BusinessObjects Enterprise
    enterpriseSession = sm.logon(username, password, cms, auth);
    catch (Exception error)
    loggedIn = false;
    failure = error;
    if (!loggedIn)
    // If the login failed, redirect the user to the start page.
    out.println("<SCRIPT language=\"javascript\"> " +
    " alert (\"Sorry - you could not be logged on to this server." +
    " Ensure that your user name and password, as well as the CMS name are correct." +
    "\"); </SCRIPT>");
    out.println("<META HTTP-EQUIV='refresh' CONTENT='0;URL=LogonPage.jsp'>");
    return;
    else
    try
    // Store the IEnterpriseSession object in the session.
    session.setAttribute("EnterpriseSession", enterpriseSession);
    // Create the IInfoStore object.
    IInfoStore iStore = (IInfoStore) enterpriseSession.getService("InfoStore",
    ServiceNames.OCA_I_IINFO_STORE);
    // Store the IInfoStore object in the session using the
    // helper functions.
    session.setAttribute("InfoStore", iStore);
    // Create the IReportSourceFactory object.
    IReportSourceFactory reportSourceFactory = (IReportSourceFactory) enterpriseSession.getService("PSReportFactory");
    // Store the IReportSourceFactory object in the session
    // using the helper functions.
    session.setAttribute("ReportSourceFactory", reportSourceFactory);
    // Retrieve the logon token manager.
    ILogonTokenMgr logonTokenMgr = enterpriseSession.getLogonTokenMgr();
    // Retrieve a logon token and store it in the user's cookie
    // file for use later.
    Cookie cookie = new Cookie("LogonToken", logonTokenMgr.createLogonToken("", 60, 100));
    response.addCookie(cookie);
    // LOCUse the plugin manager and the UserGroup plugin to create a new
    // UserGroup object._ENDLOC_
    // LOCIf the infoStore object is not found then display an error message._ENDLOC_
    IInfoStore infoStore = (IInfoStore) session.getAttribute("InfoStore");
    // LOCIf the infoStore object is not found then display an error message._ENDLOC_
    if (infoStore == null)
    throw new Error("_LOC_InfoStore object not found. Please logon again._ENDLOC_");
    IPluginMgr pluginMgr = infoStore.getPluginMgr();
    //IPluginMgr pluginMgr2 = infoStore.getPluginMgr();
    IPluginInfo userGroupPlugin = pluginMgr.getPluginInfo("CrystalEnterprise.UserGroup");
    // IPluginInfo userGroupPlugin2 = pluginMgr.getPluginInfo("CrystalEnterprise.UserGroup");
    // LOCCreate a new InfoObjects collection._ENDLOC_
    IInfoObjects newInfoObjects1 = infoStore.newInfoObjectCollection();
    IInfoObjects newInfoObjects2 = infoStore.newInfoObjectCollection();
    // LOCAdd the UserGroup interface to the new InfoObjects collection._ENDLOC_
    newInfoObjects1.add(userGroupPlugin);
    newInfoObjects2.add(userGroupPlugin);
    // LOCGet the new UserGroup object from the collection._ENDLOC_
    IInfoObject iObject1 = (IInfoObject) newInfoObjects1.get(0);
    IInfoObject iObject2 = (IInfoObject) newInfoObjects2.get(0);
    // LOCOnce you have the new UserGroup object, set its properties._ENDLOC_
    iObject1.setTitle ("Single Home Group");
    iObject1.setDescription ("It is Single Home Group");
    iObject2.setTitle ("Multi home Group");
    iObject2.setDescription ("It is multi Home Group");
    // LOCRetrieve the ID of the InfoObject (user group)._ENDLOC_
    // objectID = iObject.getID();
    // LOCSave the new group to the CMS._ENDLOC_
    infoStore.commit (newInfoObjects1);
    infoStore.commit (newInfoObjects2);
    catch(Exception ex)
    // If the User group is already created.
    out.println("<SCRIPT language=\"javascript\"> " +
    " alert (\"Sorry - The User Group is already created Please enter another User Group." +
    "\");</SCRIPT>");
    out.println("<META HTTP-EQUIV='refresh' CONTENT='0;URL=LogonPage.jsp'>");
    return;
    // If the User is Logged on the Business objects
    out.println("<SCRIPT language=\"javascript\"> " +
    " alert (\"UserGroup get created in CMS.\"); </SCRIPT>");
    out.println("<META HTTP-EQUIV='refresh' CONTENT='0;URL=LogOff.jsp'>");
    out.close();
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    when I paste above code in simple notepad as class file and run this file from command prompt
    it gives error like following 1 example I getting 46 errors for different Business Objects classes
    symbol : variable CrystalEnterprise
    location: class GroupCreation
    ISessionMgr sm = CrystalEnterprise.getSessionMgr();
    Please help me Out.
    Thank you.

  • TMP files created inside business objects installation folder

    Hi All,
          I noticed TMP files are being inside of business objects folder and it is taking up entire disk space.What is causing this and what can be done to avoid this?
    Thanks.

    there was a service market place note that says do NOT delete this data.
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smp_custmsg/note_index.htm?note_number=0001706286&sap-language=E&p_sid=MjAxMzA0MDMyMzIzMDFTMDAwNTIzODIxMg==&row_num=1&base_url=https%3A//websmp102.sap-ag.de&hashkey=CAEE362677E88779458C84404B570576

  • Options to create BIAR file in Business objects 4.1

    What are the options to create .biar file in 4.1. Business objects used to have Import Wizard in 3.1, now its being eliminated. Any alternatives now?

    Hi,
    You can create a .BIAR file on BI 4.1, i do it all the time, using .bat and .properties files.
    .bat file :
    %DRIVELETTER%
    cd "%BOPATH%\win32_x86\jre\bin"
    java -jar "%BOPATH%\java\lib\biarengine.jar" "%BACKUPPATH%\Sauvegardes.properties"
    .properties file for juste save public file and dependencies (for exemple) :
    exportBiarLocation=%BACKUPPATH%/Sauvegardes.biar
    action=exportXML
    userName=Administrator
    password=XXXXXXXXXXXX
    CMS=localhost:6400
    authentication=secEnterprise
    exportDependencies=true
    exportQuery=select * from ci_infoobjects where SI_ancestor = 23
    exportQueriesTotal=1
    But you can used other query, and more than 1.
    Hope it help you.
    regards
    Mickaël

  • Which business objects do allow searching the associated file attachments?

    Hello search experts,
    SAP Note 1249465 - TREX 7.1: Installing TREX for Embedded Search states:
    "Embedded search enables every SAP Business Suite application to search in a unified way inside its business objects (structured data) and associated file attachments (unstructured data)."
    Is there a list of business objects where the search in the associated file attachments is supported? I'm specially interested in the SAP CRM business objects. But a list for SAP ERP and the other Business Suite components would be nice too.
    Best regards
    Gregor

    Hi Ritwik,
    for the Cycle 3 of Customer Connection for SAP CRM that was started last year this idea was submitted:
    Integrate documents (attachments) into CRM embedded search
    https://cw.sdn.sap.com/cw/ideas/10637
    unfortunately this topic spans cross multiple software components. The development was started but got stuck. In the moment the status of this request is "Handed over - Already in development planning (Handed over to Product / CEI topic owner)". So let's hope we will see a standard solution sooner or later.
    Best regards
    Gregor

  • Business Objects 5.1 Standard File/Insert/Tools/etc. menu not displayed

    Post Author: wbartlett
    CA Forum: Older Products
    I'm a bit confused. As a user, I don't seem to see the Business Objects 5.1 Standard File/Insert/Tools/etc. menu when I sign on to B/O Reporter. The menu was appearing, but now it's gone!
    Any ideas?
    Thanks, bb
    This was resolved by Hari Prasad <@AMA"&gt;[email protected]>@AMA
    by replacing the REGEDIT entries

    Post Author: C.Sides
    CA Forum: Older Products
    The menu is accessable by using the <alt> shortcut keys (<alt>F brings up the File dropdown menu).  I was able to get the tool bars back by <alt>V - Toolbars but the menu is still not visible.

  • Business Object export file is UTF-8 Code

    recently, we updated our business objects and found all the reports export from business objects will have 3 extra characters in the front of the first row in the Csv file, however our client's Linux system does not recognize these 3 code (EF BB BF), does any one know how to export file from business object change to regular code like ANSI code?

    Hello Cleo,
    I'm assuming you're using Desktop Intelligence documents - (BusinessObjects Full Client), and that this happens with CSV and text exports.
    Would this be correct?
    If so, I can move this over to the Desktop Intelligence forum.
    Sincerely,
    Ted Ueda

  • Saving business objects into xml file

    I have the following XML file parsed into a DOM tree, with 2 different types of nodes "TestCase" and
    "RealCase". Then I mapped each type to a different type of business object, TestCaseObj and RealCaseObj.
    Now, there may be addition of new objects, or modifications to the data stored in the business objects
    by my application. Eventually when I save the business objects back into the XML file, how should I go
    about doing that?
    <ROOT>
    <TestCase TestID="T1">
         <Element1>Data1</Element1>
         <Element2>Data2</Element2>
    </TestCase>
    <TestCase TestID="T2">
         <Element1>Data1</Element1>
         <Element2>Data2</Element2>
    </TestCase>
    <RealCase ID="R1">
         <Element1>Data1</Element1>
         <Element2>Data2</Element2>
         <Element3>Data3</Element3>
    </RealCase>
    <RealCase ID="R2">
         <Element1>Data1</Element1>
         <Element2>Data2</Element2>
         <Element3>Data3</Element3>
    </RealCase>
    </ROOT>

    The DocumentBuilder class does not allow you to parse a portion of the xmlfile. Therefore, it will not be possible to read "TestCase" into the DOM without bringing in "RealCase" nodes as well. As such, these codes will parse the entire xml file into DOM:
    DocumentBuilder builder = builderFactory.newDocumentBuilder();
    Document document = builder.parse( xmlFile );
    However, your problem can be solved by reading only "TestCase" nodes in DOM, as follows:
    NodeList elementNodeList =
    elementNode.getElementsByTagName("TestCase");
    Your codes will then change the data in the elementNodeList, without affecting "RealCase" although it is loaded into DOM. You can be sure that elementNodeList contains only "TestCase" nodes.
    Once you have made your changes, save the DOM back to the XML file, using the serializer method as discussed earlier.
    Good luck.

  • Attach a xml file to Business object type BUS2081

    Hi All,
    How to attach a xml file stored on application server to business object 2081(transcation MIR4)?
    Thanks,
    Namrata.

    Hi,
    provided link is helpful.
    But I am looking for attaching a file from application server to BUS2081.
    Thanks,
    Namrata.

  • How to transfer data between spreadsheets without using Business Objects?

    Hello, every time I try and log onto the business objects platform I keep getting "this system can be contacted but there is no central management server running at port 6400".  All I need to do is pass variables between spreadsheets. Both files are located in the same folder. Below are the links ive tried but have been unsuccessful  to pass data.
    (This link I used the swf loader component child and flash variables task Daya posted on Feb 15. However nothing loaded. The link wasnt a link i could display is in a browser. So i kept getting 0% when in preview mode.
    Passing values from dashboard to dashboard with Flash Variables
    Next I tried the following link. I did everything word for word and was able to display both files on the html page, but no link or connection between them existed. I would select a state and noting happened to the other swf files chart. Does this need to be in the Business Objects platform?
    Dashboards 4.0: Connect to an external
    Lastly , I used the link below. I followed everything and was able to get interaction from the parent to child however with only the files that were available on this thread. Their URL was this http://myxcelsius.com/wp-content/uploads/2010/10/child.swf?salesman=Schrute,Dwight. I get the concatenation but I dont get how this URL was generated? How do I develop my URL? My URL is able to display in a browser. My URL is
    http://kln-ftvp/KLNPheonix//LinkToReport.htm?fqn=MyEnterprise.Public.graphtest&run=true
    SWF Loader shows 100% instead of Dashboard.
    Even with my URL being able to display in internet explorer, I still only show 100% and a blank screen. Can anyone help me with any of the issues I am having trouble with? Your help is most appreciated. Thank you.

    It looks like you have more than one problems so it might be good to separate them out.
    Issue 1 - Logging on to BusinessObjects
    You say that when you try log on to the BO Platform you get the error message there is no central management server running on port 6400. I'm assuming you are trying to do this from the Dashboard designer.
    Does it work when you try to log on from the web browser?
    Make sure that you enter the correct system name in the system field when trying to log on from Designer. If you are unsure, either check what system name is used when you log on from your browser or check with your BO administrator.
    Issue 2 - Passing values to a child dashboard
    If you try to preview the dashboard in the designer, remember that the swf loader doesn't work in preview mode, so whatever you are trying to display won't be visible.
    First of all you need to have 2 separate flash files that works independently of each other. The one that you are planning to use as a child flash, make sure that you create the flash variables so you can pass variables to it and use them to filter your data if that is your requirement. But hold off on that for now.
    When you have 2 working flash files, save them both to the BI Launch Pad (or InfoView if you are on 3.1) and make sure they both work there. Then get the opendocument url for the child dashboard and try to open it in your browser directly using this url. If that works, use the same url in the swf viewer in the parent dashboard, save the parent dashboard back to BI Launch Pad and open it. It should now work.
    Let me know if you have any problems with these steps.
    Cheers,
    Josh

  • Hyperlink to open a business object is not working in archived printlist

    Hi
    I have archived a print list in my custom http content repository.
    Generated the indexed print list by running program OACONTA4.
    Archived data file has following lines
       \PCOL5H\PHYP<<BUS2012   \PCOL0H \PHYP>>   \PCOL2HPurchase Order                         
    IDARC1<OBJTYPE>BUS2012<OBJKEY>4500000001<METHOD>DISPLAY \PCOL0H  \PCOL4H4500000001                                       
    \PCOL0H  \PCOL2HZODTIF    \PCOL0H    \PCOL2HTest Image Documents               
    \PCOL0H  \PCOL5H\PHYP<<ZW            DE0978D42F2FA9F1AEDE0019B934DDB9       \PHYP>>
    IDARC1<OBJTYPE>IMAGE<OBJKEY>ZWDE0978D42F2FA9F1AEDE0019B934DDB9<METHOD>DISPLAY                                                                            
    \PCOL0H  \PCOL2H23.02.2009\PCOL0H    \PCOL2H         
    I am able to open archived print list using OADR.
    The hyperlinks in archived file are highlighted with different color  and cusror change when moved to "BUS2012" or "ZW            DE0978D42F2FA9F1AEDE0019B934DDB9       "
    Here "DE0978D42F2FA9F1AEDE0019B934DDB9" is archived document Id
    "4500000001" is purchase order number
    "ZW" is content repository
    "ZODTIF" is document type.
    But when I try to open the business object or the document, nothing happens.
    Then I changed the DARC line in the data file in repository to
    IDARC0ZW        DE0978D42F2FA9F1AEDE0019B934DDB9       
    After this I was able to open the document from link.
    Can anybody help on this? Why hyperlink is not working to open a business object
    Version details :
    SAP ERP ECC 6.0
    SAP NW 7.0
    References :
    http://help.sap.com/saphelp_40b/helpdata/pt/4f/9938ff446d11d189700000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/4f/9938ff446d11d189700000e8322d00/frameset.htm
    Thanks in advance !
    Ruhi

    Uninstall the ASK toolbar from addons and problem ll be solved.
    Tools>> addons >> uninstall ASK /Foxit toolbar >> Problem solved

  • Business Objects Enterprise 11.5 FTP Transfer Problem

    Hello,
    Hopefully someone out there will be familiar with the issue I'm having and be able to provide a solution.
    We are running Business Objects Enterprise 11.5 on our Windows 2003 server.  I've created and scheduled a job on the server that creates an XLS file containing loan portfolio data that is to be transmitted to a third party client on a monthly basis.
    The problem centers around the method of transfer, which is via FTP to a secure site hosted by the client.  When executed through Crystal, the FTP actually does achieve a successful login using the credentials the client provided (we have verified this repeatedly by looking at the logs), but the client's server "kicks out" when we attempt any operation on it.
    A similar result was produced when we attempted to FTP to the site via the Windows command line.  The login was successful, but even a simple command to view the directory "dir" resulted in the connection being rejected.   To make a long story short, after reviewing the issue extensively with the client's technical department, our conclusion was that the problem was the result of the FTP sending in "active" mode instead of "passive".  We confirmed this by installing a freeware FileZilla on the same server, and switching between active and passive modes (active failed, passive did not).
    Their tech people recommended that we contact SAP to get answers to two questions, which I'm hoping someone out there may know:
    1)  How does Business Objects Enterprise 11.5 execute the FTP process?  Is it using its own native logic or simply invoking the command line?
    2)  Is there any setting with the console that would enable us to modify the FTP settings to send force it to send in passive mode?
    Thanks.

    Hi,
    This is a known limitation. BO only supports active mode for FTP. Refer 1782115 - Which FTP mode is supported as a schedule or publication destination for reference.
    If you are able to write a batch file or a program object to transfer a file from a file location to Client FTP, you can try the below workaround.
    1. Add the script\batch file as a program object in BO. In the script make sure you include the code to delete the instance after it is successfully transmitted through FTP.
    2. Create a File event pointing to the location along with the name of the instance.
    3. Schedule the report to the file location with the specific instance name.
    4. Schedule the program object based on the file event you created in step 2.
    Hope this helps.
    Regards
    Chinmaya

  • Attaching link to business object using SO_NEW_DOCUMENT_ATT_SEND_API1

    Hi ABAP experts,
    I am trying to send a SAP mail with a link.  When the user clicks on the link
    they will jump to a transaction passing the parameters specified in the link.
    I have created the business object and want to know how to pass the
    parameters in the link.
    I have done it in the past so I know it can be done.  I just can't seem to remember how....
    When I click on the link it goes the transaction but I can't pass the parameters and execute the program....
    Thanks for your help in advance.
    Please see below code.
    ldf_facility = 'DH'.
    doc_chng-obj_name = 'mail_att'.
    doc_chng-obj_descr = text-024. "Validate Status
    *w_objtxt = text-999.
    w_objtxt = '<A HREF="sap-object://YJPV_REPT ">Document Status</a>'.
    *replace '&&' with ldf_facility into w_objtxt.
    *append w_objtxt to t_objtxt.
    *replace 'FF' with ldf_filename into w_objtxt.
    append w_objtxt to t_objtxt.
    w_objtxt = text-025. "Click the link above.
    append w_objtxt to t_objtxt.
    *Read last line.
    describe table t_objtxt lines tab_lines.
    read table t_objtxt into w_objtxt index tab_lines.
    *Get object document size.
    doc_chng-doc_size = ( tab_lines - 1 ) * 255 + strlen( w_objtxt ).
    *Document entry
    clear w_objpack-transf_bin.
    *header start
    w_objpack-head_start = 1.
    w_objpack-head_num = 0.
    *number of lines.
    w_objpack-body_start = 1.
    w_objpack-body_num = tab_lines.
    w_objpack-doc_type = 'RAW'.
    append w_objpack to t_objpack.
    w_objbin = 'YJPV_REPT'.
    append w_objbin to t_objbin.
    describe table t_objbin lines tab_lines.
    *Attached document text
    w_objhead = text-033. "IDoc List
    append w_objhead to t_objhead.
    w_reclist-receiver = sy-uname.
    w_reclist-rec_type = 'B'.   "'B' = R/3 user  'U' = internet mail
    w_reclist-express  = 'X'.
    append w_reclist to t_reclist.
    *Send document
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      exporting
        document_data                    = doc_chng
        put_in_outbox                    = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
      tables
        packing_list                     = t_objpack
       object_header                     = t_objhead
       contents_bin                      = t_objbin
       contents_txt                      = t_objtxt
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
        receivers                        = t_reclist
    exceptions
       too_many_receivers               = 1
       document_not_sent                = 2
       document_type_not_exist          = 3
       operation_no_authorization       = 4
       parameter_error                  = 5
       x_error                          = 6
       enqueue_error                    = 7
       others                           = 8.

    Hello,
    You can have the fixed width of the colums in excel (No additional spaces in the column) is you use, the seperator between the fields.
    For eg : If you are displaying 3 fields in the excel file, say MATNR, WERKS and QUANTITY.
    Then you need to
    Concatenate  matnr
                          werks
                          quantity
    into                ls_contents_bin-line
    separated by lc_tab.
    append ls_contents_bin to lt_contents_bin.
    Here lc_tab is the tab seperator to be declared as follows : -
    CONSTANTS : lc_tab         TYPE char01     VALUE  cl_abap_char_utilities=>horizontal_tab.
    The internal table lt_contents_bin is then passed to the table parameters contents_bin of the FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    Thanks.
    Regards,
    Rinkesh Doshi

  • Error while generating the Business Object in Mobile Sales

    Hi,
    I made changes to the Business Object BOCAPGEN.
    Now I am trying to generate the business object but it is giving out the error saying
    Error intializing RT Generator !.RT Generator Failed for ".Error arsrep.dat is in use so Generation cannot be done
    I am not a MSA Developer and have no clue regarding MAS(Mobile Application Studio)
    So any one can please give me a clue regarding the issue
    I have solved it by closng all other application other than client console
    Thanks Guys
    Message was edited by: zack taylor

    Hi !
    1 year later, I am facing the same problem.
    I want to build MSA 4.0 SP8, everything runs fines until the end of the generation of the Tiles, the next step fails :
    Error intializing RT Generator !.RT Generator Failed for ".Error arsrep.dat is in use so Generation cannot be done
    Then around 10 thousands of error messages of that kind follow in the output window ; howeverin the end it says "Generation End" without telling whether it was successful or not (the first time the output window was too small, I thought all was OK )
    Anyways, the Mobile Sales icon appeared on the desktop and when I try to launch it I get the error "Starting MobileSalesfailed".
    During another attempt, I check with "Unlocker" the 2 arsrep.dat files I found under the BOL directory, it reported that none was used and locked at that moment.
    Also I killed the vbagen.exe process before starting the build, but it was automatically launched after. (first build was launched after a reboot, the 2nd after the 1st failed + vbagen.exe process killed)
    Does anyone have any clue ?
    Another question is : what are the rights required ? I am a local administrator but I do not have full admin rights (the only thing I saw at the moment is I cannot access to Add/Delete Programs in the Control Panel)
    Thanks & Regards,
    François
    -edit-
    thanks to the one who moved it to the right forum
    Message was edited by:
            Francois Feugier

  • Error while installation - Business object Xi R2 SP2

    Hi ,
    I am trying to install  Business object Xi R2 SP2 on my new Windows 7 Operating System. I am trying to install the client components .I am getting the below error .Please reply if there is any soultion.
    Error :
    "1 processor  Family 6 Model 0 Stepping 0
    Unknown Windows v6.1 build 7600
    Physical Total/Avail: 1.048.120 Kb / 344.332 Kb
    Temp directory C:\Users\ADMINU~1\AppData\Local\Temp\ (1 Kb available)
    'Unknown' video card
       1024 x 768 with 65536 colors
    Unhandled Exception
      Code: e06d7363
      Description unavailable
    Call stack:
    Module  at   0x75bb0000: C:\Windows\system32\KERNELBASE.dll  v 6.1.7600.16385 [E]
        address: 0x75bb9617
    Module  at   0x7c360000: C:\Windows\system32\MSVCR71.dll  v 7.10.6030.0 [E]
        address: 0x7c37a7bc
    Module  at   0x55060000: C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpi18n.dll  v 11.5.8.826 [E]
        address: 0x55088183
    Application:
    0x54C "
      current thread 0x858
    started: Thursday, February 24, 2011 at 15:26 PM
    ends:    Thursday, February 24, 2011  at 15:26 PM
      User mode: 62 ms   Kernel mode: 406 ms
    Loaded modules:
        0x00020000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\io-vc-mt.dll      v 0.0.0.0
        0x00150000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\thread-vc-mt.dll      v 0.0.0.0
        0x00170000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\time-vc-mt.dll      v 0.0.0.0
        0x00190000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\network-vc-mt.dll      v 0.0.0.0
        0x00320000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\libxml2.dll      v 2.6.19.0      [English (United States)]
        0x003E0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\helper-vc-mt.dll      v 0.0.0.0
        0x00400000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\designer.exe      v 11.5.8.826      [English (United States)]
        0x00590000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\btuc320vc71.dll      v 3.2.0.0      [English (United States)]
        0x006C0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\tools.dll      v 11.5.8.826      [English (United States)]
        0x00830000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\security-vc-mt.dll      v 0.0.0.0
        0x00840000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wstkCommon.dll      v 11.5.8.826      [English (United States)]
        0x008C0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\streaming-vc-mt.dll      v 0.0.0.0
        0x008F0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\desengine.dll      v 11.5.8.826      [English (United States)]
        0x00910000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\pdflib.dll      v 6.0.3.0      [English (United States)]
        0x10000000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\file-vc-mt.dll      v 0.0.0.0
        0x12000000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\xerces-c_2_1_0.dll      v 2.1.0.0      [English (United States)]
        0x49C00000     C:\Windows\system32\cxlibw-3-1.dll      v 11.5.8.826      [English (United States)]
        0x4A800000     C:\Windows\system32\icuuc30.dll      v 3.0.0.0      [Language Neutral]
        0x4A900000     C:\Windows\system32\icuin30.dll      v 3.0.0.0      [Language Neutral]
        0x4AD00000     C:\Windows\system32\icudt30.dll      v 3.0.0.1      [Language Neutral]
        0x53000000     C:\Windows\system32\fssl-1-2-1-2.dll      v 1.2.1.2      [English (United States)]
        0x53120000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cs_tools.dll      v 11.5.8.826      [English (United States)]
        0x53390000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cs_helpers.dll      v 11.5.8.826      [English (United States)]
        0x53430000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cube.dll      v 11.5.8.826      [English (United States)]
        0x536D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\unvtools.dll      v 11.5.8.826      [English (United States)]
        0x53B10000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\kagtux.dll      v 11.5.8.826      [English (United States)]
        0x53BD0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cplib.dll      v 11.5.8.826      [English (United States)]
        0x53F60000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cnxsrv.dll      v 11.5.8.826      [English (United States)]
        0x54110000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\TraceLog.dll      v 11.5.8.826      [English (United States)]
        0x541C0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ksqldg.dll      v 11.5.8.826      [English (United States)]
        0x542C0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\sessmgr.dll      v 11.5.8.826      [English (United States)]
        0x54430000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpcoll.dll      v 11.5.8.826      [French (France)]
        0x544F0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\uitools.dll      v 11.5.8.826      [English (United States)]
        0x546C0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\rptdisp.dll      v 11.5.8.826      [English (United States)]
        0x54740000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\krptdlg.dll      v 11.5.8.826      [English (United States)]
        0x547E0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\BOFCEngine.dll      v 11.5.8.826      [English (United States)]
        0x54860000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dlg1.dll      v 11.5.8.826      [English (United States)]
        0x548F0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\i18n.dll      v 11.5.8.826      [English (United States)]
        0x549E0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpxml.dll      v 11.5.8.826      [English (United States)]
        0x54AB0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\category.dll      v 11.5.8.826      [English (United States)]
        0x54AF0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dlgdll.dll      v 11.5.8.826      [English (United States)]
        0x54D40000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\RepAttr.dll      v 11.5.8.826      [English (United States)]
        0x54D70000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\bofcui.dll      v 11.5.8.826      [English (United States)]
        0x54E30000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\boDeploy.dll      v 11.5.8.826      [English (United States)]
        0x55030000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\BOCP_1252.dll      v 11.5.8.826      [English (United States)]
        0x55060000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpi18n.dll      v 11.5.8.826      [English (United States)]
        0x55290000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\kquery.dll      v 11.5.8.826      [English (United States)]
        0x55620000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\msgsrv.dll      v 11.5.8.826      [English (United States)]
        0x55640000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\BOFCDialogs.dll      v 11.5.8.826      [English (United States)]
        0x55660000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\boconfig.dll      v 11.5.8.826      [English (United States)]
        0x556E0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\vartools.dll      v 11.5.8.826      [English (United States)]
        0x56970000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\FCRepoProxy.dll      v 11.5.8.826      [English (United States)]
        0x57620000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\repo_proxy.dll      v 11.5.8.826      [English (United States)]
        0x59620000     C:\Windows\system32\libOCAHelperw-3-1.dll      v 11.5.8.826      [English (United States)]
        0x597C0000     C:\Windows\system32\libOCASecurityw-2-0.dll      v 11.5.8.826      [English (United States)]
        0x5D360000     C:\Windows\system32\MFC71ENU.DLL      v 7.10.3077.0      [English (United States)]
        0x63000000     C:\Windows\system32\etc-1-0-12-4.dll      v 1.0.12.21      [English (United States)]
        0x64000000     C:\Windows\system32\ebus-3-3-2-5.dll      v 3.3.2.24      [English (United States)]
        0x6F250000     C:\Windows\system32\msi.dll      v 5.0.7600.16385      [English (United States)]
        0x71AE0000     C:\Windows\system32\WINSPOOL.DRV      v 6.1.7600.16385      [English (United States)]
        0x71BC0000     C:\Windows\system32\hlink.dll      v 6.1.7600.16385      [English (United States)]
        0x72AE0000     C:\Windows\system32\dbghelp.dll      v 6.1.7600.16385      [English (United States)]
        0x72D10000     C:\Windows\system32\rasadhlp.dll      v 6.1.7600.16385      [English (United States)]
        0x72D20000     C:\Windows\system32\pnrpnsp.dll      v 6.1.7600.16385      [English (United States)]
        0x72D40000     C:\Windows\system32\napinsp.dll      v 6.1.7600.16385      [English (United States)]
        0x72D50000     C:\Windows\System32\winrnr.dll      v 6.1.7600.16385      [English (United States)]
        0x73010000     C:\Windows\system32\WSOCK32.dll      v 6.1.7600.16385      [English (United States)]
        0x73380000     C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7600.16661_none_ebfb56996c72aefc\COMCTL32.dll      v 5.82.7600.16661      [English (United States)]
        0x73980000     C:\Windows\System32\fwpuclnt.dll      v 6.1.7600.16385      [English (United States)]
        0x73C10000     C:\Windows\system32\WINNSI.DLL      v 6.1.7600.16385      [English (United States)]
        0x73C20000     C:\Windows\system32\IPHLPAPI.DLL      v 6.1.7600.16385      [English (United States)]
        0x73DE0000     C:\Windows\system32\NLAapi.dll      v 6.1.7600.16385      [English (United States)]
        0x74920000     C:\Windows\system32\uxtheme.dll      v 6.1.7600.16385      [English (United States)]
        0x74DF0000     C:\Windows\system32\VERSION.dll      v 6.1.7600.16385      [English (United States)]
        0x75200000     C:\Windows\system32\DNSAPI.dll      v 6.1.7600.16385      [English (United States)]
        0x75340000     C:\Windows\System32\mswsock.dll      v 6.1.7600.16385      [English (United States)]
        0x75850000     C:\Windows\system32\CRYPTBASE.dll      v 6.1.7600.16385      [English (United States)]
        0x75900000     C:\Windows\system32\profapi.dll      v 6.1.7600.16385      [English (United States)]
        0x75970000     C:\Windows\system32\MSASN1.dll      v 6.1.7600.16415      [English (United States)]
        0x75980000     C:\Windows\system32\CRYPT32.dll      v 6.1.7600.16385      [English (United States)]
        0x75BB0000     C:\Windows\system32\KERNELBASE.dll      v 6.1.7600.16385      [English (United States)]
        0x75C00000     C:\Windows\system32\SHLWAPI.dll      v 6.1.7600.16385      [English (United States)]
        0x75C60000     C:\Windows\system32\ole32.dll      v 6.1.7600.16624      [English (United States)]
        0x75DC0000     C:\Windows\system32\comdlg32.dll      v 6.1.7600.16385      [English (United States)]
        0x75E40000     C:\Windows\system32\LPK.dll      v 6.1.7600.16385      [English (United States)]
        0x75E50000     C:\Windows\system32\MSCTF.dll      v 6.1.7600.16385      [English (United States)]
        0x75F20000     C:\Windows\system32\RPCRT4.dll      v 6.1.7600.16385      [English (United States)]
        0x75FD0000     C:\Windows\system32\NSI.dll      v 6.1.7600.16385      [English (United States)]
        0x75FE0000     C:\Windows\SYSTEM32\sechost.dll      v 6.1.7600.16385      [English (United States)]
        0x76000000     C:\Windows\system32\SHELL32.dll      v 6.1.7600.16644      [English (United States)]
        0x76C50000     C:\Windows\system32\IMM32.DLL      v 6.1.7600.16385      [English (United States)]
        0x76D20000     C:\Windows\system32\kernel32.dll      v 6.1.7600.16481      [English (United States)]
        0x76E00000     C:\Windows\system32\urlmon.dll      v 8.0.7600.16671      [English (United States)]
        0x76F40000     C:\Windows\system32\ADVAPI32.dll      v 6.1.7600.16385      [English (United States)]
        0x76FE0000     C:\Windows\system32\USP10.dll      v 1.626.7600.16385      [English (United States)]
        0x77080000     C:\Windows\system32\msvcrt.dll      v 7.0.7600.16385      [English (United States)]
        0x77130000     C:\Windows\system32\WININET.dll      v 8.0.7600.16671      [English (United States)]
        0x77230000     C:\Windows\system32\GDI32.dll      v 6.1.7600.16385      [English (United States)]
        0x772B0000     C:\Windows\system32\USER32.dll      v 6.1.7600.16385      [English (United States)]
        0x77380000     C:\Windows\system32\iertutil.dll      v 8.0.7600.16671      [English (United States)]
        0x77720000     C:\Windows\system32\OLEAUT32.dll      v 6.1.7600.16385      [English (United States)]
        0x777B0000     C:\Windows\SYSTEM32\ntdll.dll      v 6.1.7600.16559      [English (United States)]
        0x778F0000     C:\Windows\system32\Normaliz.dll      v 6.1.7600.16385      [English (United States)]
        0x77900000     C:\Windows\system32\WS2_32.dll      v 6.1.7600.16385      [English (United States)]
        0x7C140000     C:\Windows\system32\MFC71.DLL      v 7.10.6041.0      [English (United States)]
        0x7C250000     C:\Windows\system32\MFC71U.DLL      v 7.10.3077.0      [English (United States)]
        0x7C360000     C:\Windows\system32\MSVCR71.dll      v 7.10.6030.0      [English (United States)]
        0x7C3C0000     C:\Windows\system32\MSVCP71.dll      v 7.10.6030.0      [English (United States)]

    The BO XI R2 server can only be installed on a server version of WIndows (eg. WIndows Server 2003 or 2008)
    The BO XI R2 client (even the latest SP 6) is not supported on Windows 7.
    More information about the supported platforms is available here http://service.sap.com/bosap-support.
    Regards,
    Stratos

Maybe you are looking for

  • Current Month vs. YTD

    I am wanting to show account balances for the Current Month vs. Year to Date. I am using a BSO cube and have heard that Dynamic Time Series don't work in OBIEE, which is where we're going to be building reports off this data. We want this calculation

  • Where can i find the zoom and pinch tool in New Adobe DRAW App

    Hi People    Dose anyone know where i can find the zoom and pinch tool in adobe draw? On adobe ideas it was on the tool bar with the pan icon that looks like a hand and the cross icon for the zoom. Just wondering if Adobe put it in the new Adobe Draw

  • Can I embed fonts in exported Word docs in 09

    As it says. Can I embed fonts in an exported DOC type document, in Pages 09, or 5.2 for that matter? thanks

  • Date profile issue.

    Hi,     Need your help on date profile. I had created one new duration and a new rule. After that created the date profile and assigned this new date rule. After that I had assigned the date profile to transaction type. But while creating a document,

  • Template for Position Based Role Generation - Grouping of Transaction

    Hi We have almost 3500 Roles. They are all Role based / Transaction Based. We would like to shift it to Position Based Roles. Is there any template or high level document which can give you the information regarding the grouping of transaction with r