Design and configuration tips & suggestions

This is the current configuration of switches I have setup on our network. Its about 150 miles long(east-west) and about 20 miles wide(north-south). All of the locations are connected via a wireless bridges(trango, tranzeo, smartbridges) or via an ISP private vlan. Currently I have the 3550's connecting to each other via ospf and they are all doing inter vlan routing. The 3550 at location 20(3550-20) is I guess one of the main switches. Its located at the data center and it has the most connections to other wirelessly connected buildings. I have it configured to do pbr to 4 different DSL connections and it also has the switches from the data center connected to it. The small to medium sized locations have 2950's or 2960's.
To give you an idea of what is all going on now:
18 Wireless Bridges
1200 Workstations
30 Servers
3000 Users
21 Mbit of internet access
200 Gig's of Data being Backed up over night
1 Local server at each location
We are planning on implementing a video conferencing system soon as well as voice services in the future.
What I would like to know is what is the best configuration for these switches to prepare them for video conferencing, data connections and maybe voice?
Vlan Configurations?
Trunking?
Routing?
QOS?
Any ideas or suggestions on configurations would be great. I want to make sure I go about this the right way the first time so I'm not reconfiguring when we want to setup the video or voice services.
Thanks,
Dan.

Hi,
when designing and implementing a video and voip network there are many things to consider. So I will not try to list some of them but would recommend you to read through
1) "IP Videoconferencing Solution Reference Network Design (SRND)"
http://www.cisco.com/application/pdf/en/us/guest/netsol/ns280/c649/ccmigration_09186a00800d67f6.pdf
2) "Enterprise QoS Solution Reference Network Design Guide Version 3.3"
http://www.cisco.com/application/pdf/en/us/guest/netsol/ns432/c649/ccmigration_09186a008049b062.pdf
3) "Campus Network Multilayer Architecture and Design Guidelines"
http://www.cisco.com/application/pdf/en/us/guest/netsol/ns656/c649/cdccont_0900aecd804ab67d.pdf
QoS will be needed in any case and there are separate chapters regarding your different Catalyst switches.
Generally VoIP will be transported in separate Voice VLANs interconnected through IP routing. So you should also have a look into your overall LAN design. 3) gives you a guidance to a robust modern switching design.
Hope this helps!
Regards, Martin

Similar Messages

  • Force Integration Builder (Design and Configuration) language to be English

    Hi Experts!
    Does anyone know how to force the Integration Builder (Design and Configuration) language to be English? Since SSO is configured the logon screen do not appear and users can not choose the language they want. The problem is that the default language is German instead of English.
    Thanks in advance.
    Roger Allué i Vall

    Hi,
    I've changed these parameters in the ExchangeProfile:
    com.sap.aii.directory.serviceuser.language
    com.sap.aii.integrationserver.serviceuser.language
    com.sap.aii.ib.client.login.languages
    com.sap.aii.ib.client.content.languages
    com.sap.aii.adapterframework.serviceuser.language
    com.sap.aii.rwb.serviceuser.language
    com.sap.aii.applicationsystem.serviceuser.language
    com.sap.aii.docu.languages
    com.sap.aii.repository.serviceuser.language
    Now all they have the value EN. I also restarted the applications (Server --> Services --> Deploy) :
    sap.com/com.sap.aii.af.app
    sap.com/com.sap.aii.af.cpa.app
    However, nothing changed. Maybe I have to restart all the J2EE Engine?
    Thanks in advance.
    Roger Allué i Vall

  • PI B2B RNIF interface design and configuration

    Hello All,
    can anybody send me details of design steps and configuration steps in detail for RNIF 2.0 framework for PIPS
    Preferably Rosettanet 7B1 WIP Tracking, Rosettanet 3B12 Shipping Request
    thx
    mike

    Any body who can guide me the steps in ESR for RNIF PIP interfaces. I am expecting step by step instructions.
    Thank you very much!!
    mike

  • JMS/clustering design and configuration question

    Hi:
              Any help or feedback much appreciated cos' this topic (no pun intended)
              seems to be complicated.
              I have an application that uses stateless session beans for mainline
              business functionality (heavy database writing) that is say then
              audited. The auditing is taken care of asynchronously by the SS bean's
              business method (after completing whatever it is doing) using a JMS
              connection factory to write to a queue which is consumed by a MDB. So,
              control is returned to the user ostensibly before the auditing is done
              for performance reasons. No transactional semantics are expected between
              the mainline business logic and the audit of same. So, our main use of
              JMS/MDB is for asynchrous operation. This design seems to be fine on a
              single server as long as a persistent store is configured.
              Now the hard part. We need to cluster - again for load-balancing and
              performance. As I've read thru this newsgroup and experimented some,
              I've quickly realized that it's not as simple as just configuring a
              cluster of just EJBs.
              Since the queues are basically used for asynch processing, would the
              following work?
              1) Set up a JMS server config for each WL server in the cluster targeted
              only for each WL server
              2) Set up a different queue for each JMS server with prefixed JNDI name
              (myserver1_someJNDIname)
              3) Configure/code the producer SS EJBs so that they ask the connection
              factory for a connection with a prefixed JNDI name (e.g
              myserver1_someJNDIname) based on the server they are running on (known
              perhaps from a property file local to each server)
              4) Target MDBs to be deployed on all servers in the cluster just like
              regular EJBs
              5) Finally, deploy the MDBs unjarred on each WL server and edit the
              weblogic-ejb-jar.xml on each server to set the -destination name-
              prefixed by the server on which it is deployed (e.g.
              myserver1_someJNDIname)
              Will the above basically accomplish what I'm after, which is a cluster
              of machines each equally capable of locally offloading asynchronous
              processing? I understand that for the most part WL server will use local
              EJBs, etc if they are available. I'm not particularly interested in
              failover at either EJB or JMS level, but rather HttpSession level so
              that if a WL server goes down another could pick up perhaps by by the
              user re-requesting whatever operation failed.
              If this is not possible because of the way clustering works (homogenous)
              then is there some other way to solve this problem. I basically do not
              want a cluster where there is a single point of failure (other than DB
              server) for any given piece of functionality.
              Thanks for any help.
              Alex
              

    First and easiest,
              Just create a set of JMS tables for each server in your db. You can specify
              a JMS tablename prefix in your weblogic properties for eash server using
              weblogic.jms.tableNamePrefix=W5
              as long as the prefix is only two chars. This worked great for us until we
              decided to drop JMS because of its memory leaks. We were having to restart
              our servers every 8 hours.
              Second, get rid of JMS. Dirty little secret:You don't need JMS to do
              asynchronous work! You can use threads inside of J2EE and not break J2EE.
              Can't tell you how for proprietary reasons but you can.
              Mica Cooper
              

  • Designing and configuring remotely in XI 3.0

    Is it possible to have XI editors installed remotely so the XI config and development teams can access the repository and directory on a server where all the other XI components are installed? Do we have a web interface option instead of the remote client option that can be used for XI configuration and development?

    Hi,
    As along as javaVM and JavaWebStart is installed on a machine, one can
    access XI tools. For example IR and CD can be accessed using the following links.
    IR
    http://<server>:<port>/rep/start/repository.jnlp
    CD
    http://<server>:<port>/dir/start/directory.jnlp
    Naveen

  • I am unable to save a service work order designated and configured as MRS work order

    Every time I try to create a SM work order, and save it, I get the following message"
    Error in the ABAP Application Program
        The current ABAP program "/MRSS/SAPLRSG_PM_ORDER" had to be terminat
         it has
        come across a statement that unfortunately cannot be executed.
        In include "/MRSS/LRSG_PMCS_APPSCHEDF02 ", in line 93 of
    "/MRSS/SAPLRSG_PMCS_APPSCHED             ", the following syntax er
        have occurred:
        The row type of the table "G_APPOINTMENT_LIST" is not compatible wit
        field symbol type "<APPOINTMENT_LIST>".
        Author and last person to change the include are:
        Author         SAP
        Last changed by "SAP         "
    Any help or advise that would allow me to successfully create the work order and then open the planning board to view both the demand and the resources? I would appreciate any help. Thanks

    Hi Hussein,
    I found a SAP note 2030049 that is relevant to the problem: http://service.sap.com/sap/support/notes/2030049
    But when attempting to implement the note, it showed a syntax error.
    Will likely log this with SAP for resolution.
    Regards, Warren

  • Zip/unzip desing and configuration

    Hi,
    I need to implement zip/unzip file to file scenario . can u help me complete design and configuration steps .I mean how to deploy java code. and designing in IR and how to configure in ID.
    thanq
    krishna

    Hi,
    You Do not need to Provide any JAVA Code For the same.
    SAP Provides Standard Modeules to DO so.
    Use the PaYLoadZipBean module.  
    Have a look at the SAP help link:
    [http://help.sap.com/saphelp_nw70/helpdata/en/45/da9358a1772e97e10000000a155369/frameset.htm]
    just a Few Points to remember:
    1. Place this  Before the call to Standard SAP module in case you want to Unzip the payload in the Sender Side
    2. Place it after the SAP Standard module in the receiver side.
    Hope this helps.
    Reward points if useful
    Regards,
    Abhishek

  • Does anyone have a suggestion for an alternative to iCal that will interface with the Cloud? I find iCal to be poorly designed and not very efficient.

    Does anyone have a suggestion for an alternative to iCal that will interface with the Cloud so it works on the iPhone and the Macbook? I find iCal to be poorly designed and not very efficient. I waste a lot of time entering information because you can't go to a specific day and enter information, nor can you navigate between months and add information on a specific date by clicking on the date. You can't easily scroll month-to-month and once you do by scrolling through nine months to get to where you want to be, you cannot enter information by clicking on a specific day in the month and entering information. I just called Apple and they verified that this is the way it works. You cannot go to a date and enter information, you keep getting thrown back to today and then you have to go into the calendar and change it manually on the screen. It is just not efficient.

    APC, CyberPower are reliable.
    Look for 1500VA. As example:
    APC
    http://www.amazon.co.uk/APC-Back-UPS-Pro-1500-Connector/dp/B0041MP81Y/
    Cyperpower:
    http://www.amazon.co.uk/Dell-CyberPower-Intelligent-LCD-1500VA/dp/B005DL5L50/

  • Configuration Error 16 on Creative Suite 6 Design and Web Premium

    Hello,
    I recently began receiving a Configuration Error 16 message when I attempt to launch any of the CS6 applications.
    I attempted to follow the instructions here:
    http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html
    However, when I attempted to go to the SLStore and Adobe PCD folders in Finder, I discovered that neither folder actually exists.  (I'm guessing this may be a key cause of the problem.)
    I am wary of uninstalling and reinstalling, simply because I was provided a free download of CS6 Design and Web Premium by the University of California, Berkeley, which I attend.  I can produce my software license number upon request.
    Simply, how do I go about fixing this problem?  If a full uninstall and reinstall are the solution, will I be able to do so freely?
    I am using Mac OS 10.8.4
    Thank you very much,
    Chad

    Have a look here, looks like it may be a permissions issue:
    http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html

  • Oracle Express Tips/Whitepapers on Design and Performance ?

    Hi all,
    I was wondering if someone could please provide me with some information to
    find
    Articles / White Papers / Tips on Oracle Express, design and performance
    tuning etc.,
    Thanks for your help in advance.
    RN
    null

    Following this link i thik that you can find what you are looking for.
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showNOT?p_id=131949.1&p_showHeader=1&p_showHelp=0
    Bye Luigi

  • Design and Testing Suggestions for Different Screen Resolutions

    Intermediate Dreamweaver CS3 user, in need of "Design and Testing Suggestions for Different Screen Resolutions".
    Thank you, J. Chavez

    Adobe Browser Labb and BrowserShots.org

  • Installing and configuring Warehouse design and runtime repositories

    Hi,
    My topology is this:
    machine 1: Oracle database 9i (source data): instance: dbprod
    machine 2: Oracle database 10gR2: instances: owbdes and owbrun
    I have installed Oracle Warehouse builder 10.2 on machine 2. The implementation is as follows:
    I want to create a design repository on instance owbdes and a runtime repository on owbrun.
    The design repository on owbdes will contain the metadata from source dbprod and the metadata is intended to be deployed on owbrun.
    I am confused about the creation of repositories. Could someone send me detailed information about this?
    I know I have to run the OWB repository assistant on both owbdes and owbrun, but I don't know how to configured them in order to be the design and runtime repositories.
    For example when running the repository assistant I choose Advanced Setup, but do I have to create a new Repository owner for each database instance? Do I have to create the same target schemas on both instances?
    Please help me.
    Thanks in advance.

    I know I have to run the OWB repository assistant on both owbdes and owbrun, but I don't know how to configured them in order to be the design and runtime repositories.Yes, you should create OWB repository on the each server. During development you usually connect (with OWB Design Center) to design repository, but when you want to register new target schema you should connect with OWB client to runtime repository.
    Also you need to register Control Center (located on owbrun) in Design Center (when connected to design repository) from Connection Explorer, then you should modify Configuration for each of your OWB project - change Control Center from DEFAULT_CONTROL_CENTER to new.
    For example when running the repository assistant I choose Advanced Setup, but do I have to create a new Repository owner for each database instance?Yes, you need to create repositor owner on each DB instance.
    Do I have to create the same target schemas on both instances?No, you should create target schema only in target database instance
    Also read this threads, hope they will be helpful
    How to create a runtime repos in 10gR2
    OWB Standalone Target Schema - Split Architecture
    Regards,
    Oleg

  • Need quick TIP: remove "Copy access and configuration settings" from added package

    I added a modified package in APPVMAN with the option "Copy access and configuration settings".
    Package is unpublished. But shows AD groups as a current package because I used the option "Copy access and configuration settings"
    QUESTION:
    How to Remove (and then add) the option "Copy access and configuration settings" from added package.
    Cannot find it.
    Thanks.
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

    sorry for the panic :)
    before publishing an updated package to existing groups of initial package I hit the option
    "Copy access and configuration settings".
    But first I wanted to test it for TEST group. Didn't think that AD settings will be applied (do it first time).
    Just to confirm:
    1. I will remove current groups from updated(unpublished package)
    2. Will add Test group and test the package.
    3  In case it is OK I can then add removed(needed) groups.
    I want to be sure that after removing and adding needed groups all other settings will be intact.
    Thanks.
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

  • CONCURRENT MANAGER SETUP AND CONFIGURATION REQUIREMENTS IN AN 11I RAC ENVIR

    제품 : AOL
    작성날짜 : 2004-05-13
    PURPOSE
    RAC-PCP 구성에 대한 Setup 사항을 기술한 문서입니다.
    PCP 구현은 CM의 workload 분산, Failover등을 목적으로 합니다.
    Explanation
    Failure sceniro 는 다음 3가지로 구분해 볼수 있습니다.
    1. The database instance that supports the CP, Applications, and Middle-Tier
    processes such as Forms, or iAS can fail.
    2. The Database node server that supports the CP, Applications, and Middle-
    Tier processes such as Forms, or iAS can fail.
    3. The Applications/Middle-Tier server that supports the CP (and Applications)
    base can fail.
    아래부분은 CM,AP 구성과
    CM과 GSM(Global Service Management)과의 관계를 설명하고 있습니다.
    The concurrent processing tier can reside on either the Applications, Middle-
    Tier, or Database Tier nodes. In a single tier configuration, non PCP
    environment, a node failure will impact Concurrent Processing operations do to
    any of these failure conditions. In a multi-node configuration the impact of
    any these types of failures will be dependent upon what type of failure is
    experienced, and how concurrent processing is distributed among the nodes in
    the configuration. Parallel Concurrent Processing provides seamless failover
    for a Concurrent Processing environment in the event that any of these types of
    failures takes place.
    In an Applications environment where the database tier utilizes Listener (
    server) load balancing is implemented, and in a non-load balanced environment,
    there are changes that must be made to the default configuration generated by
    Autoconfig so that CP initialization, processing, and PCP functionality are
    initiated properly on their respective/assigned nodes. These changes are
    described in the next section - Concurrent Manager Setup and Configuration
    Requirements in an 11i RAC Environment.
    The current Concurrent Processing architecture with Global Service Management
    consists of the following processes and communication model, where each process
    is responsible for performing a specific set of routines and communicating with
    parent and dependent processes.
    아래 내용은 PCP환경에서 ICM, FNDSM, IM, Standard Manager의 역활을 설명하고
    있습니다.
    Internal Concurrent Manager (FNDLIBR process) - Communicates with the Service
    Manager.
    The Internal Concurrent Manager (ICM) starts, sets the number of active
    processes, monitors, and terminates all other concurrent processes through
    requests made to the Service Manager, including restarting any failed processes.
    The ICM also starts and stops, and restarts the Service Manager for each node.
    The ICM will perform process migration during an instance or node failure.
    The ICM will be
    active on a single node. This is also true in a PCP environment, where the ICM
    will be active on at least one node at all times.
    Service Manager (FNDSM process) - Communicates with the Internal Concurrent
    Manager, Concurrent Manager, and non-Manager Service processes.
    The Service Manager (SM) spawns, and terminates manager and service processes (
    these could be Forms, or Apache Listeners, Metrics or Reports Server, and any
    other process controlled through Generic Service Management). When the ICM
    terminates the SM that
    resides on the same node with the ICM will also terminate. The SM is ?hained?
    to the ICM. The SM will only reinitialize after termination when there is a
    function it needs to perform (start, or stop a process), so there may be
    periods of time when the SM is not active, and this would be normal. All
    processes initialized by the SM
    inherit the same environment as the SM. The SM environment is set by APPSORA.
    env file, and the gsmstart.sh script. The TWO_TASK used by the SM to connect
    to a RAC instance must match the instance_name from GV$INSTANCE. The apps_<sid>
    listener must be active on each CP node to support the SM connection to the
    local instance. There
    should be a Service Manager active on each node where a Concurrent or non-
    Manager service process will reside.
    Internal Monitor (FNDIMON process) - Communicates with the Internal Concurrent
    Manager.
    The Internal Monitor (IM) monitors the Internal Concurrent Manager, and
    restarts any failed ICM on the local node. During a node failure in a PCP
    environment the IM will restart the ICM on a surviving node (multiple ICM's may
    be started on multiple nodes, but only the first ICM started will eventually
    remain active, all others will gracefully terminate). There should be an
    Internal Monitor defined on each node
    where the ICM may migrate.
    Standard Manager (FNDLIBR process) - Communicates with the Service Manager and
    any client application process.
    The Standard Manager is a worker process, that initiates, and executes client
    requests on behalf of Applications batch, and OLTP clients.
    Transaction Manager - Communicates with the Service Manager, and any user
    process initiated on behalf of a Forms, or Standard Manager request. See Note:
    240818.1 regarding Transaction Manager communication and setup requirements for
    RAC.
    Concurrent Manager Setup and Configuration Requirements in an 11i RAC
    Environment
    PCP를 사용하기위한 기본적인 Setup 절차를 설명하고 있습니다.
    In order to set up Setup Parallel Concurrent Processing Using AutoConfig with
    GSM,
    follow the instructions in the 11.5.8 Oracle Applications System Administrators
    Guide
    under Implementing Parallel Concurrent Processing using the following steps:
    1. Applications 11.5.8 and higher is configured to use GSM. Verify the
    configuration on each node (see WebIV Note:165041.1).
    2. On each cluster node edit the Applications Context file (<SID>.xml), that
    resides in APPL_TOP/admin, to set the variable <APPLDCP oa_var="s_appldcp">
    ON </APPLDCP>. It is normally set to OFF. This change should be performed
    using the Context Editor.
    3. Prior to regenerating the configuration, copy the existing tnsnames.ora,
    listener.ora and sqlnet.ora files, where they exist, under the 8.0.6 and iAS
    ORACLE_HOME locations on the each node to preserve the files (i.e./<some_
    directory>/<SID>ora/$ORACLE_HOME/network/admin/<SID>/tnsnames.ora). If any of
    the Applications startup scripts that reside in COMMON_TOP/admin/scripts/<SID>
    have been modified also copy these to preserve the files.
    4. Regenerate the configuration by running adautocfg.sh on each cluster node as
    outlined in Note:165195.1.
    5. After regenerating the configuration merge any changes back into the
    tnsnames.ora, listener.ora and sqlnet.ora files in the network directories,
    and the startup scripts in the COMMON_TOP/admin/scripts/<SID> directory.
    Each nodes tnsnames.ora file must contain the aliases that exist on all
    other nodes in the cluster. When merging tnsnames.ora files ensure that each
    node contains all other nodes tnsnames.ora entries. This includes tns
    entries for any Applications tier nodes where a concurrent request could be
    initiated, or request output to be viewed.
    6. In the tnsnames.ora file of each Concurrent Processing node ensure that
    there is an alias that matches the instance name from GV$INSTANCE of each
    Oracle instance on each RAC node in the cluster. This is required in order
    for the SM to establish connectivity to the local node during startup. The
    entry for the local node will be the entry that is used for the TWO_TASK in
    APPSORA.env (also in the APPS<SID>_<HOSTNAME>.env file referenced in the
    Applications Listener [APPS_<SID>] listener.ora file entry "envs='MYAPPSORA=<
    some directory>/APPS<SID>_<HOSTNAME>.env)
    on each node in the cluster (this is modified in step 12).
    7. Verify that the FNDSM_<SID> entry has been added to the listener.ora file
    under the 8.0.6 ORACLE_HOME/network/admin/<SID> directory. See WebiV Note:
    165041.1 for instructions regarding configuring this entry. NOTE: With the
    implementation of GSM the 8.0.6 Applications, and 9.2.0 Database listeners
    must be active on all PCP nodes in the cluster during normal operations.
    8. AutoConfig will update the database profiles and reset them for the node
    from which it was last run. If necessary reset the database profiles back to
    their original settings.
    9. Ensure that the Applications Listener is active on each node in the cluster
    where Concurrent, or Service processes will execute. On each node start the
    database and Forms Server processes as required by the configuration that
    has been implemented.
    10. Navigate to Install > Nodes and ensure that each node is registered. Use
    the node name as it appears when executing a nodename?from the Unix prompt on
    the server. GSM will add the appropriate services for each node at startup.
    11. Navigate to Concurrent > Manager > Define, and set up the primary and
    secondary node names for all the concurrent managers according to the
    desired configuration for each node workload. The Internal Concurrent
    Manager should be defined on the primary PCP node only. When defining the
    Internal Monitor for the secondary (target) node(s), make the primary node (
    local node) assignment, and assign a secondary node designation to the
    Internal Monitor, also assign a standard work shift with one process.
    12. Prior to starting the Manager processes it is necessary to edit the APPSORA.
    env file on each node in order to specify a TWO_TASK entry that contains
    the INSTANCE_NAME parameter for the local nodes Oracle instance, in order
    to bind each Manager to the local instance. This should be done regardless
    of whether Listener load balancing is configured, as it will ensure the
    configuration conforms to the required standards of having the TWO_TASK set
    to the instance name of each node as specified in GV$INSTANCE. Start the
    Concurrent Processes on their primary node(s). This is the environment
    that the Service Manager passes on to each process that it initializes on
    behalf of the Internal Concurrent Manager. Also make the same update to
    the file referenced by the Applications Listener APPS_<SID> in the
    listener.ora entry "envs='MYAPPSORA= <some directory>/APPS<SID>_<HOSTNAME>.
    env" on each node.
    13. Navigate to Concurrent > Manager > Administer and verify that the Service
    Manager and Internal Monitor are activated on the secondary node, and any
    other addititional nodes in the cluster. The Internal Monitor should not be
    active on the primary cluster node.
    14. Stop and restart the Concurrent Manager processes on their primary node(s),
    and verify that the managers are starting on their appropriate nodes. On
    the target (secondary) node in addition to any defined managers you will
    see an FNDSM process (the Service Manager), along with the FNDIMON process (
    Internal Monitor).
    Reference Documents
    Note 241370.1

    What is your database version? OS?
    We are using VCP suite for Planning Purpose. We are using VCP environment (12.1.3) in Decentralized structure connecting to 3 differect source environment ( consisting 11i and R12). As per the Oracle Note {RAC Configuration Setup For Running MRP Planning, APS Planning, and Data Collection Processes [ID 279156]} we have implemented RAC in our test environment to get better performance.
    But after doing all the setups and concurrent programs assignment to different nodes, we are seeing huge performance issue. The Complete Collection which takes generally on an avg 180 mins in Production, is taking more than 6 hours to complete in RAC.
    So I would like to get suggestion from this forum, if anyone has implemented RAC in pure VCP (decentralized) environment ? Will there be any improvement if we make our VCP Instance in RAC ?Do you PCP enabled? Can you reproduce the issue when you stop the CM?
    Have you reviewed these docs?
    Value Chain Planning - VCP - Implementation Notes & White Papers [ID 280052.1]
    Concurrent Processing - How To Ensure Load Balancing Of Concurrent Manager Processes In PCP-RAC Configuration [ID 762024.1]
    How to Setup and Run Data Collections [ID 145419.1]
    12.x - Latest Patches and Installation Requirements for Value Chain Planning (aka APS Advanced Planning & Scheduling) [ID 746824.1]
    APSCHECK.sql Provides Information Needed for Diagnosing VCP and GOP Applications Issues [ID 246150.1]
    Thanks,
    Hussein

  • Install and configuring JDBC Driver in SAP Java stack

    Hi Experts,
    We are fetching data from GRC to BIW, for this we are using UD Connect in biw.
    For this we need to configure and installed the JDBC Connectors.
    Please suggest how to go about this.
    Thanks,
    Vijay

    Hi
    Check this SAP Notes
    1347514 - How to setup and configure the webi/deski JDBC connection for the Microsoft SQL Server 2005 and Oracle 9i&10g Database
    1602614 - How To Install And Configure Microsoft SQL JDBC Drivers
      831162 - FAQ: XI 3.0 / PI 7.0 / PI 7.1 / PI 7.3 JDBC Adapter
    Check the SCN blog
    Michal's PI tips: JDBC/JMS driver deployment - now more forceMode=true
    Configuring the JDBC Adapter - Advanced Adapter Engine - SAP Library
    Regards
    Ram

Maybe you are looking for