Multiple PIA/Application servers to one database?

We're planning an upgrade to PT 8.50, FSCM 9.1 and with this upgrade we want to add access for outside customers/vendors. What's the best way to configure an internal employee site/app, and a customer site/app to one production database? Is it as simple as installing different application servers and PIAs, point them all to the one database, and configure 1 PIA as EMPLOYEE and the others as CUSTOMER? Or should we also need use Portal 9.0? I've been doing some research into this, but was hoping to hear some real-world experience and advice from anyone else that's set up anything similar.
Thanks,
-rob

you can have a PIA built for outside customers hitting the same database.
you can even have separate PIA hitting same app servers and db.
If you are planning on having an external site outside your firewall - for CUSTOMER (portal) make sure the external site is built to work only for CUSTOMER portal.
u might also want to design your customer ID base - using specific permissions and roles.
hope this helps.
Subhash

Similar Messages

  • Create multiple portal instances with only one database?

    Can someone create multiple portal instances with only one database?
    If so, how is this done, just by running the portal configuration wizard?
    How are most people running with multiple developers working on portal? Do they share a portal instance, or create their own?
    Thank you very much!
    Phillip

    i'm currently using 9ias rel 2(9.0.2) and i have install one infrastructure and two mid tier, hoping that this will create two portal, but it didn't. Can you please tell me how to do create two portal within one server.
    thanks and regards;
    andrew

  • Sysresv returns multiple shared memory IDs for one database

    Shared Memory:
    ID KEY
    8 0x00000000
    9 0x00000000
    10 0x00000000
    13 0x00000000
    14 0xae2ae9d0
    Please see this 'sysresv' output. It returns multiple shared memory IDs for one database (althouth all are 0s except one). Why is this? Does it matter? It seems not eating up memory. Stop and start database didn't help.

    * System Configuration
    swap files
    swapfile dev swaplo blocks free
    /dev/md/dsk/d101 85,101 16 201342320 201342320
    * Tunable Parameters
    2055864320 maximum memory allowed in buffer cache (bufhwm)
    30000 maximum number of processes (v.v_proc)
    99 maximum global priority in sys class (MAXCLSYSPRI)
    29995 maximum processes per user id (v.v_maxup)
    30 auto update time limit in seconds (NAUTOUP)
    25 page stealing low water mark (GPGSLO)
    1 fsflush run rate (FSFLUSHR)
    25 minimum resident memory for avoiding deadlock (MINARMEM)
    25 minimum swapable memory for avoiding deadlock (MINASMEM)
    CO4P:/opt/oracle:>ipcs -ma
    IPC status from <running system> as of Monday, April 21, 2008 2:50:10 PM PDT
    T ID KEY MODE OWNER GROUP CREATOR CGROUP NATTCH SEGSZ CPID LPID ATIME DTIME CTIME
    Shared Memory:
    m 14 0xae2ae9d0 rw-r--- oracle dba oracle dba 481 24576 20322 25104 14:50:10 14:50:10 11:24:46
    m 13 0 rw-r--- oracle dba oracle dba 481 2030043136 20322 25104 14:50:10 14:50:08 11:24:43
    m 10 0 rw-r--- oracle dba oracle dba 481 2030043136 20322 25104 14:50:10 14:50:08 11:24:40
    m 9 0 rw-r--- oracle dba oracle dba 481 2013265920 20322 25104 14:50:10 14:50:08 11:24:37
    m 8 0 rw-r--- oracle dba oracle dba 481 2063597568 20322 25104 14:50:10 14:50:08 11:24:34
    m 0 0xcace --rw-rw-rw-     root     root     root     root      0          2  2344  2344 14:49:57 14:49:57  9:35:43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Use EMCLI to get list of Application Servers related to Databases?

    Hi,
    Is it possible to use EMCLI to get from OEM a list of Application Servers related to Databases? If not, is there another method recommended by Oracle?
    Thanks,
    Yoni

    Mohana,
    I want my Replication Program to:
    1. Create a copy of all objects stored in specific schema at the remote site in a local schema.
    2. Be able to replicate the addition and removal of records.
    Database link has been created between remote and local schema.You can query the remote site as if it is part of your local database and hence you can query the system tables to find out what objects are in remote site.
    When query the system tables i want to look for objects that are owned by HAROON.

  • Multiple Currency Applications sharing a currency database

    Is it possible to share a currency database among multiple essbase applications?

    not in the tradition sense where you create it in an application and it is linked to the standard DB. You could create a generic one and use partitions or xref to get the conversion rates from it.

  • Can FCS be set up in multiple offices - Would that be one database or can we synchronize several - I need general architecture concept

    Can FCS be set up in multiple offices/locations - Would that be one database or can we synchronize several databases - I need general architecture concept

    If you want to link to separated location which are too far from each other to connect via Ethernet or FC you can't. What you can do is build another FCS with a completely independent DB and link both with XML and scripting (or if you have a very good DB knowledge). Other than that you can put the FCS DB in one location and make the clients on the other connect to the first one. But if the issue is to ingest media from both locations to the same DB then you better have a nice and big Ethernet connection between both locations.
    Hope this help

  • Can XSQL create multiple session variables using only one database call?

    Right now if I want to set session variables for username and accesslevel, I code out like this:
    <xsql:set-session-param name="name" bind-params="username password">
    SELECT DISTINCT USERNAME
    FROM LKUP_USER
    WHERE USERNAME = ? AND PASSWORD = ? AND ACCESSLEVEL = 0
    </xsql:set-session-param>
    <xsql:set-session-param name="authlvl" bind-params="username password">
    SELECT DISTINCT ACCESSLEVEL
    FROM LKUP_USER
    WHERE USERNAME = ? AND PASSWORD = ? AND ACCESSLEVEL = 0
    </xsql:set-session-param>Is there any way to do it so that I don't have to do multiple queries to the database to set session variables? i.e., something like this:
    <xsql:set-multiple-session-param name="user authlvl" bind-params="username password">
    SELECT DISTINCT USERNAME,
    ACCESSLEVEL
    FROM LKUP_USER
    WHERE USERNAME = ? AND PASSWORD = ? AND ACCESSLEVEL = 0
    </xsql:set-multiple-session-param>Sort of like how bind-params works. Setting bind-params="username password" makes the first ? akin to username and the next ? akin to password.
    Is this functionality already in existence?
    Thanks!
    Malik Graves-Pryor

    Not currently possible to collapse into one request without doing it in a custom action handler.
    A custom action handler can:
    [list=1]
    [*]Get the current JDBC connection from the XSQLPageRequest
    [*]Get the SQL statement to perform using the function getActionElementContent
    [*]Handle any bind parameters specified an a bind-params attribute on the action element by calling handleBindVariables()
    [*]Execute and fetch the row from the query
    [*]Check to see that the return value of getPageRequest().getRequestType() equals the value "Servlet"
    [*]Cast the page request to an XSQLServletPageRequest and call getHttpServletRequest()
    [*]Call getSession() on the request
    [*]Set the session variables you want to
    [*]Close the JDBC statement
    [list]
    will consider a built-in enhancement for a future XSQL release.

  • Clone and consoliate all application servers to one??

    we are doing clone EBS system testing. our EBS system is following:
    1. database server
    2. primary application server -- all modules except batch process
    3. secondly application server -- all modules except batch process
    4. addition application server -- batch process only
    after clone we plan have following structure:
    1. database server
    2. application server -- all modules
    Is it possible?
    How to do it?
    Thanks.

    Yes, it is possible. Refer the following note (Reducing the number of nodes of a multi-node system (merge APPL_TOP)).
    Note: 230672.1 - Cloning Oracle Applications Release 11i with Rapid Clone
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230672.1

  • Multiple stand alone servers using one radius server?

    Hello, I have a question.
    I'm working for a company and our problem is we need a username and password for every server.
    We would like to set up a Radius server using an extension so it can use a SQL database for the users.
    Is it possible to put 1 username and 1 password for each user in this database so we don't need more then one for each server?
    Also can we set up policy's for those users so they can't access every stand-alone server.
    Kind Regards,
    Michael

    Hi,
    Based on my research, when a RADIUS client (access server) sends connection requests and accounting messages to a RADIUS server, the RADIUS server will sends back an Access-Accept message or sends back an Access-Reject message to authenticate and authorize
    the connection requests based on a set of rules and the information in the user account database. The Access-Accept message can contain connection restrictions that are implemented by the access server for the duration of the connection.
    In addition, according to your description, it seems that you used the SQL database as the User account database. Did you use NPS as a RADIUS server? If yes, maybe you can configure related network policy to restrict access. I would appreciate it if you can
    introduce more detailed information about your environment. The link below may be helpful:
    Configuring Microsoft NPS (Network Policy Server) / (Internet Authentication Service)IAS as Wireless LAN Controller (WLC) RADIUS Server
    Best regards,
    Susie

  • Check SITSPMON at multiple application servers at once

    Dear Sirs,
    we are in a setting with close to 10 application servers. To the memory consumption and current status on my system, I need to check SITSMON on every application server.
    Is there an easy way to get a STISPMON like (e.g watch memory) on all the application servers in one go?
    best regards,
    Jørgen

    Dear Jørgen,
    at the moment we do not have an easy way to monitor more than one application server  within SITSPMON. I am the developer of SITSPMON and happy to read your question. I do agree in your wish to have a feature like this.
    How to implement? I would suggest to provide an additional check box in the dialog panes for
    *the memory staistics,
    *the HTML templates cache directory, and
    *the Mutex lock statistics.
    This checkbox allows to switch between 'system' and 'application server mode' checking it will result in an enhaced table, containing an additional column for the appl server...
    Do you agree? Better ideas? If this fits to your  requirement, I will implement this. And ideas are welcome always.
    BTW: Did you already check the CCMS? There a technical experts monitor for the internal ITS. This might be helpful four you.
    best regards
    Tobias

  • More than one Database Server on one host

    Hallo,
    We want to implement two systems on one host with MaxDb as database. I know it is possible to run 2 DB-Instances on one host, is it possible to upgrade or patch one instance without inflicting the other one with this changes?
    For example:
    I have the development and test system on one host with two database instances running. is it possible to only upgrade the Database Instance of the Development System without upgrading the test instance.
    I know it is possible in Oracle but is this also possible for MaxDB?
    I hope you can give me an answer.
    best regards,
    Patrick Volny

    Hello Patrick,
    1) "If I understand you correctly, I am able to patch each Instance separately but because the instances share the same kernel to upgrade an Database I have to upgrade all instances?"
        Answer: You can update the database instance separately.
                       As the independent database software is shared between database instances, located in /sapdb/programs by default installation and it's downward compatible
                      ==>
                      you could upgrade only one database instance & run the another database instance with the higher version of the independent database software.
       Warning: Please follow the recommended structure of the database software installation & install the dependent on the version of the database system software once for each database instance.
                      By default it's installed in /sapdb/<SID>/db
        Example : On the local server ::
    dbmcli db_enum
    OK
    SC1#C:\sapdb\sc1\db                        #7.6.04.11#fast#running
    SC1#C:\sapdb\sc1\db                        #7.6.04.11#slow#offline
    LVC750#c:\sapdb\lvc750\db                     #7.6.00.21#fast#offline
    LVC750#c:\sapdb\lvc750\db                     #7.6.00.21#slow#offline
    xinstinfo SC1
    IndepData           : C:\sapdb\data
    IndepPrograms       : C:\sapdb\programs
    InstallationPath    : C:\sapdb\sc1\db
    Kernelversion       : KERNEL    7.6.04   BUILD 011-123-181-372
    Rundirectory        : c:\sapdb\data\wrk\SC1
    xinstinfo LVC750
    IndepData           : C:\sapdb\data
    IndepPrograms       : C:\sapdb\programs
    InstallationPath    : c:\sapdb\lvc750\db
    Kernelversion       : KERNEL    7.6.00   BUILD 021-123-117-795
    Rundirectory        : c:\sapdb\data\wrk\LVC750
    In my case, I have installed two database instances of the versions 7.6.00   BUILD 021 and 7.6.04   BUILD 011 on one server,
    Independent database software is installed in C:\sapdb\programs and each database instance has own InstallationPath.
    And you could run also 'sdbregview -l' to get the short list of all installed database packages, pay attention to the "Database Kernel" package
    for the dependent database software installation path/version.
    2) "I also read that to patch an instance you have to stop an x server service. But this service is necessary for the communication between applications and the database. so if i patch an instance the second one can't work properly?"
    The X Server is needed for the client to establish the connection to a database instance located on a remote computer. As you know the X Server is the communication server for the database system. The X Server listens out for connection requests from clients such as database applications and database tools.
      As I already wrote you, that the independent database software is downward compatible & you should not have the problems with the communication to the Test database on the TEST system.
      I case you would like to know more details about the database version software, if there are any known problems, please update with additional information::
          What are the current versions of the DEV and Test databases?
          Did you install the application servers on the database server or not?
          To what version of the database are you going to update the DEV database instance?
           What is the version/SP of the SAP basis on the TEST system?
            What is the version/patch of the SAP kernel on the TEST system?
    3) The installation distinguishes between different software directories, as you already know. 
    For example, the following directories:                                                              
           - <independent_program_path>                          
              SAP Standard:/sapdb/programs    
              Run the command 'dbmcli -s dbm_getpath IndepProgPath' or 'xinstinfo' to get the current value on your system.   
              !!!! This directory contains instance- or version-independent software that works downwardly-compatible.                          
           -  <independent_data_path>                                                                
              SAP Standard:/sapdb/data   
               Run the command 'dbmcli -s dbm_getpath IndepDataPath' or 'xinstinfo' to get the current value on your system.                                                           
           -  <independent_data_path>/config                                                         
              SAP Standard:/sapdb/data/config        
           -  <InstallationPath>                                                                               
    SAP standard: /sapdb/<SID>/db          
           -  <run_directory>                                                                               
    SAP standard: /sapdb/data/wrk/SID                                     
    If you are SAP customer,
    please see the SAP notes::
                 1020175     FAQ: MaxDB installation, upgrade or applying a patch
                 820824     FAQ: MaxDB / SAP liveCache technology
                 767598          Available documentation
    && SAP documentation link:
    http://help.sap.com/saphelp_nw04/helpdata/en/23/d1a03cc24efd1de10000000a114084/frameset.htm                                                                           
    Thank you and best regards, Natalia Khlopina

  • MDM 7.1 SP7, Install Several Instances in one database?

    Hello,
    we are investigating to install MDM 7.1 Sp7 with several instances to separate impact in different repositories, but with one database (oracle). Has someone done this kind of installations? Has it improved stability?
    Regards,
    Alexander Türk

    Hello,
    This clearly says, it adds a new, but nothing of multiple instances.
    For an MDM environment to work, we require three Servers, Master Data Server(MDS), Import Server(MDIS), Syndication Server(MDIS).
    MDIS and MDSS run in conjunction with MDS.
    This refers to the multiple instances, but in all it will an single installation across environment.
    You will have the basic Development, Quality and production, each will have a different installation.
    an extract from help.sap.com site
    Support for Installing and Running Multiple MDM Server Components on a Single Machine
    Starting from MDM 7.1 SP06, you can install and run multiple MDM server components on one physical machine.
    One advantage of installing multiple MDM server components on a single machine, as opposed to loading multiple MDM repositories on a single Master Data Server (MDS), is that parallel execution of imports/syndications to/from loaded MDM repositories is possible. Another advantage is that you can have two repositories for separate projects on two different MDM versions on the same machineu2014resulting in reduced TCO. (In previous releases you would be required to separate the repositories on two different MDM servers, and adhere to the recommendation that the Master Data Import Server (MDIS) and Master Data Syndicator Server (MDSS) be run on a separate machine from the Master Data Server (MDS)).
    Each Master Data Import Server (MDIS) and Master Data Syndicator Server (MDSS) must be configured to work with one particular MDS only.
    You can distribute the MDM server components according to the following hardware configuration options:
    ●      Multiple Master Data Servers on one machine with remote MDM Import/Syndication Servers on a second machine, and a DBMS on a third machine.
    ●      Multiple Master Data Servers and MDM Import/Syndication Servers on one machine with a remote DBMS on a separate machine.
    ●      Multiple Master Data Servers, MDM Import/Syndication Servers, and a DBMS all on one machine.
    Test results show that hardware sizing parameters are almost identical for all the aforementioned configuration options; therefore the configuring option you choose should be based solely on your preferred hardware setup.
    More information:
    ●      http://service.sap.com/installmdm71 ® MDM 7.1 Installation Guides for Windows and UNIX (see updated section: Maintaining Multiple MDM Servers on a Host)
    ●      http://service.sap.com/installmdm71 ® MDM 7.1 Sizing Guide (see new section: Configuration Options for MDM Server Components)
    Regards,
    Abhishek
    Edited by: Abhishek Biwal on Feb 21, 2012 3:30 PM
    Edited by: Abhishek Biwal on Feb 21, 2012 4:56 PM

  • SAP R/3 Enterprise : Background job run on application servers

    Hello All,
    For our SAP system (SAP_BASIS 620, SAP_ABA 620,SAP_APPL 470), there are 5 application servers and one central instance.
    We have a  Background job that connects to external non sap system for data delivery via RFC of Type "G" i.e.HTTP Connection to Ext. Server with port 443 . RFC works fine.
    In transaction STRUST, SSL certificates are also installed to enable the https connectivity from R3 system.
    Our current issue is that background jon runs on one of the application server correctly and is able to transfer that data to external system. However if same job runs on other 4 application server, it fails to connect to external server and throws error:
    RFC Destination XXXX not defined
    407 Unknown error
    Failed to store the XML content
    Error in the XML document: 1301540.xml
    407 Unknown error
    This is very starnge for us .RFC is working correctly every time but background job works on one AS and not on other AS.
    Where and What can be the difference in application servers.
    Please help to send in ur replies. Thanks
    Edited by: Chetna  Verma on Apr 27, 2011 1:46 PM

    Hi,
    Is there a firewall between the non SAP system and the SAP system ? It could be that firewall rules have only been set for one only of the SAP application servers ?
    Did you check the HTTP connections from each application server ?
    Did you check that the ICM is running on each SAP application server ?
    Regards,
    Olivier

  • How to configure single web server instance to multiple application servers..

    Hi all,
    we are running single instance of IWS6.0 SP2 on solaris, we want to comfigure this single instance to multiple application servers(JRun). Can any one advise me whether it is possible to do.
    Thanks
    Raj

    Hi Raj,
    "how to configure single web server instance to multiple application servers.."
    It's not possible for setting up multiple applicataion servers for Single iWS instance.
    Thanks,
    Dakshin.

  • Load balancing across multiple application servers not working with JCo RFC

    We have a problem where inbound messages to the Mapping Runtime engine (ABAP -> J2EE) are not load balanced over application servers. However, load balancing does take place across server nodes within one application server.
    Our system comprises of the following:
    Central Instance (2 X server nodes)
    Database Instance
    2 X Dialog Instances (with 2 X server nodes each)
    The 1st application server that starts is usually the one that is used for inbound messaging.
    We have looked at the sap gateway configuration and have tried various options without much luck:
    i.e.: local gateways vs. one central gateway, load balancing type by changing parameter gw/reg_lb_level, see: http://help.sap.com/saphelp_nw70/helpdata/EN/bb/9f12f24b9b11d189750000e8322d00/frameset.htm
    Here are our release levels:
    SAP_ABA     700     0012     SAPKA70012
    SAP_BASIS     700     0012     SAPKB70012
    PI_BASIS     2005_1_700     0012     SAPKIPYJ7C
    ST-PI     2005_1_700     0005     SAPKITLQI5
    SAP_BW     700     0013     SAPKW70013
    ST-A/PI     01J_BCO700     0000          -
    Any help would be greatly appreciated.
    Many thanks

    Tim
    Did you follow the guide here:
    How to Scale Up SAP Exchange Infrastructure 3.0  
    Learn what the most likely scaled system architecture looks like, and read about a step by step procedure to install additional dialog instances. The guide also walks you through additional configuration steps and the application of Support Package Stacks.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c3d9d710-0d01-0010-7486-9a51ab92b927
    We followed this guide for XI3.0 and PI7.0 and works successfully!

Maybe you are looking for

  • Firefox will not open new window, Why?

    I have Vista home base premium operating system. I am a regular user of Mozilla firefox after had lots of positive feedback as one of the best browser. I had no problem for a good while, until recently I found out my add-on firebug stop working. Then

  • Save as dialog not showing files on a AFP share in CS2

    I have a user who is not able to see any files or folders on an AFP share (SFM on Windows 2003) when attempting to Save As. The files are visible in the finder, terminal, it is not a permissions issue, and I have trashed permissions. Any ideas? Are t

  • What causes ipod to go into disk mode

    I have an older ipod nano and out of the blue for no reason the other day when i picked it up it said something about how i needed to use itunes to restore. When i plug the ipod into itunes in says something about corrupted files and the ipod needs t

  • Java.lang.NullPointerExecption error with ExecuteWithParam data control

    Hello, my application has a database connexion ; with the wizards, I made a Businness Components from Tables ; after that, I've changed the querry of my one and only View (btw, there are 4 entity objects). I put on a view criteria with a bind variabl

  • HR Minimaster data - Data Transfer from HR 4.7 to ECC 6.0

    The requirement is : We need to validate the Travel requests raised in 'Travel management' module (SAP ECC 6.0) against the employee details present in other HR system( SAP 4.7). The client does not maintain any HR data in ECC 6.0 system and he wants