Check Version!

Hi,
How to check the version of my current portal server using?
Thanks!
null

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Pong:
Hi,
How to check the version of my current portal server using?
Thanks!
<HR></BLOCKQUOTE>
Hi Pong,
in order to determine the current portal version please run the following script in sqlplus as the Portal Schema Owner (e.g. PORTAL30):
set serveroutput on
declare
l_ver Varchar2(20);
BEGIN
l_ver := wwctx_api.get_product_version();
dbms_output.put_line( 'The current portal version is: '&#0124; &#0124; l_ver );
END;
null

Similar Messages

  • How to check version after i apply pacth

    Hi
    I'm going to apply patch with the ID# 9355677 - R12.1.2 UNABLE TO SAVE THE TAX CLASSIFICATION FOR A SUPPLIER TYPE EMPLOYEE
    my question is
    in the readme file
    there is a portion that i need to check the version of the following file
    $JAVA_TOP/oracle/apps/zx/schema/server/PartyTaxProfileEOImpl.class 120.17.12010000.4
    $ZX_TOP/patch/115/sql/zxcptytaxprfileb.pls 120.9.12010000.4
    $ZX_TOP/patch/115/sql/zxcptytaxprfiles.pls 120.3.12010000.2
    how do I know the version?
    do i need to execute command so that i can able to check version?
    thanks

    Hi,
    Use adident or strings command to get the v ersion.
    Use the strings command or adident to get the version and use the class file instead of the java file, thus:
    $ strings -a <file name> | grep Header
    You should find similar answer in old threads (search for: how to find file version).
    File Versions
    File Versions
    Thanks,
    Hussein

  • How to check version Oracle Datawarehouse Builder

    How to check version Oracle Datawarehouse Builder?
    thanks alot

    How do you check which version you have of the Oracle Datawarehouse Builder ?
    Opatch gave an error, so is there any other method to check it?

  • JVM version check -version:1.4* does not always work

    Jdk1.5 (and later 1.4.2) has a version checking feature in java -version: flag.
    i.e.,
    [ronnc@bill ronnc]$ java -version:1.4.2_05-b04 -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    [ronnc@bill ronnc]$ java -version:1.4* -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    I have this working on some machine but on several machine it just refuses to work in a very perculia way.
    [builder@apollo builder]$ java -version:1.4.2_05-b04 -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    [builder@apollo builder]$ java -version:1.4* -version
    Unable to locate JRE meeting specification "1.4*"
    I've looked into the launcher source code (it checks version info from dir name or jre/RELEASE file) and I think i've setup everything right still having trouble understanding why it doesn't work on some machine. It seems to me that acceptable_release() function doesn't return correctly.
    Anyone have any idea why? Also does anyone know how I can get the source to libjvm.so so that I can look at what it's doing.
    rOnn c.

    It's not documented anywhere except from the command line help
    [ronnc@bill ronnc]$ java -showversion
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -client to select the "client" VM
    -server to select the "server" VM
    -hotspot is a synonym for the "client" VM [deprecated]
    The default VM is client.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A : separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -version:<value>
    require the specified version to run
    -showversion print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
    include/exclude user private JREs in the version search
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions
    Do you see -version:<value> ? I've done my research please do yours.

  • IRecruiment: R12, check version number

    As some API of iRecruiment in R12 are changed a lot. How can we check version of iRecruiment in PL/SQL code?
    Thanks!
    Shirley

    You can use this query
    SELECT patch_level FROM FND_PRODUCT_INSTALLATIONS where application_id = 821;
    Thanks, Avaneesh

  • Check version in solaris 10

    Hi guys. Would like to know which release of solaris 10 ,i am at.? Like i know uname -a
    ## uname -a
    SunOS hes019 5.10 Generic_118822-25 sun4u sparc SUNW,Sun-Fire-V240
    gives you only version 5.10, I would like to check release(level) >?
    Any comments ..info.. help is greatly appreciated.

    Please check the contents of "/etc/release" file

  • Create data dictionary to check version of DB

    Hi all,
    Good afternoon.
    Today I work at a company that develops software to several customers, and we are not the main responsible for there databases, because of this I can't garantee that the database is in agreement with the software version.
    To be able to ensure that the client base has no divergence with the software version I'm thinking about creating my own data dictionary, which at first it would be something like the Oracle data dictionary, after that I need to set up mechanisms to confront my new data dictionary with what is there on the client. My data dictionary will be created here in the company.
    In addition, this data dictionary also would be used by the development team, for example whenever they want to confirm if some object exists or not exists in production. As we know the development database is a 'mess'.
    Does anyone have any suggestion or hint for me about this project?
    Thank you,
    Everson

    Everson Piza wrote:
    Hi Justin, I fully agree with you.
    Today I use the DBA_OBJECTS in order to check some specifics objects, but the application has more then 1800 objects, and I need to check everything.
    The idea isn't to install this new data dictionary in the each customer's database, we'll centralize it here. At the first moment it will be used only for docummentation and check if everything is ok, the application will not use it.
    My main doubt is how to confronte my data dictionary with the customer's database?I'm afraid I don't follow. What do you mean by "confronte"? My first guess is that you meant "confront" but that doesn't make sense in this sentence. I can't think of another word that is spelled similarly that would make sense.
    I don't understand how you could centralize the data dictionary in your database and then use that to do any sort of check on a customer's database. Unless every customer has a database link back to your database, which would seem quite unusual.
    I also guess I don't understand what problem you're trying to solve. Your application has 1800 objects, but that list is, presumably, known in advance. I don't see what building a data dictionary would accomplish. If you are just trying to validate that all 1800 objects exist, couldn't you just generate the script from the Oracle data dictionary in your known good database and send that to the customer?
    Justin

  • Error in script when checking version

    I'm placing some script in the form1::ready:form area and using JavaScript. I'm checking the version of Adobe Acrobat that is being used to lock folks out of using Acrobat 7.0 or earlier.
    My script begins with:
    var vappName = xfa.host.appType;
    var vappVersion = xfa.host.version;
    and uses the variable results to go through some if loops to hide and reveal things as appropriate. With these items at the beginning of my script, I get the error/warning message:
    Script failed (language is javascript; context is xfa[0].form[0].form1[0])
    Error: $host does not have property 'appType'
    My code works as expected (hiding and revealing the proper items when I open the file in different versions of acrobat), so I'm not sure what the error is. I'm also using the same commands on a master page to fill in a text field with the version and type of software the user is using, and I get no errors there. Is the code in the wrong place?
    If I replace the xfa.host.appType or xfa.host.version with text strings like:
    var vappName = "Reader";
    var vappVersion = 9;
    then the code works as expected and has no errors, so there do not appear to be any problems with the if loops that follow.

    1. Some JavaScript actions are not allowed to be executed until the form hasn't be initalized completely, like event.target.closeDoc(true); for example.
    2. This was only a hint for you to avoid wasting time with programming different form actions depending of the users Reader version.
    You can combine the version check with another action, like lauching the URL where the newest Reader can be downloaded.
    That's very user friendly, I think.
    if (typeof(app.viewerVersion) != "undefined")
    if (app.viewerVersion < 9.0)
    if(xfa.host.messageBox("Sorry, but this form requires Adobe Reader version 8.1 or higher!\rPress OK to close the form and download the newest version of Adobe Reader (freeware).\r\rThank you for your cooperation!", "Attention",1,0)==1)
    event.target.closeDoc(true);
    app.launchURL("http://get.adobe.com/de/reader/", true);

  • BAPI_PO_Change in SAP 4.7 not able to check version complete check box

    Hello,
    Our requirement is to change the delivery date  of one or more items in PO after PO release and  print,
    We are using BAPI_PO_CHNAGE to change the delivery date which will run in background.
    As version management is active in our system, new version gets generated as soon as we change the PO and we
    need to check the version completed flag along with the changes in the PO.
    We canot use BDC because, BDC is also not tracking the version management tab specifically the version completed flag while recording.
    We are not very keen in directly updating the PO version table as it may have serious impact in the system.
    WE have treied in SAP 6.0 and its working there but in SAP 4.7 its not working.
    Please help us in solving this problem?
    Thanks in advance.

    closing the question
    Edited by: Sachin on May 19, 2010 7:57 AM

  • Check versioning of files...

    Hello,
    I require information on the repository of the Oracle XML DB. I have the database as well as the
    XML DB Basic demo configured. Then I have send a few txt-files with WebDAV into the repository.
    Next I used DBMS_XDB_VERSION.makeVersioned(). All the txt-Files are under version-control.
    After that I used DBMS_XDB_VERSION.checkout() and send with FTP a second version of a txt-file into
    the repository. At least I used DBMS_XDB_VERSION.checkin().
    How can I check (may be with sql plus) it now? First I want to get the first version of the txt-file.
    Then I want to get the current version of the txt-file. Is this possible to check this with PL/SQL or
    SQL? If yes, how?
    Greetings from Germany
    Ingo
    P.S.: Excuse my bad english, please! ;o)

    Look into
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/appdev.920/a96620/xdb18ver.htm#1037411
    This chapter describes how to access previous versions.
    All versions are identified and accessed using the
    Resorce-ID (RAW(16)).
    There is a function "getPredecessors" the get a list of the id's of all versions.

  • Launch Integration Builder  - Checking version

    I have recently received a new laptop at work.
    When I launch the Integration Builder: Design and Integration Builder: Configuration from the web page, it says checking for latest version before actually launching the application and this takes ages.
    Is there anyway to stop this happening.  It didn't do this on my old machine.
    We are on XI3.0 (sp12), I am have JAVA 1.4.2_08 on my machine.

    hi,
    try moving content of 2 folders from:
    C:\Documents and Settings\<b>youruser</b>\Application Data\Sun\Java\Deployment\javaws\cache\http\D<b>XISERVER</b>\P<b>J2eeport</b>
    to some other location
    when next time you'll log to IB java will be loaded again
    and this may help you
    Regards,
    michal

  • How to check versions of a smartfroms

    Hi Experts,
    Can you tell me how to check different versions of smartfroms.
    Regards,
    Kali Pramod

    i think u cannot maintain versions for smartforms.

  • Check Version of  Spry

    I had to do a repair install of DW CS3 today, and i want to
    make sure i am still using Spry v1.6, i haven't found anywhere that
    displays the version DW is using. Is there a way to find out or
    check that i am not using a old version.

    Check the files manually,
    If u open them u will the current release function in the
    copyright header
    Example:
    // SpryPagedView.js - version 0.7 - Spry Pre-Release 1.6
    // Copyright (c) 2006. Adobe Systems Incorporated.
    // All rights reserved.
    // Redistribution and use in source and binary forms, with or
    without
    // modification, are permitted provided that the following
    conditions are met:
    // * Redistributions of source code must retain the above
    copyright notice,
    // this list of conditions and the following disclaimer.
    // * Redistributions in binary form must reproduce the above
    copyright notice,
    // this list of conditions and the following disclaimer in
    the documentation
    // and/or other materials provided with the distribution.
    // * Neither the name of Adobe Systems Incorporated nor the
    names of its
    // contributors may be used to endorse or promote products
    derived from this
    // software without specific prior written permission.
    Above u will see Sprypagedview. what edit version it is an
    what release version.

  • To check version update

    Hi Folks,
    I have many sites as well as many doc library in every site, I need to execute command whether version is enabled or not every document in one site.So please give solution for this.
    Thanks

    Loop through each library and use the following code
    If ($list.EnableVersioning -eq $TRUE)
    //perform changes
    http://sharepoint.stackexchange.com/questions/23768/use-powershell-to-check-whether-or-not-a-sharepoint-list-is-a-document-library
    Cheers,

  • Check version & update application JAR

    I've been doing some searches on goolge and sun.java.com, but haven't come up with anything that directly addresses my question:
    I would like to implement version checking for an application... ie when the application is launched, it checks with my server to see if there is a newer version of the application, and if there is, it allows the user to download the JAR file(s) that have been updated, placing them in the application directory.
    Are there any examples/tutorials on this subject that I could look at?
    I am not using Web Start.

    Well, maybe you should use web start.... because that's what it does. Or you could steal the code from the open version of web start.... because again... that's what it does. I generally try not to reinvent the wheel.
    :-�
    java -version java version "1.4.1-beta"Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-beta-b04)
    Java HotSpot(TM) Server VM (build 1.4.1-beta-b04, mixed mode)

  • Check version of Flash remotely

    Does anyone know how to write a script that can remotely
    check the current version of Adobe Flash on multiple
    workstations?

    I found a solution to this. Just run a batch file to run the
    following commmand:
    SET VAR=%1
    filever /ad
    "\\%VAR%\C$\WINDOWS\system32\Macromed\Flash\flash*.ocx"
    You'll need to copy the "filever.exe" command to your
    System32 folder and %VAR% is the name of the remote
    workstations.

Maybe you are looking for