How to find the version of AIA and PIP

Is there any way, where in we can find the version of AIA and PIP installed on a server ?
thanks

Option 1 : From AIA 2.4, navigate to AIA console (http://<host:port>/AIA), go to the Setup tab and view the version.
In the upper right hand corner of the AIA console, there is an "About AIA" link which will show you the AIA FP and PIP version numbers.
Option 2
You can find the PIP version details under AIAHOME(PIP Install home directory)/config/deploy.properties file.

Similar Messages

  • How to find the version of weblogic and ADR from the zip file

    Can someone please tell me what version of weblogic is this => wls1034_generic.jar? And what version of ADR libaries are these ? => ofm_appdev_generic_11.1.1.2.0_disk1_1of1.zip ???
    and ofm_appdev_generic_11.1.1.3.0_disk1_1ofzip ???

    So is WLS 10.3.4. is compatible with ADR libs 11.1.1.2 and 11.1.1.3?
    Edited by: user9021545 on Jun 17, 2011 1:33 PM

  • How to find the version of oem

    How to find the version of the installed oem?
    I have /home/oracle/10.1.0/oem
    But I wanted to know the the last digit as well
    thanks

    BTW - For both DB Control and Grid Control, you can also use also find the version using the url (assuming your EM is already working)
    http://servername:port/em/console/aboutApplication
    From the displayed page, you can also click on the License url to go to the Oracle Enterprise Manager 10g License Information.

  • How to find the Version of CRM system

    Hi All,
    I have to install CRM system and I dont have any other information other than the EWA Report, Can any one let me know how to find the Version of CRM system and we dont have Java installed in it (Generally we check WEBCUIF but as we dont have Java I cannot see the Package). Can I go with the CRMUIF ?? .
    I have Pasted the information of Support Package Maintenance, that is available in EWA Report.
    BBPCRM
    600
    4
    13
    SAP BBPCRM Server
    CRMUIF
    600
    4
    17
    SAPK-60004INCRMUIF
    SAP CRM User Interface Framework
    PI_BASIS
    2005_1_700
    16
    26
    SAP R/3 Basis Plug-In
    SAP_ABA
    700
    16
    29
    SAP Application Basis
    SAP_AP
    700
    13
    29
    SAP_BASIS
    700
    16
    29
    SAP Basis Component
    SAP_BW
    700
    18
    31
    SAP Business Information Warehouse
    ST-A/PI
    01P_700
    0
    SAPKITAB7I
    SAP Service Tools for Applications Plug-In
    ST-PI
    2008_1_700
    6
    8
    SAP Solution Tools Plug-In
    Please let me Know. Thanks in Advance.
    Vijay

    Hi,
    Logically your Status bar should show that.
    Login to gui. --> system -> Status
    and then you should see the crm version in your Component version.
    SAP CRM ABAP 6.0
    You should go with
    BBPCRM
    600
    Thanks
    Rishi abrol

  • How to find the version appl server?

    How to find the version of IAS, forms and reports?
    we are running HRMS on HP unix server.
    Thanks

    Hi,
    You can get your application server version in the context file with the value of the context variable s_techstack.
    You can also do it with the following steps,
    On Windows NT/2000 platform :
    Navigate to :
    C:\Program Files\Oracle\Inventory\Components
    \oracle.iappserver.iapptop directory.
    On UNIX platform:
    Navigate to :
    $ORACLE_HOME/oraInventory/Components/oracle.iappserver.iapptop directory
    In both cases the sub directory under the oracle.iasppserver.iapptop directory will show the version of Application Server installed. For example thesubdirectory may be called 1.0.2.2.1, which indicates version 1.0.2.2.1.
    Rgds,
    S.Jai
    Shanthi Gears (LTD)

  • How to find the version of Internet Sales

    Hi
    Please tell me how to find the version of R/3 Internet Sales. We are using ECC 6.0 and R/3 Internet Edition along with CRM 3.1
    Thanks

    Hi
    If you wan to find out version and SP information then go to
    http://<host>:<port>/sap/monitoring/ComponentInfo
    give Administrator/pasword and it will display version with SP# information for each component. As ISA is not single component application so you have to get component version information which you have used in your ISA. It may happen that all component are not at same SP level.
    eCommerce Developer

  • How to find the max session count and process count for a database

    Hi All,
    How to find the maximum session count and process count reached for a database over a period of 15 days?
    DB version:11.2.0.2
    OS:AIX

    Thanks for the link.
    The output of the below query that is given in the link shows the results for the last 10 or 12 days.. Is there a query which gives a result for the last 30 days?
    col metric_unit for a30
    set pagesize 100
    Select trunc(end_time),max(maxval) as Maximum_Value,metric_unit
    from dba_hist_sysmetric_summary
    where metric_id in ( 2118,2119) group by trunc(end_time),metric_unit order by 1;

  • How to find the Last modified date and time of a package

    Hi,
    We need a clarification on how to find the Last modified date and time of a package in Oracle. We used the example below to explain our scenario,
    Lets consider the following example
    Let A, B be two packages.
    Package A calls the package B. So A is dependent on B.
    When A is compiled the TIMESTAMP,LAST_DDL_TIME in USER_OBJECTS gets updated.
    Now there a modification in package B so it is compiled. There is no modification in package A.
    Now when the package A is executed the TIMESTAMP,LAST_DDL_TIME in USER_OBJECTS gets updated but we did not make any change in Package A. Now we need to find last modified date and time of the package A . So we can not rely on the TIMESTAMP,LAST_DDL_TIME in USER_OBJECTS . Can u please tell us any other solution to get last modified date and time of the package A .
    Regards,
    Vijayanand.C

    Here is an example:
    SQL> SELECT OBJECT_NAME,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS FROM USER_OBJECTS
    2 WHERE OBJECT_NAME = ANY('A','B');
    OBJECT_NAM CREATED LAST_DDL_TIME TIMESTAMP STATUS
    A 20-MAY-2004 10:57:32 20-MAY-2004 10:57:32 2004-05-20:10:57:32 VALID
    B 20-MAY-2004 10:58:22 20-MAY-2004 10:59:04 2004-05-20:10:59:04 VALID
    SQL> CREATE OR REPLACE PROCEDURE A AS
    2 BEGIN
    3 NULL;
    4 NULL;
    5 END;
    6 /
    Procedure created.
    SQL> SELECT OBJECT_NAME,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS FROM USER_OBJECTS
    2 WHERE OBJECT_NAME = ANY('A','B');
    OBJECT_NAM CREATED LAST_DDL_TIME TIMESTAMP STATUS
    A 20-MAY-2004 10:57:32 20-MAY-2004 11:01:28 2004-05-20:11:01:28 VALID
    B 20-MAY-2004 10:58:22 20-MAY-2004 10:59:04 2004-05-20:10:59:04 INVALID
    SQL> EXEC B
    PL/SQL procedure successfully completed.
    SQL> SELECT OBJECT_NAME,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS FROM USER_OBJECTS
    2 WHERE OBJECT_NAME = ANY('A','B');
    OBJECT_NAM CREATED LAST_DDL_TIME TIMESTAMP STATUS
    A 20-MAY-2004 10:57:32 20-MAY-2004 11:01:28 2004-05-20:11:01:28 VALID
    B 20-MAY-2004 10:58:22 20-MAY-2004 11:01:53 2004-05-20:11:01:53 VALID
    Note that the date under the column 'created' only changes when you really create or replace the procedure.
    Hence you can use the column 'created' of 'user_objects'.

  • How to find the version of SAP

    hi,
    please tell me how to find the version of SAP like 4.6, 4.7 or ECC5.
    regards
    prabhu

    click in your menu: System - Status.
    in the field componen status there is your version.
    if you are not common to descriptions like "ECC 5.0 or like that, you might wan to click that small button right beneath.

  • How to find the relation between PAY_ELEMENT_TYPES_F and GL_CODE_COMBINATIO

    Hi, could someone tell me how to find the relation between PAY_ELEMENT_TYPES_F and GL_CODE_COMBINATION tables
    that is because as you could know PAY_ELEMENT_TYPES_F holds the definitions of elements in Oracle HRMS and i need to find the accounting code of each element.
    Thanks

    Hi;
    Please check e-trm site for table relation,integration,explanation etc..
    etrm.oracle.com/
    Regard
    Helios

  • How to find the link between strcture and query technical name

    Hi Guru's
    How to find the link between Strcture in the query and query technical name. In other way where used list of the structure  used in queries?
    I know we have table called RSZELTDIR which have the values of strcuture name. from here i do not find any link to query technical name.
    Please can anyone help me?
    Regards,
    Sirisha

    Hi ,
    For structure and query relationship, the structure has to be a reusable structure( a global one). Then you can right click in on the structure name (in BEX query designer) and select the where used list. You will find all the query names where it is being used.
    U can also check out tables RSRREPDIR and RSZCOMPDIR for other query properties.
    Thanks,
    Amit

  • How to find the version of the WCI?

    Hi , I want to know the version of WCI in one of the customer environment? Can anyone help me on this?

    WCI has a few xml files that can help you find the version and, more importantly, build number of your installed product.
    <install dir>\ptportal\10.3.0\version.xml
    <install dir>\aluidirectory\1.0\version.xml
    <install dir>\cns\1.0\version.xml
    <install dir>\ptcollab\10.3.0\version.xml
    <install dir>\ptanalytics\10.3.0.1\version.xml
    <install dir>\ptupload\10.3.0\version.xml
    <install dir>\ptdr\10.3.0\version.xml
    <install dir>\ptsearchserver\10.3.0\version.xml

  • How to find the system default scripts and prompts in UCCX 8.0

    Hello everyone,
    I have a bit of experience in UCCX 6.0 and just began to use UCCX 8.0. There's a question that where can I find the system default scripts and prompts in 8.0? In 6.0, I can find them in installing directory, but 8.0 is linux based so I can not do that in same way.
    Thanks.

    You can Login to CLI with either root access or remote user access and get default scripts by going to
    CD /opt/cisco/uccx/Scripts/system/default
    At this point you have to connect to ftp server and move these default script to yoru FTP server.
    I hope this helps

  • How to find the version of a package

    Hi ,
    Please let me know the command to find the version of a package.
    For Example I want to know the version of ARPURG.pls file .
    Thanks
    Naveen.

    Unix: strings -a ARPURG.pls | grep -i Header
    Windows: find "Header" ARPURG.pls | more

  • How to find the version, release and sub release of HFM

    Dear
    Need to check what exactly is the version, release and sub release of HFM.
    I have only the information that is 11.1.2.1. xxxxx
    I want to find out x
    How can I get?
    thank you

    I got it to run using Celvin method (using the JRE not the JDK).  The JDK method threw back the following(E:\Oracle\Middleware\EPMSystem11R1\OPatch>opatch lsinventory -oh E:\Oracle\Middleware\EPMSystem11r1 -jdk E:\"Program Files (x86)"\Java\jdk1.7.0_17\bin
    Files was unexpected at this time)
    The method below worked:
    E:\Oracle\Middleware\EPMSystem11R1\OPatch>opatch.bat lsinventory -jdk E:\Oracle\
    Middleware\jdk160_35
    Oracle Interim Patch Installer version 11.1.0.9.9
    Copyright (c) 2012, Oracle Corporation.  All rights reserved.
    Oracle Home       : E:\Oracle\MIDDLE~1\EPMSYS~1
    Central Inventory : E:\Program Files\Oracle\Inventory
       from           : n/a
    OPatch version    : 11.1.0.9.9
    OUI version       : 11.1.0.9.0
    Log file location : E:\Oracle\MIDDLE~1\EPMSYS~1\cfgtoollogs\opatch\opatch2013-09
    -24_15-03-36PM_1.log
    OPatch detects the Middleware Home as "E:\Oracle\Middleware"
    Lsinventory Output file location : E:\Oracle\MIDDLE~1\EPMSYS~1\cfgtoollogs\opatc
    h\lsinv\lsinventory2013-09-24_15-03-36PM.txt
    Installed Top-level Products (2):
    Oracle EPM System                                                    11.1.2.3.0
    Oracle WebTier and Utilities CD                                      11.1.1.7.0
    There are 2 products installed in this Oracle Home.
    There are no Interim patches installed in this Oracle Home.
    OPatch succeeded.
    E:\Oracle\Middleware\EPMSystem11R1\OPatch>
    **This is the actual file contents. **
    --------------------------------------------------------------------------------Installed Top-level Products (2):
    Oracle EPM System                                                    11.1.2.3.0Oracle WebTier and Utilities CD                                      11.1.1.7.0There are 2 products installed in this Oracle Home.
    There are no Interim patches installed in this Oracle Home.--------------------------------------------------------------------------------

Maybe you are looking for