JDeveloper Version and Weblogic Version

Hi,
I am working on ADF project which is being developed on jDeveloper 11.1.1.3 and hosted on weblogic server 10.3.3. Can 11.1.1.3 application be hosted directly on latest weblogic server(10.3.5 and 11.1.2) ? Do i need to do any migrations or apply any patches? If i need to migrate, will the migration be 11.1.1.3 to 11.1.1.4 so on or directly jump to 11.1.2 and deploy it in 10.3.5?
Thanks in Advance

Hi,
i have not tried but can say that from lower to higher version there should not be any problem..
Also refer this for more info.

Similar Messages

  • Currently running Adobe XI Standard, i have a PDF that i Save As excel however on my computer it converts it differently than my coworkers computer who has the same Adobe version and same version of Excel 2010. Is something different selected on mine than

    Currently running Adobe XI Standard, i have a PDF that i Save As excel however on my computer it converts it differently than my coworkers computer who has the same Adobe version and same version of Excel 2010. Is something different selected on mine than his? How can i troubleshoot?
    Can provide more information if needed...

    Hello nmohamm,
    To examine the conversion settings in Acrobat, do the following:
    1. Select Edit > Preferences
    2. In the preferences dialog, select the "Convert From PDF" category.
    3. In the "Converting From PDF" list, select "Excel workbook".
    4. Click the "Edit Settings" button to view your conversion settings.
    Regards,
    Charlene

  • Search Example Code inside for Versioned and non-Versioned Documents

    These may be of use to someone...
    File names:
    AttributeSearch.java
    AttributeContentSearch.java
    The AttributeSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", residing in the user "system"'s home directory.
    The AttributeContentSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", and document content containing the word "hello", residing in the user "system"'s home directory.

    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import java.util.Locale;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.beans.PrimaryUserProfile;
    import oracle.ifs.beans.PublicObject;
    import oracle.ifs.beans.Document;
    import oracle.ifs.beans.Folder;
    import oracle.ifs.beans.ContentObject;
    import oracle.ifs.beans.Search;
    // SEARCH RESULT
    import oracle.ifs.beans.SearchResultObject;
    // CONTENT + ATTRIBUTE SEARCH
    import oracle.ifs.search.ContextSearchSpecification;
    // SELECT, FROM
    import oracle.ifs.search.SearchClassSpecification;
    // ORDER BY
    import oracle.ifs.search.SearchSortSpecification;
    // WHERE
    import oracle.ifs.search.SearchClause;
    import oracle.ifs.search.SearchQualification;
    import oracle.ifs.search.JoinQualification;
    import oracle.ifs.search.FolderRestrictQualification;
    import oracle.ifs.search.AttributeQualification;
    import oracle.ifs.search.ContextQualification;
    public class AttributeContentSearch
    public static void main(String args[])
    try {
    LibraryService ifsService = new LibraryService();
    System.out.println("Oracle iFS Version " + ifsService.getVersionString());
    CleartextCredential credentials = new CleartextCredential("system","manager");
    ConnectOptions options = new ConnectOptions();
    options.setLocale(Locale.getDefault());
    options.setServiceName("ServerManager");
    options.setServicePassword("ifssys");
    LibrarySession ifsSession = ifsService.connect(credentials,options);
    DirectoryUser thisUser = ifsSession.getUser();
    System.out.println("Connected as \"" + thisUser.getDistinguishedName() + (thisUser.isAdminEnabled() ? "\" (admin enabled)" : "\""));
    PrimaryUserProfile userProfile = thisUser.getPrimaryUserProfile();
    SearchResultObject[] sro = runSearch (ifsSession,"hello");
    if (sro != null)
    for (int i = 0; i < sro.length; i++)
    System.out.print (((PublicObject)sro.getLibraryObject()).getName());
    System.out.println (" (" + ((PublicObject)sro[i].getLibraryObject()).getId() + ")");
    } catch (IfsException e)
    public static SearchResultObject [] runSearch( LibrarySession ifsSession, String searchCriteria) throws IfsException
    ContextSearchSpecification ss = null;
    SearchClassSpecification scs = new SearchClassSpecification();
    SearchSortSpecification sss = new SearchSortSpecification();
    SearchQualification sc = null;
    ss = new ContextSearchSpecification();
    ss.setContextClassname(ContentObject.CLASS_NAME);
    scs.addSearchClass( PublicObject.CLASS_NAME );
    scs.addSearchClass( Document.CLASS_NAME );
    scs.addSearchClass( ContentObject.CLASS_NAME );
    scs.addResultClass( Document.CLASS_NAME );
    sss.add( Document.CLASS_NAME, "NAME", true );
    sc = buildSearchClause( ifsSession, searchCriteria);
    ss.setSearchClassSpecification( scs );
    ss.setSearchQualification( sc );
    ss.setSearchSortSpecification( sss );
    Search s = new Search( ifsSession, ss );
    s.open();
    SearchResultObject [] sro = s.getItems();
    s.close();
    return sro;
    public static SearchQualification buildSearchClause( LibrarySession ifsSession, String searchCriteria ) throws IfsException
    Folder f = ifsSession.getUser().getPrimaryUserProfile().getHomeFolder();
    FolderRestrictQualification frq = new FolderRestrictQualification();
    frq.setStartFolder( f );
    frq.setSearchClassname(PublicObject.CLASS_NAME);
    AttributeQualification aq = new AttributeQualification();
    aq.setAttribute(Document.CLASS_NAME, PublicObject.NAME_ATTRIBUTE);
    aq.setOperatorType(AttributeQualification.LIKE);
    aq.setValue("%txt%");
    ContextQualification cq = new ContextQualification();
    cq.setQuery(searchCriteria);
    cq.setName("Test0");
    JoinQualification jq1 = new JoinQualification();
    jq1.setLeftAttribute ( Document.CLASS_NAME, Document.CONTENTOBJECT_ATTRIBUTE );
    jq1.setRightAttribute( ContentObject.CLASS_NAME, null);
    JoinQualification jq = new JoinQualificatio n();
    jq.setLeftAttribute ( PublicObject.CLASS_NAME, PublicObject.RESOLVEDPUBLICOBJECT_ATTRIBUTE );
    jq.setRightAttribute( Document.CLASS_NAME, null);
    SearchClause sc;
    sc = new SearchClause(jq, jq1, SearchClause.AND);
    sc = new SearchClause(sc, cq, SearchClause.AND);
    sc = new SearchClause(sc, frq, SearchClause.AND);
    sc = new SearchClause(sc, aq, SearchClause.AND);
    return sc;
    null

  • The product version and database version are not compatible

    The following simple program gets an exception {The product version and database version are not compatible} its very hard to proceed from here. Does anybody know what cause this?  
    Best Regards
    Jan Isacsson
    using System.Collections.ObjectModel;
    using Microsoft.MasterDataServices.Deployment;
    using Microsoft.MasterDataServices.Services.DataContracts;
    namespace MdsDeploy
        class Program
            static void Main(string[] args)
                try
                    ModelReader reader = new ModelReader();
                    Collection<Identifier> models = reader.GetModels();
                    foreach (Identifier modelId in models)
                        Console.WriteLine(modelId.Name);
                catch (System.Exception ex)
                    Console.WriteLine("Error: " + ex.Message);
                Console.ReadKey();

    Hi Jan,
    For the error "The product version and database version are not compatible", as Emma said, the version number of the Service does not match the database schema version.
    In your scenario, which version of database are you using? Please note that MDS update required after SQL 2012 SP1 installation, please refer to the links below to see the details.
    http://byobi.com/blog/2012/11/mds-update-required-after-sql-2012-sp1-installation/
    http://msdn.microsoft.com/en-IN/library/gg488708.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Tool versions and Application versions

    hi,
    i have a doubt in basic concept of peopleosft regarding the realtion between tool versions and application versions
    I have two systems..
    system1 : Application version 8.8 and tool version 8.49
    system 2: Application version 8.9 and tool version 8.46
    Now, the integration broker and webservices are completley different in these two tool versions...
    from whatever i know..when tool version is upgraded..navigations in application remain same but the way the process is done in background differ...
    so if we have webservices in application 8.8 and tools 8.46...the navigations are different and when we upgrade to 8.49 the whole concept of webservices change...so the navigations invariably change..how can it be possible..?
    Can someone explain me this or give a link to a doc for reference..
    Thanks in advance,
    Karthik
    Edited by: karthik tulasi on May 18, 2009 12:14 PM

    Well, you seems confuse, or I was not clear enough.
    Maybe I'm still not getting your question as it should, so you could try to rephrase it again.
    What's your concern exactly ?
    A new try on my side:
    The menu your are talking about is the Peopletools menu, so application does not interact with it.
    The only link between application and Peopletools are some calls. The application does NOT care about the Peopletools menu.
    The application/peopletools capabilities are embeded in the Peopletools which are ready or not ready to receive calls from differents Applications versions.
    Once more, menus are only frontend user GUI, but internally, this is an other stuff I tried to explain above.
    Basically, for the application point of view, Peopletools version are not know. This is the other way around, Peopletools are willing to receive application calls.
    Nicolas.

  • Are there two versions of ipod (like US version, and EU version) or is there just one worldwide?

    Are there two versions of ipod (like US version, and EU version) or is there just one worldwide?
    I want to buy an ipod touch 5 from ebay (i'm from croatia) and i'm woried is there just one model that is worldwide or are there a few models ( like US and EU)?????

    Some features like FaceTime (prohibited in some middle eastern countries, lower volume limit is EU countries) is controlled by a unique identifier on the iPod based on where the iPod was officially sold, I would avoid getting one officially sold in a middle eastern country. A non-EU one would also be better too

  • What difference on ABAP language between 2004 version and before version

    Hi everyone,
    Does there exist difference about ABAP language between 2004 version and before version? If it does, what's that? For example, what's new keywords? Which old key words can't be applied on 2004 platform any more?
    Any suggestion is highly appreciated.
    Best Regards,
    Julian

    hi
    good
    to get all these details plz visit the SAP site where you ll get the release notes related to all the concepts.
    Thanks
    mrutyun^

  • Difference between UCOS restricted version and unrestricted version

    Hi to all,
    somebody knows which is the difference between restricted version and unrestricted version??
    Which are the main differences??
    Thanks
    David

    Hi.
    Basically restricted version has encryption enabled and unrestricted not.
    You may give a look to this thread.
    https://supportforums.cisco.com/discussion/11409366/restricted-version-and-unrestricted-version-ccm-comparison
    HTH
    Regards
    Carlo

  • I cant find my all files in new version and older version is better than new and fix this problem....!

    I can't find my all PDF in new version and older version is better than new and fix this problem as soon as possible....!

    Hi Manoj,
    what exact problem are you facing? Are you unable to locate your pdf files?
    Regards,
    Rahul

  • Active version and Inactive version in Product llocation plan

    Hi Gurus,
    We are using product allocation functionality, in which i would like to what is the importance of active and Inactive versions.
    Which is the version in which we need to maintain the product allocation (MC94).
    Regards,
    Babs.

    Hi dsk,
    Thank you for the feedback on active version and inactive version.
    My doubt is if you look in to transaction MC94 , we have two tabs one u201CActive versionu201D and other u201CInactive versionu201D.
    When I maintained product allocation in Active version u201CA00u201D and executed the sales order product allocation is not happening. And then I tried to maintain the allocation under Inactive Version u201C000u201D then executed the sales order. Now the product allocation is happening and even the structure is getting updated after saving the sales order. So I need to under stand under which version we need to maintain the allocation so that allocation functionality will work during sales order creation.
    Regards,
    Babs

  • Diff between Project version and selection version

    Hi All
      what is the functions of the project version and selection version and difference between the same.
    Thanks
    S.Murali

    Hi,
    Refer below sap help link for function and use of project version & selection version.
    project version
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/1fe8344d1d166be10000009b38f83b/frameset.htm
    selection version
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/41f41846ee11d189470000e829fbbd/content.htm
    Regards,
    Sandeep
    Edited by: Sandeep Theurkar on May 23, 2009 1:29 PM

  • What is difference between Oracle version  and DB version.

    What is the difference between Oracle version and DB Version?
    How we came to know about the installed version through SQL query.

    SQL> select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    PL/SQL Release 8.1.7.0.0 - Production
    CORE 8.1.7.0.0 Production
    TNS for Linux: Version 8.1.7.0.0 - Development
    NLSRTL Version 3.4.1.0.0 - Production
    SQL>
    Joel P�rez

  • Difference between Planning Version and Simulation Version

    Hi friends,
    What is the difference between Planning Version and Simulation Version?
    Thanks,
    Debi

    Debi
    There are a lot of threads in this forum that give detailed info about version concept. Also you can refer to help.sap.
    Anyways , planning version is the version against which your live cache data is stored.  The data against this version is the one that the planners and buyers are going to refer to or use to make their planning and buying decisions. Data against the planning version is nothing but data relevant to the business .
    There may be instances where you would like to simulate some scenario. If you want to do trial and error analysis and at the same time if you do not want to impact the actual business data , then you create simulation versions and simulate your scenario.
    For example your actual sales orders received for the month of March may be 100 CS. This is the actual number that will be stored against your planning version. Lets say the demand planner wants to find out what will be the impact if there is a sudden bulk demand from a new customer for 500 CS - that is if he wants to do a what - if analysis then he can create a simulation version and try to check the impact .
    Thanks
    Aparna

  • JDeveloper JDK version and Weblogic server?

    Hi! Please can anyone tell me where I can see which JDK version uses my JDeveloper? And where I can download newest Weblogic server, please link and the name of the newest WeblogicServer!
    Best regards, Debuger!

    WSL 10.3.3: http://www.oracle.com/technetwork/middleware/downloads/index-087510.html
    Comes with its own JDK or download the newest here http://www.oracle.com/technetwork/java/javase/downloads/index.html
    Timo

  • Websphere and weblogic version

    hi everybody,
    Can anyone please say me the free version of websphere and weblogic that supports the
    oracle waveset/sunIDM8.1version.
    Please anyone help me out from this issue.
    Thanks,
    Tarun.

    From: http://docs.oracle.com/cd/E19225-01/820-5592/820-5592.pdf
    Here are the supported application servers that can be used with Sun IDM 8.1 (see below).
    Of course, instead of Sun IDM 8.1 you should utilize Oracle Waveset 8.1.1 and then apply the latest patch, which is 8.1.1.8. This is the latest possible version and contains all possible fixes and enhancements.
    Note: If you run the latest patch version of Sun IDM 8.1 (8.1.0.15) it also supports (from the 8.1.0.15 Rel Notes):
    IBM WebSphere 7.x application server can now be used with Identity
    Manager. (ID-13555125) 8.1.0.15
    If you have any additional questions please let me know.
    ==========
    Application Servers
    The application server you use with Identity Manager must be Servlet 2.2-compliant and
    installed with the included Java platform (unless noted as follows). Identity Manager requires
    Java SE Development Kit (JDK) 5 or 6 on the following application servers, if the application
    server supports these versions.

    Apache Tomcat 5.5.x, 6.0.x

    BEA WebLogic Server 9.1, 9.2, 10

    IBM WebSphere 6.1

    JBoss Application Server 4.2

    Oracle® Application Server Enterprise Edition 10g Release 3 (10.1.3)

    Oracle Application Server Standard Edition 10g Release 3 (10.1.3)

    Sun Java
    TM
    System Application Server 9.1 (GlassFish
    TM
    v2 UR1, v2 UR2, v2.1 32-bit and
    64-bit)

    Sun Java System Application Server Platform Edition 8.1, 8.2, 9.0

    Sun Java System Application Server Enterprise Edition 8.1, 8.2

    Sun Java System Application Server Standard Edition 8.2
    Note–

    If your current application server does not support JDK 5, please check with your vendor to
    examine the implications of upgrading to one that does before installing Identity Manager.

    Identity Manager requires a JDK that correctly handles the 2007 adjustments to U.S.
    Daylight Savings Time (DST). You must install any relevant DST patches for the JDK
    version you are using. For Sun JDK 5, Update 15 contains the necessary DST fixes. All
    versions of Sun JDK 6 contain the necessary DST fixes.

    You can run Identity Manager on BEA WebLogic application servers with all
    WebLogic-supported 5 JDKs.
    ==========

Maybe you are looking for