Reg: BO/BW Installtion in  a single machine.

Hi All,
We have plan to Implement , SAP BO/BW for that we have some Question here..?
Is it possible to install BO/BW in a single machine, If So what are all the conflicts will come.
Thanks

This forum is for BusinessObjects SDK assistance only.  You will be better off creating this in either one of the SAP BW forums or the BusinessObjects Administration forum.
Jaso

Similar Messages

  • How can multiple users use the same Creative Cloud Individual on one single-machine?

    We have one shared graphics workstation, which is infrequently in use by different people - therefore we bought a single-workstation license (which we were referred to "Creative Cloud Individual"). In the FAQs it says it installs locally, but whenever a user different from the installing adminstrator logs in, he is forced to use the trial.
    Is there a way to make the local installation usable on that single machine for multiple users?
    Thanks in advance for your reply

    Serenatasystems do the other users not have administrator access?  What happens if they sign in using the Adobe ID tied to your Creative Cloud subscription?  Do your Adobe Creative applications then exit trial mode?

  • Multiple servers on a single machine

    Hi,
    Can multiple server processes be run on a single machine?
    I wish to compile each server module independently and run them individually so
    that if one goes down,the other processes doesn't affect.
    Can we start all the server modules using single tmboot command?
    How can we write a bea configuration file that suits the above requirements?
    Please suggest me on this.

    Subhash,
    It is normal to have more than one Tuxedo server process running on a
    machine, exactly as you describe. In fact, if you include the system
    supplied servers that run (BBL, etc.) then all Tuxedo applications have
    more than 1 server.
    I suggest that you take a look at the Bankapp tutorial that comes with
    Tuxedo, this (and the associated documentation) should give you
    step-by-step answers to all your questions.
    Regards,
    Peter.
    subhash wrote:
    Hi,
    Can multiple server processes be run on a single machine?
    I wish to compile each server module independently and run them individually so
    that if one goes down,the other processes doesn't affect.
    Can we start all the server modules using single tmboot command?
    How can we write a bea configuration file that suits the above requirements?
    Please suggest me on this.

  • Multiple instances operated on a single database on a single machine

    Hi friends,
    Can anybody tell that "Is it possible to operate multiple instances on a single database on a single machine"!?.
    If so.., where this case is useful.
    Please help on this doubt.
    Thanks in advance.
    Thanks
    Srinivasa Rao

    Hi,
    I just asked whether it is possible or not. It is not much important. As you said, OPS will perform well if instances are on different machines. I agree on this. But I think we need to replicate the database on other machine also to run fast.Am I right?..If not, please correct me...
    Thanks for valuable information.
    I just re-read your post. When you say multiple instances on a single database, it sounds to me like you are asking about Oracle Parallel Server in 8i. I don't know why you would (or even if you could) have multiple instances on the same box. I don't think that would make sense since on of the benefits of OPS is to have more processing power by using multiple machines.

  • How to get active monitor-Multiple monitors connected to a single machine.

    Hi,
    How to get the id of active graphic device, in case of multiple graphic devices connected to a single machine(Multi-headed display/ multi headed nodes) using Swing.
    Prashanth.

    Ah, youre actually asking different things.
    In your topic title, you say youre running separate instances
    In your body text, you say you are under different user/schema
    So tell me, do you have more than one database or not? How many entries in your TNS file?
    I would say, for "multiple database instances"
    SELECT
      a.id, b.id
    FROM
      tableA a
      INNER JOIN
      tableB@OTHER_DATABASE_LINK_NAME b  <--NOTE!
      USING(id)And of course you will have to look up CREATE PUBLIC DATABASE LINK sql..
    Message was edited by:
    charred

  • WebPart drop down values working fine on PostBack in Dev. Environment (Single Machine) not in Farm

    We have three drop downs (ddlRotation, ddlOnCallType and ddlHospital) in our webpart. All values are being populated dynamically. One from list (ddlHospital) and other from tool part properties. For dropdown populated from list, we are storing values  in
    View State.
    WebPart is working fine in development environment (single  machine) while on production ( 1 front end, 1 index and 1 db server), drop down values disappear after post back. Below is the code.
    protected void Page_Load(object sender, EventArgs e)
    try
    if (!Page.IsPostBack)
    LoadData();
    if (!string.IsNullOrEmpty(webPart._rotationDetail))
    ddlRotation.Items.Add(new ListItem("All", "0"));
    int i = 1;
    string[] strRotationDetail = webPart._rotationDetail.Split(':');
    foreach (string str in strRotationDetail)
    ddlRotation.Items.Add(new ListItem(str, i.ToString()));
    i++;
    if (!string.IsNullOrEmpty(webPart._onCallTypes))
    ddlOnCallType.Items.Add(new ListItem("All", "0"));
    int j = 1;
    string[] strOnCallTypes = webPart._onCallTypes.Split(':');
    foreach (string str in strOnCallTypes)
    ddlOnCallType.Items.Add(new ListItem(str, j.ToString()));
    j++;
    catch (Exception ex)
    private void LoadData()
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite spSite = new SPSite("SITE_URL"))
    using (SPWeb spWeb = spSite.OpenWeb())
    SPList oList = spWeb.Lists[webPart.destListName];
    SPListItemCollection setuplistItems = oList.Items;
    if (setuplistItems != null && setuplistItems.Count > 0)
    DataTable dtSetupData = setuplistItems.GetDataTable();
    if (ViewState["SetupData"] != null)
    ViewState.Remove("SetupData");
    ViewState.Add("SetupData", dtSetupData);
    else
    ViewState.Add("SetupData", dtSetupData);
    LoadHospitalCombo();
    dateControl.SelectedDate = DateTime.Now;
    else
    // some error message
    private void LoadHospitalCombo()
    if (ViewState["SetupData"] != null)
    DataTable dt = (DataTable)ViewState["SetupData"];
    DataView dv = dt.DefaultView;
    ddlHospital.Items.Clear();
    ddlHospital.DataTextField = "TITLE";
    ddlHospital.DataValueField = "TITLE";
    ddlHospital.DataSource = dv.ToTable(true, "TITLE");
    ddlHospital.DataBind();
    ddlHospital.Items.Insert(0, "All");
    Any help?
    http://farhanfaiz.wordpress.com

    Running your code in try/catch and doing nothing on exception, is not a good idea. Please try to put logging in your code as I believe your code is throwing exception. It's difficult to say seeing such a code what's wrong. Maybe the list doesn't exist or
    exists with different name/title, or viewstate is disabled or webpart properties are not populated... there's so many possibilities. Also if possible refactor your code as shown below:
    //Your Code, you are loading all items from database and then counting it
    SPListItemCollection setuplistItems = oList.Items;
    if (setuplistItems != null && setuplistItems.Count > 0)
    //Refactored Code
    if (oList.ItemCount > 0)
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • HLP:Serving forms in 2 distinct envirs from a single machine

    We would like to set up the forms and report server on a SINGLE
    machine in such a way that the OAS
    can serve forms to 2 distinct groups of users: Developpers and
    production users. Is this
    possible ? If so, how do we do it ?
    For example, say we have a form called 'A' that is used in
    production. Now we have to modify and
    test it in development. We only have 1 physical machine
    available. Is there a way on only ONE
    machine to serve Development form A to developpers and
    production form A to production users ?
    Of course we could have two versions of the forms and report and
    use different names, but this
    solution is not really easy to manage....
    What about the libraries (PLL) and icons (and all other
    attachable objects in FORMS)
    Say I have 2 directories:
    /disk1/dev/forms
    containting FORMA.FMX
    MYLIB.PLL (Used by FORMA) (Actually, my cartridge
    and forms server is set up to use these directories)
    /disk2/prod/forms
    contaning FORMA.FMX (Production version)
    MYLIB.PLL (Used by formA)
    Do I have to set up 2 virtual directories ? 2 different forms
    cartridges. 2 different forms server (on different ports)
    For now, I only deploy in a single environment (DEV). The UNIX
    environement from which I start the FORMS
    server contains stuff like:
    FORMS60_PATH=/disk1/dev/forms
    + setting specific to this environment (TK60_ICON, etc...)
    How do I set it up to run forms in 2 distinct enviroments ?
    What about reports variables (We are using the cartridge as well)
    Thanks
    null

    Thanks wilfred,
    yes I've read that manual. Probably not every single page ;-)
    I agree that High-Availability is a very broad and complex topic, but my question is (although it was difficult to explain what i mean) only on a small part of it:
    I understand that I can have mutiple instances on each level OC4J, HTTP, WEB-Cache, LBR But where or who excepts one single URL and leads the requests to the available AS
    As mentioned in my post before, we may etst the Microsoft NLB-Cluster to divide the requests to the WEB-Cache Instances on the 2 AS and then the 2 Web-Cache proceed to the 2 HTTP and so on.
    The Idea of that is that Windows offers a virtual IP-Adress from those 2 Windows-Server and somehow the requests will be transferred to a running WEB-Cache.
    Does that work correctly with session-Binding ...
    We'll see
    thanks,
    Mark

  • Configuring multiple instances of weblogic server 7.0 on single machine

    Hi,
    I am trying to configure multiple instances of weblogic server 7.0 on single machine
    ( sun Solaris 7). I tried to create everytime new domain. Can anybody help me.
    Thanks in advance.
    Ravi

    You can have several servers under one domain. No need to create a new
    domain for each server. Just configure a server and make sure they are
    listening on different ports. you are all set.
    Kumar
    ravikiran wrote:
    Hi,
    I am trying to configure multiple instances of weblogic server 7.0 on single machine
    ( sun Solaris 7). I tried to create everytime new domain. Can anybody help me.
    Thanks in advance.
    Ravi

  • Feasibility of making a RAC installation on a single machine

    Hii,
    Is it possible to make a RAC installation on a single machine using oracle 11gR2?If so, how?Pls guide me through.

    Feasible? ... certainly. Meaningful ... no!
    There are a number of reasons one might wish to implement RAC ... horizontal scaling and high availability come to mind. With a single machine both are impossible.
    Want to do this for purposes of personal training? ... Waste of time as you can not really learn how to build and maintain a real cluster. Far better to go to eBay, pick up a used 800 series or more recent NetApp, and create the real thing.

  • Two SID installation a single machine???

    Hello,
    it's possible to install a single 2 system with the same SID on a machine??? (ECC 6.0, oracle 10,win 2003)
        Thank you!

    Hi,
    Two system on single machine with same SID is not possible.
    you have to use different SID to install two system on single machine.
    check Note 28392 - Two R/3 Systems on one Windows NT Server
    regards,
    kaushal

  • Oracle forms server implementation on single machine

    I am using windows xp on my system.
    can I run the developer 6i forms .FMX file from browser (internet explorer), after installing oracle forms server??
    which operating system should we use to implement forms server.
    while installing form server on windows xp a message was displayed like 'some files can be installed on
    windows NT only'. I am not sure wheather the forms server will work on windows xp?
    My requirement is I want to run the .FMX file from Internet explorer in my system i.e using single machine.
    plz clarify.
    with thanks
    GMS

    can I run the developer 6i forms .FMX file from browser (internet explorer), after installing oracle forms server??The answer is yes if you can get it to install.
    I think you will need a FQHN (Host name with DNS).
    which operating system should we use to implement forms server?We used Linux, Red Hat 4 AS, But I think you could use Windows 2003 with that version. I would avoid Windows NT at this point.
    I have no information on using XP, I'm pretty sure I would not. I would use a server OS.
    Best Regards
    mseberg

  • Can single machine have multiple JVM running ?

    Hi ,
    I have two questions.
    1) I have running jboss4 and tomcat 5 running in single machine, does it mean that they are running in same same jvm?.
    2) If no how i can configure the jboss and tomcat for running in same/different JVM but in same single physical machine?
    Please help me
    Thanks in advance
    Shuja

    tschodt wrote:
    Greek wrote:
    1) I have running jboss4 and tomcat 5 running in single machine, does it mean that they are running in same same jvm?.In the same JVM instance - no.
    On the same Java installation - depends on how you run them.
    2) If no how i can configure the jboss and tomcat for running in same/different JVM but in same single physical machine?For JBoss you set JAVA_HOME.
    For tomcat - I dunno - should be in the documentation somewhere.Thanks for reply
    for both jboss and tomact i have set jave_home to same the path, how i do ensure that they are running in same jvm instance.

  • Single machine copy of installer

    hi
    I have created setup of my swing application using InstallAnyWhere. But i want my installer to be installed on single machine only. Once it is installed on any pc, it should not be installed on any other machine. This is for security purpose, so that client can't distribute software.
    If anyone has any idea about it, please help
    Thanks in advance

    nvv wrote:
    ...If anyone has any idea about it, please helpGive the software free, and sell support.

  • What feature I can use in SQLServer 2014/SQLAzure to Horizontal scaling in case a single machine cannot handle the load

    Hi all,
    I need advise for 
    What feature I can use in SQLServer 2014/SQLAzure to Horizontal scaling  in case a single machine cannot handle the load.
    Please some body suggest.
    I know some features :
    1.AlwaysOn
    2.Peer to Peer replication
    Thanks in advance.

    Hello,
    Windows Azure SQL database is not on-premise SQL Server 2014.
    SQL database not support Always on Availability Group and Replication. Scaling out in Azure SQL Database requires sharding, which horizontally partitions data across multiple databases. You should design custom sharding solutions by using application
    code across multiple databases.
    If you use Azure virtual machines (VMs) with SQL Server 2014, you can configure Alwayson Availability Groups. Please refer to the following article:High Availability and Disaster Recovery
    for SQL Server in Azure Virtual Machines
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Once I download a single license of Adobe Pro how do I install it on that single machine?

    Once I download a single license of Adobe Pro how do I install it on that single machine?

    If you installed and registered the information will be on your account page
    https://www.adobe.com/account.html for your Adobe orders page

Maybe you are looking for

  • Connecting a macbook to a W2K PC

    First experience with Mac (since college 20+ years ago). Purchased for my wife's birthday. Having terrible experience with networking (have Linksys B router). Airport is fickle but I can get it to work at times (many calls to AppleCare). What I'm loo

  • Attachments appearing as password-protected when they're not

    Several times recently, I've had clients (on windows) tell me that attachments I've sent them in Mail -- whether they're zipped archives or single files -- indicate that a password is required before the file can be accessed. I've set no password pro

  • IBooks only partly uses "White on Black"

    Hello, when I turn on "White on Black" (= night modus / triple-click home button), the iBooks background only partially turns black. The title bar on the top stays white, blending me while reading in the dark. In all other iOS Apps / settings, the bl

  • External Monitor, iBook, and SwitchResX

    I recently got a 19" external monitor for my ibook this Christmas. The screen image is blurred and stretched. I called both the monitor company and apple, but neither one was helpful. I saw some discussions about SwitchResX. I downloaded it and have

  • Vendor analysis - MC$6

    Hi Expert, In vendor analysis screen (tcode MC$6), what is the used of this transaction? Is it anything to do with vendor evaluation? There are Deliv dt vr2, Deliv dt vr 3... Can the "Del dt vr" be customized to the user's preferred definition?  Wher