Q1. How to get version of runtime libraries

Hi,
I am not a developer but this seems like the best place to ask this question.
I want to find out what version of the Sun C++ runtime libraries are being used on a machine. They are using the runtime version (there is no compiler installed). The SUNW* directories that are under /opt are:
SUNWexplo
SUNWconn
SUNWebnfs
SUNWits
SUNWrtvc
SUNWspro
Which command do I need to run against what to find the version? I want to find out if they are using 5.0, 5.5 or 5.7.
Thanks in advance,

You need to know exactly which libraries are in linked => use ldd on the executable.
Normally, /usr/lib/libCrun.so.1 (and /usr/lib/libCstd.so.1 if any of the standard library is used) are the ones that get linked.
However, depending on how the application was built and some environment variables (LD_PRELOAD, LD_LIBRARY_PATH) it is possible for applications to use other versions of these files.
In the standard case, the C++ runtime libs are in the packages SUNWlibC (and SUNWlibCx for 64bit) => pkgchk -l -p /usr/lib/libCstd.so.1 to see which package the lib is in
To see which patch is applied, try
showrev -p | grep libC
This should show something like
Patch: 108434-10 Obsoletes: Requires: 109147-07 Incompatibles: Packages: SUNWlibC
Patch: 108435-10 Obsoletes: Requires: 108434-10 Incompatibles: Packages: SUNWlibCx
Lastly, you could try
elfdump -v /usr/lib/libCrun.so.1
which will show you some version info (which should match what ldd indicates the application needs)
Paul

Similar Messages

  • How to get version 6.1

    How to get version 6.1 ?

    Yes there is.
    The iOS update 6.1 includes upgrades to the protocol for LTE/4G which is in Denmark.
    The people who bought an subscription with 4G/LTE have to wait for the iOS 6.1 update to get acces to it.

  • How to get version of JRE on current machine in programming

    Hi, all
    Please help me how to get version of JRE on current machine,
    thanks many

    depending on what exactly you want to know:
    System.getProperty("java.version")
    System.getProperty("java.vendor")
    System.getProperty("java.vm.version")
    System.getProperty("java.vm.vendor")
    System.getProperty("java.vm.name")
    Nick.

  • How to get ESB's runtime?

    How to get exact ESB's runtime,when i replicate data in one table on one database to table on another database.
    thank you advance!
    lemon...

    you need to create Runtime intsance ESB in oralce home,that will work on the same instance for tranfering the table to anthor database ,
    You need to cluster the OC4J.
    Please gothrough the following document .
    http://download.oracle.com/docs/cd/E10291_01/core.1013/e10294/webapp.htm#CHDFEBBE
    please see the 3.13 section for Installing the Oracle Enterprise Service Bus Runtime Instances on two virtual Hosts ,
    please see the 3.19 section Deploying the Oracle Enterprise Service Bus Repository Instance on two virtual Hosts and see the 3.20 Configuring Service
    Thank you
    Venkat Bollineni

  • How to get button at runtime

    Hi Experts,
    In my report i use for dipaly button:
    I have 3 button in my report
    below my dispaly button code:
    selection-screen function key 1.
    selection-screen function key 2.
    selection-screen function key 3.
    INITIALIZATION.
      MOVE 'DISPLAY' TO SSCRFIELDS-FUNCTXT_01.
      MOVE 'DELETE' TO SSCRFIELDS-FUNCTXT_02.
      MOVE 'UPDATE' TO SSCRFIELDS-FUNCTXT_03.
    when programn run i have to disable the update:
    through this coding :
    AT SELECTION-SCREEN OUTPUT.
      APPEND 'ONLI' TO itab.
      APPEND 'FC03' TO ITAB.
    CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
      EXPORTING
        p_status = sy-pfkey
        TABLES
        p_exclude = itab.
    now what i want when i click on display button then my update button is enable on the screen. in Itab i have value of update but how can i get this value.... from itab...
    Pl give me suggestion.........
    Jigar

    Hi Ashish,
    below my code:::
    just refer it.................
    REPORT  ZFI_DLC_DESKCODE_DELETE.
    DATA DECLARATION
    TABLES : ZDESKDLC,SSCRFIELDS.
    selection-screen function key 1.
    selection-screen function key 2.
    selection-screen function key 3.
    DATA: LW_SELECT TYPE zdeskdlc,
          LW_UPDATE TYPE ZDESKDLC,
          W_ANSWER(20).
    clear: lw_update, lw_select.
    data: begin of itab occurs 0,
          sy-ucomm like sy-ucomm,
          end of itab.
    *DATA itab TYPE TABLE OF sy-ucomm.
    *DATA ITAB type SY-UCOMM OCCURS 0 WITH HEADER LINE.
    DATA: P_REPID LIKE SY-REPID.
    SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
        PARAMETERS: CCOD LIKE ZDESKDLC-CCODE MODIF ID ABC.
        PARAMETERS: DESKCODE LIKE ZDESKDLC-DESK_CODE MODIF ID ABC.
    SELECTION-SCREEN END   OF BLOCK B1.
    SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-001.
        PARAMETERS: CCOD1 LIKE ZDESKDLC-CCODE MODIF ID DEF,
                    DESKCD LIKE ZDESKDLC-DESK_CODE MODIF ID DEF,
                    SR_MANAG LIKE ZDESKDLC-SR_MANAGEMENT MODIF ID DEF,
                    LASTNAME LIKE ZDESKDLC-LAST_NAME MODIF ID DEF,
                    FIRSTNM LIKE ZDESKDLC-FIRST_NAME MODIF ID DEF,
                    DEPART LIKE ZDESKDLC-DEPARTMENT MODIF ID DEF,
                    ADM_SYS LIKE ZDESKDLC-ADMIN_SYSTEM MODIF ID DEF,
                    RACF_ID LIKE ZDESKDLC-RACF_ID MODIF ID DEF,
                    OPEN_DT LIKE ZDESKDLC-OPEN_DATE MODIF ID DEF,
                    CLOSE_DT LIKE ZDESKDLC-CLOSE_DATE MODIF ID DEF,
                    SAPUSRID LIKE ZDESKDLC-SAP_USER_ID MODIF ID DEF.
    SELECTION-SCREEN END   OF BLOCK B3.
    START-OF-SELECTION
    INITIALIZATION.
      MOVE 'DISPLAY' TO SSCRFIELDS-FUNCTXT_01.
      MOVE 'DELETE' TO SSCRFIELDS-FUNCTXT_02.
      MOVE 'UPDATE' TO SSCRFIELDS-FUNCTXT_03.
    AT SELECTION-SCREEN OUTPUT.
    AT SELECTION-SCREEN OUTPUT.
      APPEND 'ONLI' TO itab.
      APPEND 'FC03' TO ITAB.
    CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
      EXPORTING
        p_status = sy-pfkey
        TABLES
        p_exclude = itab.
    AT SELECTION-SCREEN.
    AT SELECTION-SCREEN.
        clear lw_update.
        LW_UPDATE-SR_MANAGEMENT = SR_MANAG.
        LW_UPDATE-LAST_NAME   = LASTNAME.
        LW_UPDATE-FIRST_NAME  = FIRSTNM.
        LW_UPDATE-DEPARTMENT   = DEPART.
        LW_UPDATE-ADMIN_SYSTEM   = ADM_SYS.
        LW_UPDATE-RACF_ID   = RACF_ID.
        LW_UPDATE-OPEN_DATE   = OPEN_DT.
        LW_UPDATE-CLOSE_DATE   = CLOSE_DT.
        LW_UPDATE-SAP_USER_ID   = SAPUSRID.
        SELECT SINGLE * FROM ZDESKDLC
        INTO lW_SELECT
        WHERE CCODE = CCOD1 and
        DESK_CODE = DESKCD OR CCODE = CCOD AND DESK_CODE = DESKCODE.
    IF SSCRFIELDS-UCOMM = 'FC01'.
    *MOVE: P_REPID TO GLOBAL-PROG.
    *MOVE ITAB(2) TO 'SCRH'.
    *MOVE ITAB(2) TO SSCRFIELDS-FUNCTXT_03.
    *MOVE P_REPID TO GLOBAL-PROG.
       move itab-fc03 to SSCRFIELDS-FUNCTXT_03.
    *move 'FC03' TO SSCRFIELDS-FUNCTXT_03.
    *append itab to 'FC03'.
    *CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
       p_status = sy-pfkey
       TABLES
       p_exclude = itab.
    *MOVE 'UPDATE' TO SSCRFIELDS-FUNCTXT_03.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
        clear lw_update.
        CLEAR LW_SELECT.
        lw_update-ccode = ccod1.
        lw_update-desk_code = deskcd.
        LW_UPDATE-SR_MANAGEMENT = SR_MANAG.
        LW_UPDATE-LAST_NAME   = LASTNAME.
        LW_UPDATE-FIRST_NAME  = FIRSTNM.
        LW_UPDATE-DEPARTMENT   = DEPART.
        LW_UPDATE-ADMIN_SYSTEM   = ADM_SYS.
        LW_UPDATE-RACF_ID   = RACF_ID.
        LW_UPDATE-OPEN_DATE   = OPEN_DT.
        LW_UPDATE-CLOSE_DATE   = CLOSE_DT.
        LW_UPDATE-SAP_USER_ID   = SAPUSRID.
        SELECT SINGLE * FROM ZDESKDLC
        INTO lW_SELECT
        WHERE CCODE = CCOD1 and
        DESK_CODE = DESKCD OR CCODE = CCOD AND DESK_CODE = DESKCODE.
        move lw_select-ccode to ccod1.
        move lw_select-desk_code to deskcd.
        move LW_select-SR_MANAGEMENT to SR_MANAG.
        MOVE LW_SELECT-Last_name TO LASTNAME.
        MOVE LW_SELECT-FIRST_NAME TO FIRSTNM.
        move LW_select-DEPARTMENT to DEPART.
        move LW_select-ADMIN_SYSTEM to ADM_SYS.
        move LW_select-RACF_ID to RACF_ID.
        move LW_select-OPEN_DATE to OPEN_DT.
        move LW_select-CLOSE_DATE to CLOSE_DT.
        move LW_select-SAP_USER_ID to SAPUSRID.
        CLEAR LW_SELECT.
        if sy-subrc <> 0.
            MESSAGE S002(zjig)." WITH 'NO RECORD FOUND'.
            clear: ccod, deskcode.
        endif.
    ENDIF.
    IF SSCRFIELDS-UCOMM = 'FC02'.
      if sy-subrc <> 0.
            MESSAGE S002(zjig)." WITH 'NO RECORD FOUND'.
            clear: ccod, deskcode.
      else.
      CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
      titlebar = 'Warning'
      text_question = 'Are you sure want to delete this record'
      text_button_1 = 'YES'
      text_button_2 = 'NO'
      DEFAULT_BUTTON = 1
      display_cancel_button = ' '
      start_column = 25
      start_row = 6
      IMPORTING
      answer = W_ANSWER.
      CASE W_ANSWER.
        WHEN 1.
        DELETE from zdeskdlc where
        CCODE = CCOD AND
        DESK_CODE = DESKCODE.
          IF SY-SUBRC = 0.
            MESSAGE S001(zjig)." WITH 'Data Delete successfully'.
            clear: ccod, deskcode.
            clear: CCOD1,DESKCD,SR_MANAG,LASTNAME,FIRSTNM,DEPART,ADM_SYS,RACF_ID,OPEN_DT,CLOSE_DT,SAPUSRID.
          ELSE.
            MESSAGE S002(zjig)." WITH 'NO RECORD FOUND'.
            clear: ccod, deskcode.
          ENDIF.
      ENDCASE.
      endif.
    endif.
    IF SSCRFIELDS-UCOMM = 'FC03'.
      UPDATE zdeskdlc SET SR_MANAGEMENT = LW_UPDATE-SR_MANAGEMENT
      LAST_NAME = LW_UPDATE-LAST_NAME
      FIRST_NAME = LW_UPDATE-FIRST_NAME
      DEPARTMENT = LW_UPDATE-DEPARTMENT
      ADMIN_SYSTEM = LW_UPDATE-ADMIN_SYSTEM
      RACF_ID = LW_UPDATE-RACF_ID
      OPEN_DATE = LW_UPDATE-OPEN_DATE
      CLOSE_DATE = LW_UPDATE-CLOSE_DATE
      SAP_USER_ID = LW_UPDATE-SAP_USER_ID
      WHERE CCODE = CCOD1
      AND DESK_CODE = DESKCD.
        IF SY-SUBRC = 0.
            MESSAGE S003(zjig)." WITH 'data modified successfully'.
        ENDIF.
        CLEAR LW_UPDATE.
    ENDIF.

  • How to get version using Acrobat SDK

    I have a plug-in for Adobe Reader and Adobe Acrobat.
    Depending on the product and version, the plug-in has to perform few functionalities.
    I am using ASGetConfiguration() to get the product name.
    Is there any API to get the version of  Reader and Acrobat?
    Thanks in advance,
    Vatsapal

    AVAppGetVersion()

  • How to get Repeater's runtime height

    Hi,
    I have a Repeater that may contain several 'Text' UI components at runtime.
    Now I need the total height occupied by these collective text UI elements.
    Please let me know how to do it.
    Thanks,
    Amey

    Hi,
    Thank you for reply.
    But this gives me compile time error that -->
    Multiple markers at this line:
    -1120: Access of undefined property skillGroupsVBOX.
    -1046: Type was not found or was not a compile-time constant: UIComponent.
    In Script: -
                private function clickHandler(item:Object):void {
                    var cName : String = item.sgname;
                    item.textDecoration = "underline";
                    if(cName == "Grp1"){
                        selectedSkill = 1;
                        spacerHeight = 0;
                    }else if(cName == "Grp2"){
                        selectedSkill = 2;
                        spacerHeight = 1;
                    }else if(cName == "Grp3"){
                        selectedSkill = 3;
                        spacerHeight = 2;
                    for each (var component:UIComponent in skillGroupsVBOX.getChilderen()) {
                        repeaterTotalHeight += component.height;
    In MXMX: -
            <mx:HBox id="skillHbox" horizontalAlign="left" >
                <mx:VBox id="skillGroupsVBOX" horizontalAlign="left" verticalGap="0">
                    <mx:Repeater id="rptSkillGroups" dataProvider="{SkillGroups}">
                        <mx:Text text="{rptSkillGroups.currentItem.sgname}"
                                       click="clickHandler(event.currentTarget.getRepeaterItem());"
                                       mouseOver="clickHandler(event.currentTarget.getRepeaterItem());"
                                       buttonMode="true" useHandCursor="true"
                                       />
                    </mx:Repeater>
                </mx:VBox>
                <mx:VBox id="skillDescVBOX" >
                    <mx:ViewStack id="skillDescViewStack" selectedIndex="{selectedSkill}" >
                        <!-- child 0 -->
                        <mx:VBox id="emptyVBox" showEffect="{wipeRight}" hideEffect="{wipeLeft}">
                        </mx:VBox>
                        <!-- child 1 -->
                        <mx:VBox id="Act_A_VBox" showEffect="{wipeRight}" hideEffect="{wipeLeft}" >
                            <mx:Spacer height="{spacerHeight}"/>
                            <mx:Repeater id="rptAct_A" dataProvider="{Act_A}">
                                <mx:Text  htmlText="{rptAct_A.currentItem.act}" width="90%" />
                            </mx:Repeater>
                        </mx:VBox>
                        <!-- child 2 -->
                        <mx:VBox id="Act_B_VBox"  showEffect="{wipeRight}" hideEffect="{wipeLeft}">
                            <mx:Repeater id="rpt_B" dataProvider="{Act_B}">
                                <mx:Text  htmlText="{rpt_B.currentItem.act}" width="90%" />
                            </mx:Repeater>
                        </mx:VBox>
                        <!-- child 3 -->
                        <mx:VBox id="Act_C_VBox" showEffect="{wipeRight}" hideEffect="{wipeLeft}">
                            <mx:Repeater id="rpt_C" dataProvider="{Act_C}">
                                <mx:Text  htmlText="{rpt_C.currentItem.act}" width="90%" />
                            </mx:Repeater>
                        </mx:VBox>
                    </mx:ViewStack>
                </mx:VBox>
            </mx:HBox>

  • How to get version and up gradation details

    hi,
    as we all know on which version we r working presently only because of someone tells us.
    but i want to know is there any specification or table where we can see our current version and how many up gradation are happened there.
    thanks.

    Go to System->Status and click on "Component Details".

  • How to get the Form runtim diagnostics log file

    Hi,
    I followed the instruction of Metalink Notes:
    R12: Forms Runtime Diagnostics (FRD), Tracing And Logging For Forms In Oracle Applications http://ID 438652.1
    Option 1: Obtain FRD Trace Using Profile Options
    Method 1: Using profile option 'ICX: Forms Launcher'
    I was not able to get the log file.
    Any suggestions

    Yes, I follow the instruction, set profile at user level, and bounce Apache.
    When I log in to application, I do see a message that the low level trace is enabled.
    the directory is:
    /u1/dev/inst/apps/apps/dev/logs/ora/10.1.2/forms

  • How to get versioning to work on network drive?

    I'm having a setup with two computers. An iMac and a Mac mini, both running Lion.
    I have so far been happy with the versioning in iWork and appreciate not having to save the file before exiting Pages.
    Well, that was when the document was stored on my iMac.
    Now that I want to access the disk on my Mac mini from my iMac Pages will no longer play ball.
    When I edit a document in Pages on my iMac and that document is stored on the shared drive of the Mac mini Pages no longer support versioning.
    I can still exit Pages without having to save the document, but I no longer have access to earlier versions.
    Is this the way it was designed?
    I'm sharing the Mac mini disk by sharing a folder with AFP and SMB.
    I don't edit any of the documents on the Mac mini, all editing is done on the iMac.
    Actually, Pages is not even installed on the Mac mini.
    Is there anything I can do in my setup to make Versioning work on my network drive?

    Versions is really a function of Lion so I suggest posting the question in the Lion forum. You're much more likely to find someone with an answer there.

  • How to get version of the MDS in cmduFF1F

    as the subject!

    Hi,
    1. Open command prompt...
    2. Navigate to MDM Server installation directory...
    3. Execute command as...
    >>mds.exe -help
    This will open a window displaying various options ( /Version is one of them which will show server version).
    - Shailesh.

  • How to get version of XDK being used

    Is there a programmatic way of retrieving the version of the XDK being used?

    You can call getReleaseVersion() on DOMParser.

  • I can't view old iphoto libraries. It wants me to use a new version of iphoto but from all the commits here, no one likes it. Help! how do i get to my old libraries???

    I can't view old iphoto libraries. It wants me to use a new version of iphoto but from all the commits here, no one likes it. Help! how do i get to my old libraries???

    With the amount of information you've provided it's impossible to offer a potential solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    what do you see when iPhoto opens?
    what fixes have you tried?
    where is you library located?
    did you apply any updates or upgrades just prior to the problem occurring?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    how much free space on your boot drive?
    OT

  • How to get which JRE version is used during runtime?

    Hi.
    I want to know in my application which JRE version the user is using. Is there some method in Properties Object?
    Thank you in advance

    System API tells all...
    "The current set of system properties for use by the getProperty(String) method is returned as a Properties object. If there is no current set of system properties, a set of system properties is first created and initialized. This set of system properties always includes values for the following keys: "
    Key                   Description of Associated Value
    java.version          Java Runtime Environment version

  • Version issue of base SAP DCs versus Runtime libraries

    I have created a DC project of type Web Dynpro. In JDI my track is defined with the 3 base dependent DCs (SAP-JEE, SAP-JTECHS, SAP-BUILDT). I am able to sync used DCs and have locally.
    When I try to build a very simple project I get the following build error "com.sap.tc.webdynpro.progmodel.api.IWDApplicationStateChangeInfo cannot be resolved (or is not a valid type) for the argument stateChangeInfo of the method wdDoApplicationStateChange".
    What I discovered is that the class "wdDoApplicationStateChange" does not exist in the "_webdynpro_progmodel.jar" file that was sync'd as part of the SAP-JEE DC BUT when I look at the WD runtime libraries that is part of my Studio install that class does exist in the jar file.
    If I create the same application as a standalone Web Dynpro project, it builds locally successfully and when I deploy it to the Portal it runs perfectly.
    Therefore it seems I need to deal with 3 versions of the same libraries:
    1. The local WD runtime that comes with the Studio install.
    2. The libraries that come when sync'ing used DCs (i.e. SAP-JEE, SAP-JTECHS, SAP-BUILDT).
    3. The actual runtime on the portal.
    Questions:
    - How can we verify we have imported the correct version of the used DCs (i.e. SAP-JEE, SAP-JTECHS, SAP-BUILDT) in the JDI so the related libraries match the actual runtime?
    - Is there somewhere on SDN or other SAP site a version roadmap of these SAP supplied DCs?
    I tried to find documentation/references related to versioning of these SAP supplied DCs and could not find anything helpful.
    Even our BASIS administrator is having trouble identifying the correct versions.

    Pascal,
    you mention the following:
    The SP level of the three base SCs MUST match the SP level of your target runtime systems. It is also adviseable to have your NWDS at this same SP level (especially when you are building Web Dynpro's).
    So can you help here...
    We have modified the source code of the following version of the NW2004 ESS component: SAP_ESS 100 sp16
    We would like to plan to upgrade to the following version of the NW2004s ESS component: SAP_ESS 600 sp12
    The "NWDI Cookbook for XSS Customers" seems to only document the procedure and migration path on how to upgrade from one sp to the next sp WITHIN THE SAME VERSION.
    (For Example: SAP_ESS 100 sp16 to SAP_ESS 100 sp19)
    We need to know the migration path and process for upgrading from NW2004 to NW2004s. 
    (For Example: SAP_ESS 100 sp16 to SAP_ESS 600 sp12)
    My hunch is we will follow a similar process, however, questions around what version of NWDS do we need to use for handling both the NW04 and NW04s component in using the Meta-Data Comparison Tool.  If we need to always make sure our NWDS matchs our target J2EE Server Version, how will this work when we are working with 2 different J2EE server versions during the upgrade? (NW04 and NW04s)

Maybe you are looking for

  • Internet only works on WIFI - 4g icons etc disappeared

    Hi guys, I have had a dig around online and can't seem to find a solution to my problem. My Sony Experia Z3 Compact had been working fine (probably for around 5 months) until recently. For some reason I can only access the Internet if I connect to WI

  • Standard R3 report in SAP BW

    Dear all, I need to design the standard R3 report T code: S_ALR_87012284 financial statements in SAP BW in a bit customized way. I am bit confused about which base tables are being used in the report .  Would any body suggest on this ? Also this stan

  • HT201262 Fonts and graphics are slightly "fuzzy". Colors are not correctly displaying

    After Mavericks installation on my Macbook Pro mid-2012 (non-retina), the fonts appear slightly fuzzy, the graphics seems less crisp and the colors are just "off". This issue seems to be system wide but is much worse whilst using Safari for some reas

  • What are the required depreciation areas to post IFRS

    Hi, what are the required depreciation areas to post IFRS Thanks And Regards. Ramakrishna.K

  • Which version number will FMW 11g have?

    Hi, Update release 11.1.1.0.2 has just been released. Fusion Middleware 11g is appointed somewhere summer 2009. Does anyone know which version number this FMW 11g will have? We have about 10 bugs filled which are appointed to be fixed in version 11.1