Is Citrix required for Global implementation with one server/instance?

Hi,
We are working on a global implementation of ECC ver 6.0 on a single server and I would like some insight on whether we need Citrix for that or SAP GUI would be good enough. Would I suffer any large latency and security issues if we dont use Citrix?
Thanks,
Sourav

> We are working on a global implementation of ECC ver 6.0 on a single server and I would like some insight on whether we need Citrix for that or SAP GUI would be good enough. Would I suffer any large latency and security issues if we dont use Citrix?
I'd say vice versa:
Citrix sends "full screens" over the network, if you have the local SAPGUI installations and just connect remotely you can run more users over the same line - with the price of maintaining the SAPGUI installations locally.
Markus

Similar Messages

  • System requirements for hardware when using one server and 9 terminals?

    Hi, in our school there are 9 terminals connected to one Multipoint server 2011 (CPU: Intel xeon e3-1226v3 8M cache, 3.30GHz, 32RAM).
    In my opinion the choice of hardware is not suitable for so many terminals.
    The question is:
    What hardware do we need if our students worked with those programs in the same time - Corel Draw, Photoshop, ect.
    Thank you! 

    Photoshop can be a bit pig heavy. The CPU you are using is only Quad Core and NOT Hyper-Threaded.
    A bit underpowered for that many users on that App IMHO.
    Also, are the clients direct connected, USB, or RDP ?
    If you want to keep that machine in service, you could get another identical box and split half the users to the new one.
    If you really want them all on the same box, I would prob replace the current one with something like a Lenovo TD340. Config with at least a single 6 Core XEON CPU, or Dual Quad XEON w/ Hyper-Threading, 64GB Memory, NVidia Quadro K4000 ( If there are any
    direct connections ) and at least 2 10k SAS HD's. Preferably 4x 10k SAS HD in RAID 10.
    SpecSheet
    http://www.lenovo.com/images/products/server/pdfs/datasheets/thinkserver_td340_ds.pdf

  • How to install and config multi server certificates for hardware servers within one server instance(using different IP addresses?

     

    Hi,
    I hope your questions is like this.
    one instance is there, and want to install multiple server certs.
    Ans:-
    I don't think you can install individual certs for all of them. which is not possible, but you can install server certs for particular classes.
    In one instance,you can have multiple h/w virtual servers each binded to one ip.
    This is possible in iws 6.0,you can install different certs for different virtual classes.
    Thanks,
    Daks.

  • Apps for different clients with one creative cloud license

    Can I publish apps for different clients with one single edition license on creative cloud?

    Well, "should" is about as good as it gets, no one is going to enforce that, and it's certainly making me think very very hard about whether to bother with a pro licence again in August!
    And yes I'm very much aware of the few advantages of the Pro Licence, I do need to see some much bigger differentiators to justify the extra cost though!
    Just putting cards on the table :-)
    Alistair

  • If i sign up for itunes match with one apple id can i get the other apple id songs

    if i sign up for itunes match with one apple id can i get the other apple id songs

    I'm assuming you mean can you access the purchased songs from another apple id.  No you cannot.  You will need to download these on another computer and then transfer the hard files into your itunes library that you are using icloud with and let icloud match them.
    You cannot access two different id's from one match account.  Also, if you sign out of the match account that you are signed into to another to download purchases you will not be able to sign back into your match account for three months.  So do not do this either.  Just use a friends computer or another way.

  • What are the thread safety requirements for container implementation?

    I rarely see in the TopLink documentation reference to thread safety requirements and it’s not different for container implementation.
    The default TopLink implementation for:
    - List is Vector
    - Set is HashSet
    - Collection is Vector
    - Map is HashMap
    Half of them are thread safe implementations List/Collection and the other half is not thread safe Set/Map.
    So if I choose my own implementation do I need a thread safe implementation for?
    - List ?
    - Set ?
    - Collection ?
    - Map ?
    Our application is always reading and writing via UOW. So if TopLink synchronize update on client session objects we should be safe with not thread safe implementation for any type; does TopLink synchronize update on client session objects?
    The only thing we are certain is that it is not thread safe to read client session object or read read-only UOW object if they are ever expired or ever refreshed.
    We got stack dump below in an application always reading and writing objects from UOW, so we believe that TopLink doesn’t synchronize correctly when it’s updating the client session objects.
    java.util.ConcurrentModificationException
    at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:449)
    at java.util.AbstractList$Itr.next(AbstractList.java:420)
    at oracle.toplink.internal.queryframework.InterfaceContainerPolicy.next(InterfaceContainerPolicy.java:149)
    at oracle.toplink.internal.queryframework.ContainerPolicy.next(ContainerPolicy.java:460)
    at oracle.toplink.internal.helper.WriteLockManager.traverseRelatedLocks(WriteLockManager.java:140)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLockAndRelatedLocks(WriteLockManager.java:116)
    at oracle.toplink.internal.helper.WriteLockManager.checkAndLockObject(WriteLockManager.java:349)
    at oracle.toplink.internal.helper.WriteLockManager.traverseRelatedLocks(WriteLockManager.java:144)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLockAndRelatedLocks(WriteLockManager.java:116)
    at oracle.toplink.internal.helper.WriteLockManager.checkAndLockObject(WriteLockManager.java:349)
    at oracle.toplink.internal.helper.WriteLockManager.traverseRelatedLocks(WriteLockManager.java:144)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLockAndRelatedLocks(WriteLockManager.java:116)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLocksForClone(WriteLockManager.java:56)
    at oracle.toplink.publicinterface.UnitOfWork.cloneAndRegisterObject(UnitOfWork.java:756)
    at oracle.toplink.publicinterface.UnitOfWork.cloneAndRegisterObject(UnitOfWork.java:714)
    at oracle.toplink.internal.sessions.UnitOfWorkIdentityMapAccessor.getAndCloneCacheKeyFromParent(UnitOfWorkIdentityMapAccessor.java:153)
    at oracle.toplink.internal.sessions.UnitOfWorkIdentityMapAccessor.getFromIdentityMap(UnitOfWorkIdentityMapAccessor.java:99)
    at oracle.toplink.internal.sessions.IdentityMapAccessor.getFromIdentityMap(IdentityMapAccessor.java:265)
    at oracle.toplink.publicinterface.UnitOfWork.registerExistingObject(UnitOfWork.java:3543)
    at oracle.toplink.publicinterface.UnitOfWork.registerExistingObject(UnitOfWork.java:3503)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.registerIndividualResult(ObjectLevelReadQuery.java:1812)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildWorkingCopyCloneNormally(ObjectBuilder.java:455)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObjectInUnitOfWork(ObjectBuilder.java:419)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:379)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.buildObject(ObjectLevelReadQuery.java:455)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.conformIndividualResult(ObjectLevelReadQuery.java:622)
    at oracle.toplink.queryframework.ReadObjectQuery.conformResult(ReadObjectQuery.java:339)
    at oracle.toplink.queryframework.ReadObjectQuery.registerResultInUnitOfWork(ReadObjectQuery.java:604)
    at oracle.toplink.queryframework.ReadObjectQuery.executeObjectLevelReadQuery(ReadObjectQuery.java:421)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:811)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:779)
    at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:388)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:836)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2604)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:950)

    Hi Lionel,
    As a general rule of thumb, the ATI Rage 128 Pro will not support a 20" LCD. That being said, there are reports of it doing just that (possibly the edition that went into the cube).
    I'm not that familiar with the ins and outs of the Cube, so I can't give you authoritative information on it.
    A good place to start looking for answers is:
    http://cubeowner.com/kbase_2/
    Cheers!
    Karl

  • Gathering Requirement for XI Implementation

    Hi Experts,
    My client need SAP Implementation in their comapny. For XI point of view what are the requirements need to Implement the XI ?
    Thanks & Regards
    Murali

    Murali,
    Get the inputs from the client on the landscape that they are using i.e. the various other systems that they have in their business and the system that are going to synchronize data with the SAP system.
    Depending on this input you can get a concrete idea on the integration part and the scenarios that the XI is going to handle.
    If in case there are some EDI systems which has to talk to the SAP system then possible an EDI SEEBURGER would also be needed for XI to integrate it with the SAP system.
    Thanks
    SaNv...

  • Resource requirement for EHS implementation

    Hi EHS Gurus
    I want to know the resource requirement and their skill set for EHS implementation & support project?
    As per my knowledge for implementation 4 consultants are required :-
    2 EHS consultants,1 MDM consultant,1 Abaper
    Please confirm it.
    Next do we require SD or MM conultant in EHS implementation or support prj?
    Thanks in advance.

    Hi,
    Estimation of Resource Requirement can be done  based Size of Business or scope document
    like No of plants and employess
    Which sub modules they are going to be implement like Product safety, Dangerous good management
    This module more related to MM and QM
    one ABAper required for New reports and Dat migration at Final configuration stage
    Thanks
    sreeni

  • How to print calendar for the year with one month a page in sharepoint 2010?

    Currently, I can print a SharePoint 2010 calendar one page at time when the month view is displayed.  Is there an easy way to print all the months at once with one month on each page?
    Thanks for any tips!

    I can't vouch for it but a useful looking CodePlex project might help with this.
    If you've permissions to install it and test, have a look at this. It does mention Calendars specifically too.
    http://spprintribbonbutton.codeplex.com/
    I'd be interested in your feedback for this one.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to install applications for multiple iPads with one ID?

    Hey guys,
    I have to prepare many iPads for work, and I've found the process to be very redundant. In order to ensure that the applications are tied to the ID of the final client, I have to first create an account under my email, download all the applications and then change the email to the client's. Now when I have to prepare another device, I have to delete the applications in iTunes and re-download them with a new account to make sure they are tied to the next ID. Is there a way to download and sync all the applications under one ID, and not have issue with updates in the future? Keep in mind I'm only installing free applications.

    I was referring in particular to the logs that are created by Workshop
    itself (in the workshop directory). It creates workshop.log and netui.log.
    Raj Alagumalai wrote:
    Steven,
    which workshop log file are you referring to ?
    the workshop log files are usually saved to the domain directory.
    If the developers are each going to start their own server instances then
    there should be no issues.
    The best option for you is to create multiple domains for each developer.
    They will share the same workshop installation, but they will each have
    their own instances.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Steven Ostrowski" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    What is the best way to install the WL 8.1 Platform for multiple
    developers on a single UNIX machine? These developers may start
    concurrent instances.
    The problems I see are that the log files generated by Workshop would
    be shared among concurrent users, permissions would need to be set so
    that the user that is running the instance that creates the log files
    will need to create the file with permissions that everyone can use. Are
    there any other issues to doing this?
    I could not find the information on this in the documentation.
    Thanks

  • System Requirements for SAP All-In-One

    Hi experts
    I am going to install SAP All-in-One for one of my client. I want to know about the system requirements for this, like hardware requirements and specifications, software required (OS and database).
    I was searching for the best practice set-up document in the portal,but i could not locate one.
    Kindly help
    Regards
    Louis

    Check
    Note 1331527 - AiO fast-start program:Questionnaire pre-installation info
    (and related notes)
    Markus

  • One portal instance for multiple hostnames with one of them using SSL

    Hi,
    Is it possible to use one Portal and Login Server instance for managing two hostnames (like www.site1.com and www.site2.com) of which one is using SSL. If yes, how do I do this? What do I need to configure?
    Thanks,
    Stijn

    There are procedures on the configuration guide under virtual
    hosts Chapter 5 in manual a90096-01. The manual is on the
    document site.

  • Solutions/Options for 100% uptime with Application Server

    what are the solutions/options available for 100% uptime with Oracle DB and application server as one of the business area requires 100% uptime of the application system and DB.
    Is there any cost effective options available to achieve the above stated requirement or else might to have to go for stand alone system?
    Thanks in advance for help.

    Hi,
    I would recommend you to take a look at the Oracle Application Server Enterprise Deployment Guide and Oracle Application Server High Availability Guide. Both are avaliable at http://download-west.oracle.com/docs/cd/B14099_15/index.htm.
    Regards,
    Mathias

  • Jdeveloper Version for MSCA development with MWA server based programming

    Any one Please provide the Oracle Jdeveloper version for Mobile Supply Chain Applications with MWA server based programming. This application basically runs on Whse mgmt responsibility. Any body who is developing this type application, please provide the Oracle Jdeveloper VERSION using for programming.
    Thanks,
    Deepak

    my issue is resolved. i'm getting this problem when i add just java class file to the project. but when i also add the business componets and page component and generate controller class to the project , i can see that import is recognized by the java class file. So i guess i have to delete all the unwanted business components that i have created at the end.
    Thanks
    Sunny
    Edited by: user13369509 on Mar 16, 2011 12:44 PM

  • Architecture for using MDB with a server cluster

              Hi,
              I would like to get some advice on the architecture that is the most desirable
              for a scenario that I have here.
              I have 3 machines, each running a managed server belonging to the same cluster.
              My admin server runs on a 4th machine. I have deployed my MDB on the cluster and
              I'm trying to find a way to configure the 3 + 1 machines to give the best end-to-end
              time for processing the JMS messages.
              To investigate this, I'm running some simple benchmark tests with a client application
              that sends JMS messages to the system. The client repeatedly sends messages to
              the MDB's queue and the MDB puts processed messages to another queue that the
              client is listening to.
              Now, my question is: where should I set the target for my JMS server (and hence
              my queues) and the connection factories? I can think of a few possiblities:
              1. Connection factories target: cluster; JMS server target: one of the servers
              in the cluster
              -> Potential drawback - The server with the JMS server will be handling and redistributing
              the JMS messages to other servers in the cluster. This means that a portion of
              its processing power is used to do this instead of actually having the MDB process
              the JMS message. (Please correct me if i'm wrong)
              2. Connection factories target: cluster; JMS server target: have one JMS server
              for each server in the cluster and make use of distributed destinations
              -> Potential drawback - My client establishes connection with the MDB's queue
              only once before it sends its messages to it. Probably as a result of this and
              the way WebLogic clusters load-balance themselves, all the messages end up being
              routed to the same server. This option appears to be out since 2 of the 3 servers
              are not utilized at all.
              3. Connection factories target: admin server; JMS server target: admin server
              -> Potential drawback - The MDB has to maintain a queue connection with a server
              that is not part of the cluster. (Again, please correct me if I'm wrong.) I'm
              not sure if this introduces extra time taken for the MDB to receive its messages
              and for it to send the processed messages to the queue.
              I'd appreciate it if someone could advice me on the most desirable architecture
              to use here. From my understanding of the problem, option 3 seems to be the answer,
              but I may be wrong. Perhaps there is no significant difference in terms of performance
              that 3 can give, compared to 1 and 2.
              One last question. I'd like to understand, in option 1, if the admin server plays
              any part in load-balancing the cluster. Are the JMS messages received on the cluster's
              JMS queue forwarded to the admin server before they are rerouted to the server
              that is supposed to process it?
              Cheers,
              C.Y.
              

    3. Connection factories target: admin server; JMS server target: admin          server
              > -> Potential drawback - The MDB has to maintain a queue connection with a
              server
              > that is not part of the cluster. (Again, please correct me if I'm wrong.)
              I'm
              > not sure if this introduces extra time taken for the MDB to receive its
              messages
              > and for it to send the processed messages to the queue.
              Admin server is not supposed to participate in the cluster. I wouldn't
              deploy anything on the admin server.
              I think my personal preferene would be connection factories to the cluster
              and use distributed destinations.
              Regards...
              

Maybe you are looking for

  • Songs showing up twice on my iPod

    Hello everyone. I am an organization junkie, and just jumped to the iPod from Zune. I can say already, I like the iPod itself better, but iTunes is really p*ssing me off. I just did a sync to my computer, and then noticed some of the songs I synced h

  • Can't eject disc

    I have a combo drive with a disc stuck in it. It sounds like a hardware problem. I have tried starting with the mouse button down, and also have tried ejecting through I-Tunes and through going into core functions in the library and putting the icon

  • To display output adjacent to each other

    Hi, I'm trying to display the following pattern 1 1 2 1 2 3 but when i tried something like this: declare i number; j number; begin for i in 1..3 loop for j in 1..i loop dbms_output.put_line(j); end loop; end loop ; end; i'm getting the output like t

  • Roller Coaster tycoon 3

    Hello. I do not know if it's a bug in the game itself, or whether it's my computer. But I bought rollercoaster tycoon 3 on my Macbook Pro and when I turn on the player and will put any trees that fill the 1x1 is the invisible. It also happens to buil

  • How to find size of ResultSet in JAVA

    hi , I have one problem... went for sun API but i did not get any solution....please any body help me... my problem is ...... I got the data from DataBase by executing a query . so my Resultset having some records.Now my problem is how to find the si