Objects in a OCS Package

Hi,
Is it possible to get a list of all objects in an OCS Package (for instance SAPKE60030) online, that is without downloading the package?
Thanks & Regards

Yes, just click the information button beside it. That will display the list of notes and modifications included in the package
Regards
Juan

Similar Messages

  • OCS Package SAPKD64029 is already in processing ??

    Hi Friends
    I have a strange thing happening, trying to install SPAM patch SAPKD64036 on a QA system first attempt.
    I logged in to client 000, tcode spam, load packages from application server then when I choose import SPAM/SAINT update it gives me following error:  OCS Package SAPKD64029 is already in processing
    I have searched for notes and the forum, cant find a solution.  It is the first time I am doing work on this system so I dont have much history on it.
    Regards
    Pieter

    Hi
    I checked all that, and there is no jobs stuck in Active, this is also a strange problem because the import log looks like follow :
    Log Overview for SAPKD64029                                                                               
    5    SAPKD64029              SPAM/SAINT Update - Version 640/0029                                                                               
    5  FSP        FSS Production System                                                                               
    Generate Transport Information File      09.08.2008 19:16:57    (0) Successfully Completed
             4         Deleted from buffer                      09.08.2008 20:24:48    (4) Ended with Warning    
                       Generate Transport Information File      09.08.2008 21:43:08    (0) Successfully Completed
                   000 Selection for Import                     09.08.2008 23:46:47    (0) Successfully Completed
                       Import ABAP Dictionary Objects           09.08.2008 23:47:26    (4) Ended with Warning    
                       ABAP Dictionary Activation               09.08.2008 23:48:01    (4) Ended with Warning    
                   000 Import                                   09.08.2008 23:53:33    (0) Successfully Completed
                       Check Versions                           09.08.2008 23:53:58    (0) Successfully Completed
                   000 Method Execution                         09.08.2008 23:54:06    (0) Successfully Completed
                       Generation of Programs and Screens       09.08.2008 23:54:36    (0) Successfully Completed
             5  Import steps not specific to transport request                                                                               
    ABAP Dictionary Distribution             09.08.2008 23:49:01    (0) Successfully Completed
                       Activate inactive runtime objects        09.08.2008 23:52:47    (4) Ended with Warning    
                       Enqueue Activation                       09.08.2008 23:53:41    (0) Successfully Completed
                       Feedback after export or import          09.08.2008 23:54:41    (0) Successfully Completed                                                                               
    three things I can notice from the word go is:
    It says system FSP, but it is actually FSQ
    And the date is in 2008 already
    and this log reports already done
    Any Ideas?

  • How can we assign sproxy generated objects to a different package?

    Hello Expert,
    We need to change the package assigment of sproxy generated DDIC objects. How can we assign sproxy generated objects to a different package?
    Regards,
    Thulasi

    Any idea?

  • Installing ST-A/PI Addon : "OCS package SAPKITAB9L does not match the current software component vector"

    Dear Gurus,
    When i try to install ST-A/PI Addon from SPAM and select queue : OCS package SAPKITAB9L does not match the current software component vector
    My downloads ;
    1 - SAPKITAB9J ==> CSN0120061532_0073055.PAT  (ST-A/PI , 01Q_731 , Package Level=0000) downloaded from
    ST-A/PI 01Q_731 (INSTALLATIONS AND UPGRADES)
    2 - SAPKITAB9K==> CSR0120031469_0081131.PAT  (ST-A/PI , 01Q_731 , Package Level=0001) downloaded from
    ST-A/PI 01Q_731 (SUPPORT PACKAGES AND PATCHES)
    3 - SAPKITAB9L==> CSR0120031469_0076956.PAT   (ST-A/PI , 01Q_731 , Package Level=0002)
    ST-A/PI 01Q_731 (SUPPORT PACKAGES AND PATCHES)
    I placed them under EPS and uploaded succesfully when i "Load Packages" from " "from Application Server"
    What could be problem ?
    Here is system components ;
    SAP_BASIS
    740
    0005
    SAPKB74005
    SAP Basis Component
    SAP_ABA
    740
    0005
    SAPKA74005
    Cross-Application Component
    SAP_GWFND
    740
    0005
    SAPK-74005INSAPGWFND
    SAP Gateway Foundation 7.40
    SAP_UI
    740
    0006
    SAPK-74006INSAPUI
    User Interface Technology 7.40
    PI_BASIS
    740
    0005
    SAPK-74005INPIBASIS
    Basis Plug-In
    ST-PI
    2008_1_710
    0007
    SAPKITLRE7
    SAP Solution Tools Plug-In
    BI_CONT
    757
    0001
    SAPK-75701INBICONT
    Business Intelligence Content
    BI_CONT_XT
    757
    0001
    SAPK-75701INBICONTXT
    Business Intelligence Content for Bobj I
    SAP_BW
    740
    0005
    SAPKW74005
    SAP Business Warehouse
    CPMBPC
    801
    0005
    SAPK-80105INCPMBPC
    CPM Business Planning and Consolidation
    POASBC
    100_731
    0005
    SAPK-10205INPOASBC
    POA Shared Business Components

    in 000 client but now i am getting DUMP ;
    Category               ABAP Programming Error
    Runtime Errors         CALLBACK_REJECTED_BY_WHITELIST
    ABAP Program           SAPLSTPA
    Application Component  BC-CTS
    What happened?
        An RFC callback has been prevented due to no corresponding whitelist
        entry being configured. The original RFC called function module "RFC_TP" in
        the target system with destination "CALLTP_WindowsNT". The callback called
         function
        module "TRINT_PROGRESS_INDICATOR" in its own system.
    Error analysis
        Function module "RFC_TP" was called. This execute an RFC callback via ABAP
        statement CALL FUNCTION 'TRINT_PROGRESS_INDICATOR' DESTINATION 'BACK'
        . This action resulted in this ABAP short dump.
        This action was triggered explicitly by the application in transaction
        "SAINT               " and in ABAP main program "SAPLSAINT_UI".

  • Declare object type inside the package

    Hi,
    How can I declare an object type inside the package?
    CREATE TYPE TempObj AS OBJECT (
    user_id number,
    text varchar2(4000),
    date_created DATE
    This will not work if placed inside this:
    CREATE OR REPLACE PACKAGE SAMPLE_PKG IS
    ---declaration goes here.
    END SAMPLE_PKG;
    I tried using the type RECORD and it worked. But I am just curious how to declare an Object. Or maybe RECORD is the replacement of Object? is this correct?
    thanks,
    Baldwin

    The inside of a PL/SQL package should contain PL/SQL statements.
    CREATE TYPE is not a PL/SQL statement. You can't create a table in package either.
    If data protection is the reason that you would rather create the type inside the package, then consider using a record type as you suggested, or hiding the SQL type in a more protected schema.
    Message was edited by:
    jonjac

  • How to include objects of a z* package into a single request

    Hi Gurus,
    The requirement is I need to include all the objects in a z*package into one single request.One way is I find out latest version of each program and include it in request.But there are some 200 objects in the package.Is there any simple way to do it , I mean is there any option wherein I type the package name and all programs get included in the request..........
    Helpful answers will be rewarded
    Regards,
    Raghu.

    Please try this ..
    Goto SE09 ..
    Create a transport request ...
    Delete the sub-task ..
    Now place cursor on main task(request)
    click on Include objects(Ctrl+F11)
    In the popup check 'Freely selected objects' radio button .. click Ok
    Enter the package name  ... and any other parameters .. and F8 ..
    This will include all the objects in the particular package selected ..
    Then release the task ...

  • OCS Package ALL, tp step "6", return code 0012

    Hello everybody,
       i have been trying to upload the patch SAPKB70019, it generate the error
         The following details help you to analyze the problem:
          -   Error in phase: IMPORT_PROPER
          -   Reason for error: TP_STEP_FAILURE
          -   Return code: 0012
          -   Error message: OCS Package ALL, tp step "6", return code 0012
    After the error generate, i again try to upload the same, now it is continue executing in MAIN IMPORT from last 2 Hr.
    so please suggest me How to solve the same.
    I have check all the Logs but it not seem to error message.
    Thanks
    Ganesh

    Hello guys,  Hi Pravin
    I´m faccing with the same problem... I try to import the last level of SPAM but it stuck at more than one hour in phase Main Import.
    When I check the Slog file it show this:
    WARNING:
    SAPQASsapmnt     rans     mpSAPKKD70036.QAS is already in use (330), I'm waiting 3 sec (20091102172802). My name: pid 5544 on SAPQAS (APServiceQAS)
    STOP  imp all              QAS   7006 20091102172825              SAP_BASIS    SAPQAS 20091102171132     
    ERROR: RFC function TRINT_PROGRESS_INDICATOR returned 18
    START imp all              QAS        20091102173924              SAP_BASIS    SAPQAS 20091102173924     
    INFO: event SAP_IMPORT_START triggered successfully
    INFO  TBATG CONVERSION OF  QAS N      not needed                  SAP_BASIS    SAPQAS 20091102173924     
    START MOVE NAMETABS        QAS 6      20091102173925              SAP_BASIS    SAPQAS 20091102173924     
    START tp_getprots          QAS P      20091102173925              SAP_BASIS    SAPQAS 20091102173924     
    STOP  tp_getprots          QAS P      20091102173928              SAP_BASIS    SAPQAS 20091102173924     
    STOP  MOVE NAMETABS        QAS 6      20091102173928              SAP_BASIS    SAPQAS 20091102173924     
    START MAIN IMPORT          QAS I      20091102173928              SAP_BASIS    SAPQAS 20091102173924
    In past I already delete the SAPKKD70036. in directory and kill the TP process in Task manager (like it said in note 12746).
    And after that I restarted the importing of SPAM... and still show me the same error it stuck in that process it show in status bar the information "MAIN IMPORT"
    (By the way when I stopped the transaction I saw that this was in the phase IMPORT_PROPER !!)
    What I have to do for solve this error and finish this simple import... spam importe!... I don´t get it!!
    Help me please,
    Thank you
    João Dimas - Portugal

  • XPRA_EXECUTION Error in OCS Package SAPKW70009

    HI All,
    while doing patch on netweaver 200s for BW system. i am getting below error.
    The import was stopped, since an error occurred during the phase
    XPRA_EXECUTION, which the Support Package Manager is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Support Package -> Import queue from the initial
    screen of the Support Package Manager.
    The following details help you to analyze the problem:
        -   Error in phase: XPRA_EXECUTION
        -   Reason for error: TP_STEP_FAILURE
        -   Return code: 0012
        -   Error message: OCS Package SAPKW70009, tp step R, return code
            0012
    Notes on phase XPRA_EXECUTION
    The XPRAs and after-import methods are executed in this phase.
    Please help me to resolve it.
    Regards
    Gyan

    Hi All,
    I also got some error message in import logs Method Execution:
      Execution of programs after import (XPRA)
      Transport request   : SAPKW70009
      System              : NET
      tp path             : tp
      Version and release: 370.00.01 700
      Program terminated (job: RDDEXECL, no.: 14224200)
         See job log
      Execution of programs after import (XPRA)
      End date and time : 20080805142432
      Ended with return code:  ===> 12 <===
    When I checked job RDDEXECL,It shows me :
    15:08:06 Job started
    15:08:06 Step 001 started (program RDDEXECL, variant , user ID DDIC)
    15:08:06 All DB buffers of application server prosindia were synchronized
    15:08:09 ABAP/4 processor: SYNTAX_ERROR
    15:08:09 Job cancelledWhat happened?
    In ST22 I also found some dumps on DDIC user:
    Runtime Errors         SYNTAX_ERROR
    Date and Time          20.08.2008 16:30:32
        Error in the ABAP Application Program
        The current ABAP program "SAPLRSVERS" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
        The following syntax error occurred in program
         "CL_RSOBJS_TYPE_MANAGER========CP " in include
         "CL_RSOBJS_TYPE_MANAGER========CM00G " in
        line 1:
        "Method "GET_TEXT_OF_SEARCH_ATTRIBUTE" does not exist. There is, howeve"
        "r a method with the similar name "GET_SEARCH_ATTRIBUTES"."
        The include has been created and last changed by:
        Created by: "SAP "
        Last changed by: "SAP "
    So i think reason of this SP termination is job RDDEXECL termination and reason of job termination is this can short dump,Please suggest how can i solve it.
    Gyan

  • OCS package SAPK-603DHINISUT does not match the current software component

    I'm getting an error in my installation of EHPI4 using the SAPehi tool in the PREP_EXTENSION/EHP_INCLUSION stage that says: OCS package SAPK-603DHINISUT does not match the current software component.
    The SPDA_EHP_INCLUSION.log says " Calculate pure CRT Queue" "for installed Add-ons" "and already applied Support Packages" " "
    3 ETN112 The OCS Package Queue is empty
    2 ETN085X"2. Adding Add-on Installation Queue" " " " " " "
    3 ETN245 The following import prerequisites of OCS Package "SAPK-603DHINISUT" have not been met:
    3 ETN264   In the (alternatively) Requirement set "01":
    3WETN493 Not allowed software component "ECC-SE" rel."600" is installed
    3 ETN264   In the (alternatively) Requirement set "02":
    3WETN493 Not allowed software component "ECC-SE" rel."600" is installed
    3WETN492 Required Add-On component "IS-UT" rel."602" is not installed
    3 ETN264   In the (alternatively) Requirement set "03":
    3WETN493 Not allowed software component "ECC-SE" rel."600" is installed
    3WETN493 Not allowed software component "ECC-VPACK" rel."*" is installed
    2WETN543 OCS package "SAPK-603DHINISUT" does not match the current software component vector"
    I have added the package IS-UT 602 along with all the support packs that go with the IS-UT 602 component but I am still recieving this error. Would anyone have an idea on how to correct this? Any help would be greatly appreciated. Thank you!

    I ended up solving the issue with note #1150349. I had to go into transaction SEPS -> INBOX there where several versions of the ACP
    IS-UT=====603:
    Origin Number Ext. Subject Delivery date/time
    CSR0120031469 0032968 PAT IS-UT=====603 07.10.2009 15:30:27
    CSR0120031469 0032633 PAT IS-UT=====603 14.10.2009 21:19:46
    delete them all out in SEPS and in the EPS\IN folder. Load teh ACP files from the note which corrected the issue. Thank you again for your help!

  • SPAM/SAINT - OCS package does not match current software component vector

    Hello Experts,
    This could happen on any type of system I suspect, but it is on my Solution Manager (7.01 on Eh1). I downloaded a support stack (27)and was checking the components requirements.  I use the  Directory box in SPAM, and I go into New Support Packages. I highlight the support package for ST 400 then click on the Queue button.   It comes back with this message: OCS package SAPKITL437 does not match the current software component vector.
    I click continue and the requirements window comes up. It shows that I have currently loaded the wrong BI_Content.  It says:  Non-permitted release of add-on BI_CONT installed.  The release information is BI_CONT,706.
    If I go back to the main window to look at the current package level, I see that BI_CONT  component release (loaded) is 704 - sp 8. 
    I must have gotten very creative when loading that back in 2008.  MOPZ was used, but it was before the support stack restrictions were in place on my system.
    I can't get around this issue, because even trying to load the Basis support package I get this message. 
    If anyone has had the problem and knows what to do I would appreciate some help.  Notes searching has not found anything.     So far my Customer message  has not been helpfull, but it is not SAP support .
    Pat

    Hi Patricia,
    Please, check prerequisites for SAPKITL437 in SPAM.
    It seems like you need to install/update some components in SAINT before.
    From official note: https://service.sap.com/sap/support/notes/1274287
    "Requirements with component ST400 for SP27
    -  Support Package 00 for BI_CONT 706 (SAPK-706BHINBICONT)
    -  Support Package 00 for ST-BCO 400 (SAPK-400AGINSTBCO)"
    Additional info: https://service.sap.com/sap/support/notes/1169247
    Best Regards,
    Aleh
    Edited by: Aleh Mikhniuk on Jul 20, 2011 1:59 PM

  • OCS package SAPKITAC4E does not match the current software component vector

    Hello Experts,
    I am running EHP4 upgrade on ECC system, I have downloaded files from MOPZ, I got an error message in PREP_EXTENSION/SUBMOD_EXTENSION_NEW/EHP_INCLUSION, error is as follows,
    Last error code set: Unable to generate addon queue. Return Code = 1, Reason = "OCS package SAPKITAC4E does not match the current software component vector", check log file 'SPDA_EHP_INCLUSION.LOG' for details
    As per the log 'SPDA_EHP_INCLUSION.LOG' it is looking for BBP CRM patches, error message is as follows,
    3 ETN490 Use the Add-On installation package "SAPKITAC4E" (type &4"AOI") for Add-On &2"ST-A/PI" rel.&3"01M_CRM570"
    3 ETN245 The following import prerequisites of OCS Package "SAPKITAC4E" have not been met:
    3 ETN264   In the (alternatively) Requirement set "01":
    3WETN491 Required software component "BBPCRM" rel."500" is not installed
    3 ETN264   In the (alternatively) Requirement set "02":
    3WETN491 Required software component "BBPCRM" rel."510" is not installed
    3 ETN264   In the (alternatively) Requirement set "03":
    3WETN491 Required software component "BBPCRM" rel."520" is not installed
    3 ETN264   In the (alternatively) Requirement set "04":
    3WETN491 Required software component "BBPCRM" rel."600" is not installed
    3 ETN264   In the (alternatively) Requirement set "05":
    3WETN491 Required software component "BBPCRM" rel."700" is not installed
    3 ETN264   In the (alternatively) Requirement set "06":
    3WETN491 Required software component "BBPCRM" rel."701" is not installed
    2WETN543 OCS package "SAPKITAC4E" does not match the current software component vector
    1 ETN214X."**************************************************"
    1 ETN251   End of phase: "'Add-on Queue Calculation'"
    1 ETN254       End date: "02.08.2011"
    1 ETN255       End time: "23:30:08"
    1 ETN214 ."**************************************************"
    BBP CRM is not installed in our ECC system, I am not sure why it is required.
    Can you please advise me how to move forward without installing BBPCRM.
    Regards,
    Fazil

    If someone one found the following errors during SAP ECC6-EHP6 implementation with Software Update Manager:
    1:
    Error message set: 'Unable to generate addon queue. Return Code = 1, Reason = "Extended attribute STACK_XML_REQUIRED for SAPK-100AHINUI2FND is unknown"
    Solution:
    Please update the SPAM/SAINT version with latest available at OSS site, then restart the implementation with INIT option.
    2:
    Error message set: 'RFC error system DEV nr 00 function 'SPDA_READ_NEW_PACKAGES' failed with code 3 key CALL_FUNCTION_NOT_FOUND: Function module "OCS_CHECK_PATH_CONSISTENCY" not found.
    Restart the Software Update Manager and SAP instance. If possible then update SAP Kernel with latest available patch, R3trans and tp as well.
    Regards.

  • OCS package SAPKITL437 does not match the current software component vector

    I am trying to apply SAPKB70108 in SOLMAN 7.1 ehp1. SPAM=KD70143, got error OCS package SAPKITL437 does not match the current software component vector
    Lalit Kumar

    I have posted single time but due to internet problem, I clicked two times and the same posted twice.. I want to delete one but haven't find delete option...
    Lalit Kumar

  • OCS package  does not match the current software component vector

    Hello TECHIES,
                            Please help me with following error   it is very emergency
    We had developed an ADD-ON in CRM7.0  and when we try to Install in  it into  CRM EHP1 server
    we get the following error:
    OCS package  does not match the current software component vector"

    "emergency" errors should be handled through OSS/CSN, not here on the forum.
    The error message means that the source system has a different support package level than the target system.
    Markus

  • Gateway 2.0 install to CRM OCS package SAPK-250AGINIWFND does not match

    i try to install gateway 2.0 in crm 7.31.
    i have successfull install gw-core 200,i have already the WEBCUI 731,  but when i go to install the second package (IW-FND 250) the saint return me this error.
    OCS package SAPK-250AGINIWFND does not match
    current software component vector
    I have update my spam-saint but nothing change.
    Could you help me?
    Best Regards
    Andrea Preziuso

    ok i find the solution note:
    1901938 - Unable to install Add on SAP NW Gateway 2.0 - IW_FND 250
    However to define the queue in SAINT or to install the add-on on a NW731 system please include the released ACP(attribute change package) for the addon "IW_FND====250" released in SMP.
    http://service.sap.com/swdc
      ->Search for Support Packages and Patches
        ->IW_FND====250

  • The following import prerequisites of OCS Package " " have not been met

    Hi SAP gurus,
             Am in upgrading ECC 6.0 to EHP4. in th configuration Phase am facing this erro:
    " Severe error(s) occured in phase PREP_EXTENSION/SUBMOD_EXTENSION_NEW/EHP_INCLUSION!
    Last error code set: unable to generate package queue, return code =3, reason=package SAPKNA7019: import prerequisites are not fulfilled".
    The log says,
    3 ETN431    Calculate the queue part for "SAP_AP" rel."700" with target SP "SAPKNA7021" (level "0021")
    3 ETN245 The following import prerequisites of OCS Package "SAPKNA7019" have not been met:
    3 ETN264   In the (alternatively) Requirement set "01":
    3 ETN246    Support Package "SAPKNA7018" must be available or already imported in the system
    2WETN423 Package "SAPKNA7019": Import prerequisites are not fulfilled
    3 ETN245 The following import prerequisites of OCS Package " " have not been met:
    3 ETN246    Support Package "SAPKNA7018" must be available or already imported in the system
    the existing patch level of SAP_AP is 015. so i planned to update the patches manually using SPAM. but its throwing this error:
    Caution: Upgrade or PREPARE is still r
    import not permitted
    even i tried stopping the upgrade.
    What should i do now? without satisfying the pre-requisite i can't able to continue my upgradation. Please help me guys...
    Thnaks in advance,
    Santhosh Kumar.

    Procedure for UNIX and Windows:
    1. Change to the EHPI/abap/bin directory (Windows: EHPI\abap\bin)
    2. Enter the following command:
    ./SAPehpi reset prepare (Windows: .\SAPehpi. exe reset prepare)
    3. Delete the EHPI directory
    4. Start SAPehpi again (Install and run)
    Once the reset is done properly then u can start patching
    Nirmal.K

Maybe you are looking for