Starting Multiple Versions of Weblogic

Hi,
Is it possible to run multiple versions of weblogic concurrently ?
I have 8.1 and 9.2 on my server.
Whenever I login to the console in 9.2, my console in 8.1 will be logged out.
If yes, please let me know the steps to take if able.

Hi,
Yes, you can use multiple versions of weblogic concurrently.
However the issue you are facing is because the browser keeps the session of the previous logged in WLS version and when you try to log in to the other version of WLS it first close the old sessions and then open the new session.
Try to use 2 different browsers say log in in WLS 9.2 using Firefox and WLS 8.1 using IE/Chrome you would notice that it would work just fine. And if you want to use only one browser then now days you have an option as "Private Browsering" in FF and Chrome which would also solve this problem.
Regards,
Ravish Mody

Similar Messages

  • Multiple instances of weblogic pointing to same public_html

    Hi,
    I am using Weblogic 5.1 and have successfully set it up to start multiple instances
    of weblogic from one weblogic server(each instance has its own unique port).
    Currently I have multiple instances of public_html (one for each instance). Does
    anyone know what I have to do to point all instances of weblogic to a common public_html?
    Many thanks in advance
    Dipen

    create a symbolic link that is called public_html that points to the common
    docroot.
    "Dipen" <[email protected]> wrote in message
    news:3b7cf1bf$[email protected]..
    >
    Hi,
    I am using Weblogic 5.1 and have successfully set it up to start multipleinstances
    of weblogic from one weblogic server(each instance has its own uniqueport).
    Currently I have multiple instances of public_html (one for eachinstance). Does
    anyone know what I have to do to point all instances of weblogic to acommon public_html?
    >
    Many thanks in advance
    Dipen

  • Start multiple domains simultaneously on 1 Weblogic server installation?

    Is it okay to start and run multiple domains simultaneously. Better yet, when having multiple domains on 1 WLS server, should each domain have a different port number in order to be run simultaneously?
    Here's my scenario - I installed Oracle Business Intellgence, which by default installs and configures WLS server for certain Business Intelligence applications (BI Publisher). This instance was running fine and good and still is.
    Then I had another application, Oracle Data Integrator, which has a Console piece that requires a domain on WLS. So instead of modifying the existing domain for Oracle Business Intelligence, I created a new domain via the Configuration Wizard and selected those components for Oracle Data Integrator.
    therefore current domains:
    ...\domains\bifoundation_domain --> installed automatically as part of Oracle Business Intelligence
    ...\domains\odi11g --> I created this domain after I
    Now I have 2 domains under 1 WLS Server (windows 7 64bit), but if I startWeblogic.cmd for the bifoundation_domain, and I startWeblogic.cmd for the odi11g...then only the components for the bifoundation_domain become available via the WLS Console.
    Questions:
    - Can I run both domains simultaneously?
    - Should I have modified the bifoundation_domain to include Oracle Data Integrator component; therefore only having 1 domain but having everything run under that domain?
    - Does the Port for each domain matter? both bifounddation_domain and odi11g domain use ports 7001
    Are there any other considerations? Thanks much.

    Hi,
    It is perfectly OK to run multiple domains on a single Weblogic server installation. Only constraint would be you have enough capacity available on your server to start multiple instances.
    Things to note is, if your domain1 is running on listen address : port { localhost : 7001 } then your other domain should be configured on a different port say {localhost : 8001 }. If you want both domain to run on same port then go for virtual IP's to be plumbed on your physical network interface and configure as,
    domain1 - { ip1 : 7001 }
    domain2 - { ip2 : 7001 }
    this way you will can access both domain admin console on same port.
    Remember, Weblogic resources cannot be shared between domain, however a single nodemanager will be enough to monitor both the domains.
    * rank it if answer is helpful :) *
    Thanks,
    Ranjan

  • How to start a particular version of Photoshop when multiple versions are installed

    I have written a small software that automates a few functions in PS CS2.
    Till now it was working just fine with PS CS2. Now due to some unknow reasons the client has installed CS 4 and CS 5.
    Now my clinet want that the software should be able to detect all installed version of PS and allow him as user to choose as to with which version of PS my software should automate.
    Is this possible?
    If yes and how to achieve it?
    Oh! I have also abserved an unusual behaviour. I don't know whether it is because of my software or because of PS.
    By default when my software executs this automation script (generated using Script listner)
    Rem =======================================================
      Dim objApp
      Set objApp = CreateObject("Photoshop.Application")
      Rem Use dialog mode 3 for show no dialogs
      Dim dialogMode
      dialogMode = 3
      Dim id11
      id11 = objApp.CharIDToTypeID("setd")
          Dim desc3
          Set desc3 = CreateObject("Photoshop.ActionDescriptor")
          Dim id12
          id12 = objApp.CharIDToTypeID("null")
              Dim ref2
              Set ref2 = CreateObject("Photoshop.ActionReference")
              Dim id13
              id13 = objApp.CharIDToTypeID("Prpr")
              Dim id14
              id14 = objApp.CharIDToTypeID("GnrP")
              Call ref2.PutProperty(id13, id14)
              Dim id15
              id15 = objApp.CharIDToTypeID("capp")
              Dim id16
              id16 = objApp.CharIDToTypeID("Ordn")
              Dim id17
              id17 = objApp.CharIDToTypeID("Trgt")
              Call ref2.PutEnumerated(id15, id16, id17)
          Call desc3.PutReference(id12, ref2)
          Dim id18
          id18 = objApp.CharIDToTypeID("T   ")
              Dim desc4
              Set desc4 = CreateObject("Photoshop.ActionDescriptor")
              Dim id19
              id19 = objApp.CharIDToTypeID("HsSt")
              Call desc4.PutInteger(id19, 1)
          Dim id20
          id20 = objApp.CharIDToTypeID("GnrP")
          Call desc3.PutObject(id18, id20, desc4)
      Call objApp.ExecuteAction(id11, desc3, dialogMode)
      Call SetUndoTo1CS3
    It will automatically start that version of PS which was last running before the system was shut down.
    Let me try an explain this in a different way:
    To get my software to talk to a particular version of PS I have to perform the following steps:
    Start that version of PS in I am interested
    Open a file and save is under a different name
    Close PS
    Restart my PC
    After performing all these steps when my software automates PS that version of PS will start which was last run.
    Any idea as to what is going on?
    Please help me solve this problem.

    The answer is somewhat easy until you start talking about launching 32 or 64! When you call CreateObject you specify which version you want. Most of the time you want the current version so you say "Photoshop.Application". But you can say "Photoshop.Application.11" for CS4 or .12 for CS5. You could look in the registry to see which keys are present and pose a question to your user.
    --------------- 32 and 64 bit fun ---------------------
    If you are on a 64 bit OS you have two versions of Photoshop installed beginning with CS4. If your application is a 64 bit application and you are the correct user you can see into both the 64 bit registry and the 32 bit registry. If you are a 32 bit application you only see the 32 bit side of the registry.
    What I do is run my VBScripts via the cscript application and I launch cscript in either 32 or 64 bit mode.
    Here is my test:
    Launch 32 bit version of photoshop via cscript in 32 bit mode and specify the version:
    E:\h:\windows\SysWOW64\cscript \files\VBScripts\TestLaunch10.vbs 11
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    Trying to launch Photoshop.Application.11
    DOM library
    11.0.2
    H:\Program Files (x86)\Adobe\Adobe Photoshop CS4\
    Done
    Launch 64 bit version:
    E:\cscript \files\VBScripts\TestLaunch10.vbs 11
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    Trying to launch Photoshop.Application.11
    DOM library
    11.0.2
    H:\Program Files\Adobe\Adobe Photoshop CS4 (64 Bit)\
    Done 
    You can see from the path that the correct version is launched.
    Here is a snippet of the code...
    appName = "Photoshop.Application." & vStringSet app = CreateObject(appName)

  • Feature comparison bet. diff. versions of Weblogic Server starting 5.1 to 8

    I am looking for features comparison matrix between different versions of weblogic server from v5.1 to 8.1. Can anyone help?

    a matrix I have never seen, but release notes usually sums it up pretty well.

  • Multiple versions on one computer?

    Hi!
    I am a new Macbook user that I bought to start developing Mac software.
    I would like to use multiple versions of Mac OS X on my macbook if possible.
    Can this be done so that I would have 10.3, 10.4 and 10.5 of Mac OS X installed and select the version on boot.
    Thank you!

    Just to build on what TP has mentioned... the reason for this is that older versions of OS X are never updated for newer hardware. As all Macs ship with the most current OS on them, there is never a need to update previous versions of the OS. There have been a number of significant hardware updates since 10.3 (I don't believe any version of 10.3 was ever released for the Intel Macs). If you had an older MacBook that came with 10.4, you could get away with installing both 10.4 (using the version it shipped with) and 10.5. If you have a more current MacBook, 10.5 is pretty much your only choice.

  • [Forum FAQ] Schedule multiple versions of System Image Backup in Windows 8.1

    As we known that there is no UI for user to configure Image backup in Windows 8.1, this is a guide for your to schedule multiple versions of System Image Backup.
    Step 1: Create a task to schedule an image backup with following command:
    SCHTASKS /Create /SC WEEKLY /D MON /TN WeeklyFullBackup /RL HIGHEST /ST 13:00 /TR “wbAdmin Start Backup -backupTarget:F: -include:C: -allCritical -quiet”
    Step 2: Schedule a robocopy to backup the saved image with BAT file:
    Please create a new folder (in this example, the new folder is e:\test2) to save your multiple copies of image backup:
    Write following batch file to copy backup and rename with backup date:
    *****************BAT********************
    @echo off
    robocopy e:\test1\ e:\test2\ test.wim
    ren e:\test2\test.wim  test_%date:~10,4%%date:~7,2%%date:~4,2%_%time:~0,2%%time:~3,2%.wim
    NOTE: e:\test2 is my location to save multiple copies of image backup; e:\test1 is the location I create the system image backup.
    This BAT can also help to rename the copy of image backup with date and time like below:
      3.  Set up a basic task in Task schedule:
    Note: please make sure the time you configured follows the time you set for image backup in Step 1.
    Action -> Create basic task (Name you task) -> Trigger (Set how often this task should be run) -> Action (Start a program) -> Under Program/script, point to your bat file you create in Step 2.b -> Finish
    At the end, you can know more about SCHTASKS and Robocopy via following links:
    Robocopy
    http://technet.microsoft.com/en-us/library/cc733145.aspx
    Schtasks
    http://technet.microsoft.com/en-us/library/cc725744.aspx
    Welcome to your feedbacks.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hi,
    Thanks for posting in Microsoft TechNet forums.
    I will try to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • Multiple version of Java on one machine

    Is it possible to have multiple versions of Java co-exist on the same XP Pro machine?
    Here is our scenario: we have apps that use Java 1.5, but we have one critical app that doesn't support that version yet. It has to use the 1.4 version. Is there a way to allow both versions to exist and be usable for their respective apps? If so, how?
    Thank you.

    I can't, however it's never a good idea to have
    multiple versions of Java on one machine. Try and
    standardise if possible. If OP used JAVA_HOME as you
    often suggest, then he would be knackered wouldn't
    he? JAVA_HOME can only point to one JDK. Your
    advice is conflicting kaj.Nope. JAVA_HOME should always be defined in the start script/file for a java application, so it's not set per system. It's very common that companies have applications that requires different JDK/JRE versions, and it's usually very expensive to upgrade all applications (if it's possible at all). You can of course also alter the PATH variable if you want to in the script.
    /Kaj

  • Multiple versions of an application on one Forms Server

    Is it possible to have multiple versions of an application available via one Forms Server?
    We have a DEV, TEST and PROD version of an application and we would like to have the versions seperate on one Forms Server.
    Would this be possible using any other Oracle tools (Portal)?
    Thanks for your help.

    Yes, all you have to do is create a batch file which sets the env variables you want and also starts up the forms listener on a different port. This way you can have a forms listener on e.g.
    Port 9000 With Forms60_Path - c:\temp
    Port 9001 With Forms60_Path - c:\Production
    Port 9002 With Forms60_Path - c:\test
    That way you will pick up different files as well.
    Regards
    Grant Ronald.

  • How do I have multiple versions of the same .chm?

    Our developers recently were required to make changes to an earlier version of our software (thank goodness for backups). So I'm having to revert to that earlier version, make changes, and create a revised .chm. HOWEVER, I already had completed the upcoming release's .chm and don't want to lose all of those changes. To make matters more complicated, I also have requests for changes to the Help for the future release.
    So, how does everyone have multiple versions of the .chm on their system at the same time and keep them separate, yet compile the right files with the right version? I had thought I could just create a new folder with the files that changed for the various versions, but updating them in Word 2007 is not a pretty proposition. I'll then have to import them in and replace the "old" ones. There has to be an easier way! I'm sure other people do this on a regular basis, but this is the first time I've had to go back a version, maintain the next version, and start work on a yet-to-be-released version all at the same time.

    It never ceases to amaze me how questions on the forum are like buses, none for an hour then three come along. Not your fault but this was asked just a couple of days ago.
    When your developers issue a new version you need to save a copy of the source, we just zip it up. Then you carry on editing for the next version and zip that up and go again.
    Then when a change is required to an older version, you dig it up, amend it and zip it again.
    Not sure how it works with source control. The above is easier and reliable, assuming you manage it tightly.
    See www.grainge.org for RoboHelp and Authoring tips

  • Jumpstart/JET - How to maintain multiple versions of patch clusters

    Is there a way to maintain multiple versions of the recommended patch cluster with JET? Since Sun uses the same filename (10_recommended.zip) but releases several versions over time, its hard to keep new systems at the same baselines as ones built previously. So when I download a patch bundle I always rename it to the date downloaded (ie 10_Recommened_10SEPT2010.zip) Is there a way to integrate this into JET?
    Thx,

    when you are talking about versioing , starting form XI 3.1 SAP business objects released the BusinessObjects LifeCycle Manager for XI 3.1
    find more details here
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi31_LCM_User_en.pdf
    good luck
    Amr

  • Handling source files for multiple versions

    Ok, I've looked around on the web and multiple discussions and have yet to find an answer. We currently have two authors working on the same help project that we have handled relatively successfully under RoboSource. Our development environment has changed so that we need to be able to support multiple versions of the help at once ie- release branch vs development branch that we want documented but it is not yet slated to be in the release.
    I've looked at the help for RoboSource and there is an idea of branching but not much help on how this is done or if it really maintains two sets of the files, etc. I've also seen some postings on the forum for this that have gone unanswered. Makes me suspect that perhaps RoboSource doesn't really support multiple versions of help source files. I would be happy to admit that I'm wrong here.
    Another option to solve our challenge is by committing our source files to the development source system, SVN. I've noticed some threads discussing this. I'm unsure from reading these posts if RoboHelp alerts you when you are about to modify a file, such fpj or hhk, that is being used by someone else like RoboSource does. Since we still have two authors playing in the same help project it would be most efficient if it would notify us before letting us write over one another's work.
    Can anyone shed some light on:
    1) does RoboSource really support multiple versions of the help source files and how it is done?
    2) does RoboHelp notice when a file is locked in SVN and notify the other author to keep hands off until it is committed again?
    3) is there somewhere better for me to research this?
    Thanks you for any assistance you can provide,
    Nita

    We're using RSC 3.1 with RH 8 and with RH X5, and we've found that this is actually a two-step process:
    Branching is the method for copying a snapshot of a folder (to establish two branches of the same source).
    Reconciling (AKA forward/back patching) is the method for synchronizing edits between branches (or not, as the case may be).
    For example, a "V12.3" branch of the "main" source has been prepared for one customer's specific needs. All edits to "main" will be forward patched to "V12.3," but edits to specific areas of "V12.3" will not be back patched to "main."
    Tim, my boss, prepared the tutorials below, as much for himself as for us, and I have only stripped the screenshots to protect our intellectual property. Note also that we reference two publish locations, one for internal reviewing, and one for Release Engineering to include in our nightly product builds. Your environment might only have a single publish destination. Note also that the output files are never added to RSC.
    Pay special attention to your folder naming process before you start, by anticipating any potential future branching needs. Folder renaming after the fact can be problematic in RH and RSC.
    Good luck,
    Leon
    ===================================
    Branching Projects in RoboSource 3.1
    Since the Help for RoboSource and Robohelp lack a proper explanation for branching and updating configuration files to support proper branching, this document has been created to assist in creating future branches.
    Creating New Local Directories
    Individuals must create new local path directories on their systems. We use the following conventions:
              Ex. C:\902_imsmerge\projects (source folder)
              Ex. C:\902_imsgenerate\mergedProjects (output folder)
    Create New Server Directories
    New server directories need to be created in two locations for holding the output files.
    One is for the Robohelp output that gets put in the nightly .war file and checked into Perforce.
    The other is in the wwwroot of our IIS server for our doc web site.
    They are defined as follows:
    \\docsql01\Documentation\RoboHelp\9.0.3\imsgenerate
    \\docsql01\Inetpub\wwwroot\help_sys\9.0.3
    Create new directories with the correct branch number.
    Using RoboSource View Manager to Create a Branch
    You use the View Manager to create a new branch. In RoboSource 3.1, a branch is just a different type of view.
    Assume the version_903 branch has already been created. To create a new branch, click the Create button and name the new branch (version_910), leaving a blank root folder.
    Click on Set Root to define the root folder for the new branch.
    Select the root for the branch and click OK.
    Select the view (branch) and click Properties. In the Properties window, select Branch as the Type, then click Close.
    In the View Manager, check the check box to enable the view.
    Setting the Local Path for the New Branch
    Select the new branch and right-click.
    Type in or browse to the correct local path, check the Apply Recursively box, click Apply. Close the Properties window.
    Editing .xpj Files
    The .xpj files in the new branch need to be edited to point to the new branch. THIS IS VERY IMPORTANT. IF NOT DONE ROBOHELP WILL CHECK IN CHANGES TO BOTH THE BRANCH AND THE ROOT.
    One line in each project’s .xpj needs to change. See below.
    This value must match the branch the project lives in. In our above new branch example this would be changes to %version_910.
    In a merged project, you can change all these at once with the FAR tool.
    Edit the .ssl and .sss files
    These files need to be edited to redefine the generating and publishing paths. Note that this can also be accomplished with the FAR tool, or by having each writer do it through the GUI.
    ssl Files
    The .ssl files contain the data for the generate path. Although there might be seven .ssl files for each project, you only need to edit the ones for your Primary Layout and one or two others that you might also use.
    Make sure the generate path is defined correctly.
    sss Files
    The .sss file defines the publishing paths. This edit can also be done through the GUI if necessary.
    ====================================
    Forward and Back Patching in RoboSource
    This document describes the procedure of forward or back patching files (.htm or .gif) between branches in the RoboSource system. The RoboSource product uses a feature called Reconcile Changes to accomplish patching between branches.
    Example Scenario
    Throughout this document we will use a real life example from the refwindows project.
    We have edited the version 9.0.3 security_master_folder.htm file in RoboHelp.
    Now, we need to backpatch it to version 9.0.2.
    Selecting Folders or Files to Reconcile
    You can select either:
    A single file for reconciliation
    The source folder, or
    The destination folder
    If you have just one file to reconcile, you will probably want to use the single file method. If you have several files to reconcile, you will need to use the folder method.
    Working from the Source Folder
    Select the source folder (folder that contains the updated file) in source control. In our case, %version_903/refwindows.
    Select Reconcile Changes … from the Action menu. This opens the Reconcile window.
    Select the appropriate option in the Reconcile window.
    In our example we select the first option to reconcile from %version_903 because that is where our updated file is. Make sure the correct project is selected in the drop-down list. ($/version_902/refwindows).
    Other Options
    Reconcile changes made in another branch *into %verison_903/refwindows. This is the option you would use if you have an updated file in another branch that you want to put in 903.
    Reconcile changes made locally (in c:\903_imsmerge\projects\refwindows) and %version_903/refwindows. We would most likely never use this option.
    Reconcile changes made in another database *into* this database. Do not use.
    None of the above, let me select what to Reconcile. This one sounds like it would be a good option, but it gets even more complicated.
    Wildcard Filter. Use this to display only certain file types. For example, *.htm;*.gif;*.jpg would filter on those file types.
    Click OK to open the Difference Reconciliator window.
    Notice that this window shows all files in the project that have differences such as the .ssl and .xpj files.
    IMPORTANT: NEVER reconcile these files, they are supposed to be different.
    You can prevent these files from displaying by using the Wildcard Filter discussed above.
    Select the appropriate file (security_master_folder.htm). This window will allow you to replace the file in the version_902 project unfortunately, it will also allow you to replace the updated file with the older one. Be Careful Here.
    You can also View Differences from this window by clicking the View Differences link.
    Click the Replace button in the $/version_902 pane.
    You will get a confirmation dialog. Before clicking OK, take the time to read the question. This is your opportunity to catch potential mistakes!
    You will then get the Reconcile Checkout dialog.
    Be sure Perform the action directly on the Server is checked, click OK.
    You see that the Difference Reconciliator window now indicates No changes to merge from %version_903/rewindows/security_master_folder.htm in the $version_902 pane.
    Close the window.
    Check the Destination Folder
    In the source control window go to the destination branch and check the project. You can see in this shot that the security_master_folder.htm file now shows the date it was replaced, and that the server version is now different from your local version.
    Working from the Destination Folder
    If you had chosen the destination folder and select Reconcile Changes, the same window would have opened but with different options.
    Here you would have selected the second option to reconcile into $/version_902.
    You can do it either way, just pay careful attention to the options. The rest of the process is the same.

  • J2EE Shared Libraries - Multiple Versions

    WLP 10.2, Studio 1.1
    Below is the list of shared libraries in the wl console. There are multiple versions of some libraries. Does the performance improve if we remove them?
    beehive-controls-1.0(1.0,1.0) Active Library 1
    beehive-controls-1.0-war(1.0,1.0) Active Library 1
    beehive-controls-1.0.1-10.0(1.0,1.0.1.1) Active Library 1
    beehive-controls-1.0.1-10.0(1.0,1.0.2.2) Active Library 1
    beehive-controls-1.0.1-10.0-war(1.0,1.0.2.2) Active Library 1
    beehive-netui-1.0(1.0,1.0) Active Library 1
    beehive-netui-1.0.1-10.0(1.0,1.0.2.2) Active Library 1
    beehive-netui-resources-1.0(1.0,1.0) Active Library 1
    beehive-netui-resources-1.0.1-10.0(1.0,1.0.2.2) Active Library 1
    content-management-app-lib(10.2.0,10.2.0) Active Library 1
    content-management-app-lib(10.2.0,10.2.0.1) Active Library 1
    content-management-web-lib(10.2.0,10.2.0) Active Library 1
    content-management-web-lib(10.2.0,10.2.0.1) Active Library 1
    jsf-myfaces(1.1,1.1.3) Active Library 1
    jsf-ri(1.1,1.1.1) Active Library 1
    jstl(1.1,1.1.2) Active Library 1
    p13n-app-lib(10.2.0,10.2.0) Active Library 1
    p13n-app-lib(10.2.0,10.2.0.1) Active Library 1
    p13n-web-lib(10.2.0,10.2.0) Active Library 1
    p13n-web-lib(10.2.0,10.2.0.1) Active Library 1
    struts-1.1(1.1,1.0) Active Library 1
    struts-1.2(1.2,1.2.9) Active Library 1
    webdav-app-lib(10.2.0,10.2.0) Active Library 1
    webdav-app-lib(10.2.0,10.2.0.1) Active Library 1
    webdav-web-lib(10.2.0,10.2.0) Active Library 1
    webdav-web-lib(10.2.0,10.2.0.1) Active Library 1
    weblogic-controls-1.0(1.0,1.0) Active Library 1
    weblogic-controls-1.0-war(1.0,1.0) Active Library 1
    weblogic-controls-10.0(10.0,10.0) Active Library 1
    weblogic-controls-10.0(10.0,10.2) Active Library 1
    weblogic-controls-10.0-war(10.0,10.2) Active Library 1
    wlp-analytics-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-analytics-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-analytics-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-analytics-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-clipper-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-clipper-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-collab-api-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-collab-api-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-collab-portlets-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-collab-portlets-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-collab-portlets-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-collab-portlets-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-commonui-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-commonui-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-content-ui-framework-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-content-ui-framework-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-framework-common-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-framework-common-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-framework-full-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-framework-full-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-framework-full-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-framework-full-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-framework-rest-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-framework-rest-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-framework-struts-1.1-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-framework-struts-1.1-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-framework-struts-1.2-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-framework-struts-1.2-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-groupspace-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-groupspace-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-groupspace-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-groupspace-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-light-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-light-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-lookandfeel-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-lookandfeel-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-propagation-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-propagation-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-propagation-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-propagation-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-rest-full-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-rest-full-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-rest-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-rest-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-sample-dvt-web-lib(10.2.0,10.2.0) Active Library 100
    wlp-sample-lookandfeel-web-lib(10.2.0,10.2.0) Active Library 100
    wlp-services-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-services-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-services-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-services-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-admin-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-admin-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-analytics-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-analytics-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-analytics-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-analytics-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-common-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-common-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-common-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-common-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-content-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-content-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-content-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-content-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-custom-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-custom-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-custom-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-custom-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-framework-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-framework-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-framework-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-framework-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-full-console-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-full-console-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-full-console-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-full-console-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-im-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-im-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-im-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-im-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-portal-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-portal-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-portal-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-portal-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-serviceadmin-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-serviceadmin-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-serviceadmin-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-serviceadmin-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-support-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-support-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-ugm-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-ugm-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-ugm-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-ugm-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-tools-visitor-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-tools-visitor-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-webdav-app-lib(10.2.0,10.2.0) Active Library 1
    wlp-webdav-app-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-webdav-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-webdav-web-lib(10.2.0,10.2.0.1) Active Library 1
    wlp-wsrp-producer-web-lib(10.2.0,10.2.0) Active Library 1
    wlp-wsrp-producer-web-lib(10.2.0,10.2.0.1) Active Library 1
    wls-commonslogging-bridge(1.0,1.1) Active Library 1
    wls-commonslogging-bridge-war(1.0,1.1) Active Library 1

    Hello,
    The multiple versions of shared libraries are done for patching reasons; when a patch is issued it uses the slightly-higher version shared library to override the settings in the main library.
    So you really don't want to remove any of them.
    Kevin

  • Workflow multiple versions in production

    Hi Experts,
    when i transport my work flow from development to production
    multiple versions are getting created.
    e.g
    in development i have version 0001
    and production also have version 001
    i did some changes in development in version 0001
    now i transported it to production
    then in production new version is getting created. version 0002
    I did check the SAP help which says
    If a workflow definition is transported into another system,
    only the active version is transported.
    If the workflow definition exists in the target system with the same
    version number,  it is overwritten by the transported version if it has
    no workflows running. Otherwise, the transported workflow definition
    is saved with a free version number. The transported workflow
    definition becomes the active workflow definition in the target system
    but i checked the production server and work flow is not running. still multiple versions are getting created.
    any clue experts
    Regards,
    Umesh Chaudhari.

    Hi Umesh,
    Yes in your scenario you would get a new version created as an instance has already been started using the older version.  This state of affairs used to worry me from a QA perspective as well, but I have seen it now in many sites - both ones where I have built the workflows and ones where I have not - and I can state pretty conclusively that from an operational perspective it is not an issue.
    You could generate a new version in your DEV system whenever you transport, but I would not advise this as in this case it is possible to get your versions out of synch and actually deprecate your changes.  This is not only poor but proved very difficult to analyse (for my small brain anyway) at the site where this was attempted.
    In this case I am firmly of the opinion that I will let the transport system manage the versions in my production system.
    Kind Regards
    Gareth

  • Multiple version of same package being distributed

    Hello,
    So i have a package ABC being distributed to site 01. When I check the sender log it is showing it is distributing multiple version of ABC. is this possible? Should it not distribute latest version only?
    In process sending SWD package ABC  version 2 to site 01, current completion ratio = 19 percent.
    In process sending SWD package ABC version 3 to site 01, current completion ratio = 1 percent.
    In process sending SWD package ABC version 4 to site 01, current completion ratio = 1 percent.

    Hi,
    Did you edit the package when the content distribution hasn't finished?
    I just distributed a package to a DP, then edited the package when it was still in progress. From my sender.log, it continued distributing package version 1 and started to send version 2.
    So I think it is the way of SCCM worked.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • FI postings with mixed debit/creidt amounts

    Hi Friends, We have a custom build program to extract data and post FI document. In some cases after extraction we have a data with mixed DC/LC and LC2 amounts in different signs thats is debit/debit/credit amounts. Example ( Document currency as +10

  • 24" iMac - Dual monitor calibration

    Just curious... I have a 24" iMac Core 2 Duo 2.16Ghz, I am thinking of attaching an extrenal monitor to the system (non-Apple) and also borrowing a friends monitor calibration unit. I've never had an external hooked up before and before I go buying o

  • Unable to connect to N80, after I update Nokia PC ...

    Hi all, Today, I updated the Nokia PC suite to version 6.82.22.0. After this, I am no more able to connect to my Nokia Phone. Please help. regards, rv

  • MRP stoage location -  create reservation and external demand

    Hi Our company using  MRP for sloc - ROP - type VB plant 1000 with sloc 1 (Distribution Center) sloc 2 (branch) - planning at storage location sloc 3 (branch)  -planning at storage location currently if I run MRP, a reservation is created from sloc 2

  • Can't get a login screen on Skype

    Hi, I downloaded Skype on my MacBook Air for the first time over the weekend. Intially it worked fine, however now I just get a blank Skype page with a line that goes round and round in circles and never gets to a login screen. I've tried restarting