SQL Command to Check ABAP Support Patches and JSPM Patch

Dear all,
We have setup an DiasterRecovery System of the BI Production System .
os: aix 6.1
Database: Oracle 11.2
BUT , Our DR System is in Physical Standby mode.
Generally, we see the ABAP Patch version in SAP GUI ( System -- System status).
Likewise, Is there any SQL Command available to check the version ABAP Patches (
SAP_BASIS, SAP_ABAP, PI_Cont add on, PI_BASIS AND BW Patch - SAP_BW)
Is there any sql command to check the version of JSPM or JAVA Patch
regards,
gayathri.K

Hi Gayathri,
BUT , Our DR System is in Physical Standby mode.
Generally, we see the ABAP Patch version in SAP GUI ( System -- System status).
Likewise, Is there any SQL Command available to check the version ABAP Patches (
SAP_BASIS, SAP_ABAP, PI_Cont add on, PI_BASIS AND BW Patch - SAP_BW)
You can perform sql query on CVERS table.
For eg: Select * from <schema>.CVERS ;
This will list all the entries with all the columns from CVERS table.
Hope this helps.
Regards,
Deepak Kori

Similar Messages

  • HT5787 What do I do if my iPod was stolen and I checked my support profile and when I entered the serial # I got a message saying it has been registered to another Apple ID? Is there a way to find out that Apple ID so that we can locate the iPod?

    What should I do if my iPod has been stolen and when I checked my support profile and entered my serial # and I received a message that the serial # had been registered to another Apple ID account? Is there a way to find out the Apple ID that it was registered to? I have already checked find my iPod and it shows my iPod is offline. I have already filed a police report.

    No, sorry, there is no way you can get that information. The police perhaps could, but it would probably require a court order and it's unlikely the police will go to those lengths unless they have reason to believe that this theft was not an isolated instance and hence worth more of their time than the single theft of an iPod.
    Even if they got the ID, it may well just be yours. Apple's registration database often contains such errors; I get the same message for some of my devices when I know I registered them to my Apple ID and the devices are all still right here.
    Regards.

  • Web Catalog Patching and repository patching in OBIEE 11G

    Hi
    Please share pointers for Web Catalog Patching and repository patching using command line in BI EE 11g.
    Thanks
    Edited by: user8654742 on Sep 20, 2011 11:39 PM

    Hi Deepak,
    When I am running the following command "./runcat.sh -cmd diff -baseline /home/oracle/SampleAppBaseline -latest /home/oracle/SampleAppChanged -outputFile /home/oracle/SampleAppDiff.txt -folder /shared -verbosity detail" in command line it is erroring out as follows : "'.' is not recognized as an internal or external command,operable program or batch file." . Is there any other way to run this command? Please help to overcome this issue.
    Thanks.

  • How to differentiate IAS ORACLE Home Patches and database patches

    Hi Team,
    I would like to know how to find out the difference between IAS ORACLE Home patches and Database patches.
    I am new to oracle apps.
    Please let me know.
    Thanks,
    Kamal

    user10493335 wrote:
    Hi Huseein
    Here is the patch number Patch 13919058
    we are on e-business suite 12.1.3.How to integrate oracle e-business suite with ODI.
    Thanks,
    KamalIt should be applied to ODI ORACLE_HOME -- How To Install Oracle Data Integrator (ODI) 11g Interim Patches (PSE) With OPatch [ID 1235136.1]
    Thanks,
    Hussein

  • What is the difference between cluster patch and bundle patch

    hi every one
    can any one please tell me the difference between cluster patch and bundle patch ... for what purpose we apply cluster patch and bundled patch

    There is no inherent difference between a patch cluster and a patch bundle that I am aware of.
    Its just a name for collections of patches.
    For whatever reason, the regular collections of recommended patches that sun puts out happen to be referred to as the recommended patch cluster.
    The "all patches to bring you up to 5/08" that sun is putting out happens to be being called the 5/08 patch bundle.
    I don't think they meant anything by the distinction. But thats the first time the term "patch bundle" has been used that I'm aware of.
    So maybe there is some new patch delivery/installation technology implied. But I doubt it.

  • SQL Command conversion in abap code

    Hi,
    I want to implement the UNION, INTERSECT and MINUS SQL commands in abap code. Please give me the appropriate solutions asap.
    For Example:
    select field1, field2, . field_n
    from tables
    <b>UNION</b>
    select field1, field2, . field_n
    from tables;
    select field1, field2, . field_n
    from tables
    <b>MINUS</b>
    select field1, field2, . field_n
    from tables;
    select field1, field2, . field_n
    from tables
    <b>INTERSECT</b>
    select field1, field2, . field_n
    from tables;
    Thanks,
    Ravi

    Hi Ravi
    Check out this procedure...
    DATA: FRANKFURT(4) TYPE X,
          FRISCO(4)    TYPE X,
          INTERSECT(4) TYPE X,
          UNION(4)     TYPE X,
          BIT          TYPE I.
    DATA: CARRID TYPE SPFLI-CARRID,
          CARRIER LIKE SORTED TABLE OF CARRID
                              WITH UNIQUE KEY TABLE LINE.
    DATA WA TYPE SPFLI.
    SELECT CARRID FROM SCARR INTO TABLE CARRIER.
    SELECT CARRID CITYFROM FROM SPFLI
                           INTO CORRESPONDING FIELDS OF WA.
      WRITE: / WA-CARRID, WA-CITYFROM.
      READ TABLE CARRIER FROM WA-CARRID TRANSPORTING NO FIELDS.
      CASE WA-CITYFROM.
        WHEN 'FRANKFURT'.
          SET BIT SY-TABIX OF FRANKFURT.
        WHEN 'SAN FRANCISCO'.
          SET BIT SY-TABIX OF FRISCO.
      ENDCASE.
    ENDSELECT.
    INTERSECT = FRANKFURT BIT-AND FRISCO.
    UNION     = FRANKFURT BIT-OR  FRISCO.
    SKIP.
    WRITE 'Airlines flying from Frankfurt and San Francisco:'.
    DO 32 TIMES.
      GET BIT SY-INDEX OF INTERSECT INTO BIT.
        IF BIT = 1.
          READ TABLE CARRIER INDEX SY-INDEX INTO CARRID.
          WRITE CARRID.
        ENDIF.
    ENDDO.
    SKIP.
    WRITE 'Airlines flying from Frankfurt or San Francisco:'.
    DO 32 TIMES.
      GET BIT SY-INDEX OF UNION INTO BIT.
        IF BIT = 1.
          READ TABLE CARRIER INDEX SY-INDEX INTO CARRID.
          WRITE CARRID.
        ENDIF.
    ENDDO.
    This produces the following output list:
    The program uses four hexadecimal fields with length 4 - FRANKFURT, FRISCO, INTERSECT, and UNION. Each of these fields can represent a set of up to 32 elements. The basic set is the set of all airlines from database table SCARR. Each bit of the corresponding bit sequences representes one airline. To provide an index, the external index table CARRIER is created and filled with the airline codes from table SCARR. It is then possible to identify an airline using the internal index of table CARRIER.
    In the SELECT loop for database table SPFLI, the corresponding bit for the airline is set either in the FRANKFURT field or the FRISCO field, depending on the departure city. The line number SY-TABIX is determined using a READ statement in which no fields are transported.
    The intersection and union of FRANKFURT and FRISCO are constructed using the bit operations BIT-AND and BIT-OR.
    The bits in INTERSECT and UNION are read one by one and evaluated in two DO loops. For each position in the fields with the value 1, a READ statement retrieves the airline code from the table CARRIER.
    Comparing Bit Sequences
    Use the following three operators to compare the bit sequence of the first operand with that of the second:
    <operator>
    Meaning
    O
    bits are one
    Z
    bits are zero
    M
    bits are mixed
    The second operand must have type X. The comparison takes place over the length of the second operand. The first operand is not converted to type X.
    The function of the operators is as follows:
    O (bits are one)
    The logical expression
    <f> O <hex>
    is true if the bit positions that are 1 in <hex>, are also 1 in <f>. In terms of set operations with bit sequences, this comparison is the same as finding out whether the set represented by <hex> is a subset of that represented by <f>.
    Z (bits are zero)
    The logical expression
    <f> Z <hex>
    is true if the bit positions that are 1 in <hex>, are 0 in <f>.
    M (bits are mixed)
    The logical expression
    <f> M <hex>
    is true if from the bit positions that are 1 in <hex>, at least one is 1 and one is 0 in <f>.
    Caution: The following programs are no longer supported in Unicode systems:
    REPORT demo_log_expr_bits .
    DATA: text(1) TYPE c VALUE 'C',
          hex(1) TYPE x,
          i TYPE i.
    hex = 0.
    DO 256 TIMES.
      i = hex.
      IF text O hex.
        WRITE: / hex, i.
      ENDIF.
      hex = hex + 1.
    ENDDO.
    The output is as follows:
    00          0
    01          1
    02          2
    03          3
    40         64
    41         65
    42         66
    43         67
    Here, the bit structure of the character 'C' is compared to all hexadecimal numbers HEX between '00' and 'FF' (255 in the decimal system), using the operator O. The decimal value of HEX is determined by using the automatic type conversion during the assignment of HEX to I. If the comparison is true, the hexadecimal number and its decimal value are displayed on the screen. The following table shows the bit sequences of the numbers:
    Thanks
    Ashok

  • How to check the OLite version and isntalled patches?!

    Hi,
    A couple of months ago we installed the consolidated patch 9535503 in the Mobile Server version (10.3.0.2.0). All the clients (WIN32) were supossed to make a synchronization with mSync.exe and install the patch when exit the sync (similar to first installation)
    There is now a client which faces the same bug (or this looks like) and i don't know how to check if it is possible to check if the above patch has been installed in the client or not.
    Any idea?
    Thanks in advance...
    Tomeu

    the device manager should be running, if not start it up. the client version should be on the main display screen, and you can see the individual component versions in file>version
    If it is patches you are looking for, open the polite.ini file and there should be a section at the end [DMC.UPDATE] that should show the installed patches

  • Folders that I had previously created and put bookmarked sites in have disappeared and Im unable to create new folders for sites I want to bookmark. I've checked the support info and it doesn't say anything about creating new subject folders?

    Bookmark folders that I had previously created have disappeared so I can't access any of my bookmarks. The process I used to create new subject bookmarks doesn't seem to be there anymore. The apple support doesnt mention creating new bookmark folders or what to do if you lose your bookmark folders.

    Hi,
    As you just upgarded to Windows 7, please make sure SP1 is also installed on all systems and install the following hotfix rollup for Windows 7 SP1:
    An enterprise hotfix rollup is available for Windows 7 SP1 and Windows Server 2008 R2 SP1
    http://support.microsoft.com/kb/2775511/en-us
    There was a known issue on Windows 7 which affected shared folders, that newly created or deleted files are not reflect in network folder immediately, which seems similar to your error. If issue still exists after SP1 and hotfix rollup please help confirm:
    1. If this issue occurs only on DFS folder in accessing with \\domain.com\namespace. Could you reproduce the same issue in accessing \\server\sharefolder?
    2. Will the same issue occurs after disabling Offline Files if it is enabled. 
    If you have any feedback on our support, please send to [email protected]

  • Whats the difference between ABAP stack, ABAP+Java stack and Java stack

    Hello,
    I have a nagging doubt about the difference between the ABAP stack, ABAP+Java stack & the Java only stack. I believe that the method of applying the kernel for all the 3 types is different.
    Also can we apply the ABAP support packs through JSPM.
    Please put some light on this.
    Thank you

    Hi Zaheer
    ABAP Stack
    AS ABAP is used to provide the ABAP foundation of SAP NetWeaver.
    Part of AS ABAP is the Search Engine Service (SES), which enables users to search for
    business objects using Search and Classification (TREX). SES accesses Search and
    Classification (TREX) functions through the Search and Classification (TREX) ABAP
    client. SES replicates the business objects from the ABAP application to Search and
    Classification (TREX), so that it can apply Search and Classification (TREX) search
    functions to them. When a user enters a search query, the Search and Classification
    (TREX) system responds to it, not the database for the ABAP application. For more
    information, see the document Installation Guide – SAP NetWeaver TREX Single Hosts /
    Multiple Host.
    Java stack
    AS Java is used to provide the Java foundation of SAP NetWeaver. Among the key
    capabilities of AS Java are:
    • J2EE Engine – a J2EE 1.3-compliant application server for running enterprise
    applications. In addition to the pure J2EE standard technologies, the J2EE
    Engine implements complementary technologies, such as Web Dynpro or Web
    Services, that are targeted at supporting large-scale, real-business application
    development projects.
    • SAP Composite Application Framework Core (CAF Core) is a service-oriented
    architecture for building and deploying composite applications. It enables
    modeling of different service types – entity services that represent a domain
    model, application services that implement business logic, and external
    services that offer connectivity to back-end services by means of remote
    function calls (RFCs) or Web services. Usage type AS Java comprises the CAF
    Core runtime environment, while design time tools are part of the SAP
    NetWeaver Developer Studio.
    • Web Dynpro is the user interface technology for developing professional
    business applications for mobile as well as for desktop clients. Web Dynpro
    applications can easily be integrated into SAP NetWeaver Enterprise Portal,
    providing a unified layout for the end user as well as enhanced navigation
    support. Web Dynpro also allows, for example, the development of interactive
    forms using the Adobe document services.
    • Adobe document services is a set of runtime services that provide a range of
    form and document creation and manipulation functions such as:
    • Converting XML form templates (created using Adobe LiveCycle Designer)
    to PDF and various print formats
    • Setting Adobe Reader rights to enable users to fill in and annotate forms,
    save and print them locally, and include digital signatures for authentication
    using the free Adobe Reader software
    Extracting data from SAP applications into Interactive Forms and transferring form data
    back into SAP applications using XML
    ABAP + Java Stack
    Contains both functionalities.
    I hope this helps
    Regards
    Chen

  • Crystal Reports XI does not allow to change Table to SQL command?

    I have report that has Table in Datasource and this table used in report and all fileds are mapped. I need to change table to SQL Command with the same result set of collumns. When I try to Update in Set Datasource Location - it does not work. CR XI allow to update Command to table but Table to Command just do nothing.
    What I have to do or how I can do it?

    Alexander,
    That's probably the "Best" way to do it, and long term you'll want to start adding BOE to your work flow.
    If you want to get around it, here how:
    1) MAKE A COPY OF YOUR REPORT AND WORK FROM THE COPY!!! This involves some a good deal of destruction before you get into reconstruction.
    2) Once you have created your command, remove the table.
    3) Now the fun part... Go through report and manually change all references to the 1st table...
       report fields
       formulas
       selection criteria
       groups
       the whole 9 yards...
    A short cut for the future... If you make all of your formula copies of all of your fields ( fCustomerName = {Table.CustomerName} ) and then only use the formula version of the field in the reports, you can make these changes very easily. (All you have to do is update the one set of formulas.)
    Also as a side note before you get started... You may want to think twice before you mix commands with tables. You loose the server side filtering and grouping on the tables when you do that.  So if you have several tables, you are better off doing the whole thing in one SQL command, do all of your filtering and sorting there and use it to replace ALL of your tables.
    Basically, Graham's way is the easy way... Assuming you have access to the BOE.
    Jason

  • How execute pl/sql command from Oracle ADF Business Components

    can't find examples for how execute pl/sql command from Oracle ADF Business Components and how call pl/sql package procedure from ADF Business Components.
    insert,update,delete rows in view object instance cache is good but if i must do some complex operations while insert,update,delete rows..it's more better for me to call
    pl/sql procedure from oracle db.Am i wrong ????

    Roman,
    this should be similar to how it worked in JDeveloper 9.0.3. hava a look at <JDev903 Home>\BC4J\samples\StoredProc for a code example.
    Frank

  • Automate RPD and Catalog Patching in OBIEE 11G

    Is it possible to automate the patching process with scripting? This would be the complete cycle: compare, generate xml patch and apply patch. I see that I can script the applying of the patch but need to be able to script the compare.

    Yes, You could accomplish this using the OBIEE 11g scripts.
    The one place you may want to reconsider the "complete cycle" is when it comes to actually patching the production RPD via automated fashion. I would leave that to remain as a manual redeployment after the patching to some stage folder/area, then manually deploy the RPD. This way you are certain to retain the incremental versioning that is now provided in the Fusion Console EM, etc.

  • Interim patch vs database patch

    Hi,
    I want to know the exact difference between Interim patch and database patches.
    First of all my understanding is that ,Database patches are applied for some ORA-related errorrs as suggested by document id.where as interim patches are applied on ORA_HOME.
    plz correct me if i am wrong?and give me complete details about them.
    Also i want to know,is there any database patch for ORA-1555 error?
    Thnx

    791902 wrote:
    Hi,
    I want to know the exact difference between Interim patch and database patches.
    First of all my understanding is that ,Database patches are applied for some ORA-related errorrs as suggested by document id.where as interim patches are applied on ORA_HOME.
    plz correct me if i am wrong?and give me complete details about them.All patches are applied on binaries i.e. ORACLE_HOME and some patches also have some scripts to be run to update data dictionaries.
    For interim patch explanation please refer to MOS :
    Oracle Data Server Interim Patch Installation (OPatch) [ID 189489.1]
    Also i want to know,is there any database patch for ORA-1555 error?ORA-155 occurs due to undo tablespace.
    check MOS note :
    TROUBLESHOOTING GUIDE (TSG) - ORA-1555 [ID 467872.1]
    You can also check :
    http://www.dba-oracle.com/t_ora_01555_snapshot_old.htm
    Regards
    Rajesh
    Edited by: Rajesh on Sep 7, 2010 4:29 PM

  • Read data from SharePoint using ABAP sql command

    We need to read data from a SharePoint site and update the sap object services with the information. There is a lot of information on how to put data into Sharepoint from SAP, but we need to get data from SharePoint and put it into SAP. Is it possible to retrieve data from SharePoint using sql command in ABAP program? If it is possible, what do we need to do to have SAP recognize where to get the SharePoint data?
    Richard Newman

    Hi Newman,
    You can use native sql in your abap code to read data from SharePoint's database. But I would suggest you to generate a SharePoint webservice which can provide you the neccessary data so that you can consume this webservice in ABAP
    (Will be quite faster than native sql).
    Regards,
    Ozcan.

  • Support pakages and patch sap web dispatcher

    Hi,
    I have install sap web dispatcher on a sap server on abap stack.
    I have download support packages for web dispatcher form sap mark.
    Anybody know how can I patch web dispatcher with u201Csapwebdisp_86-20003979.saru201D file.. 
    Thanks for any help.

    Hi my friend
    Just unzip the SAR file and replace the old files with the latest, like replacing kernel files.
    Note 908097 - SAP Web Dispatcher: Released releases and applying patches
    Regards,

Maybe you are looking for

  • Kodo 2.3.0 is painfully slow

    Kodo 2.3.0 is painfully slow with Oracle database. It is doing left joins repeatable reading the same data over and over again. It is so slow that it is virtually impossible to use. kodo 2.2.x was lightning fast to compare with 2.3

  • What a P.I.A. error from CS3 Master Collection?

    I have tried everything to fix this including uninstalling, deactivating, reinstalling and wasting 1.5 hours of my life talking to a nice lady in India on Adobe's so-called 'tech support line' who told me that "Adobe CS3 does not support Vista 64bit

  • How can i un zip files

    i have downloaded a data file in zip format. i want to unzip it

  • Using 30gb and nano on same computer?

    i have a 30gb video ipod and a nano. can i update them both only as long as they have the same library or do i have to use 2 separate computers? and what happens if i would go over 2gb? thank you for your help.

  • Can you make an exe file for a slide show using PS Elements?

    Although I use ProShow Gold for slide shows, I need information on other programs that can provide an option for an exe format. I am not too technical so I can't tell from my Elements and couldn't find anything here. I will be running a competition i