Application patch 29_ Modif. Adjust

Hi,
I am applying application patch SAPKH47029 in my system.
I need some clarifications before confirming adjustments.
1) In the spau tcode, its showing few note numbers with status "can't be implemented" few note numbers with "completely implemented" why its showing like this ?
2) In the spau tcode, its showing some transport requests which are transported to this system under the programs and function groups. why its showing those transport requests?
3) If i confirm adjustments, it will overwrite some objects which are already customized. to prevent this overwriting while applying this application patch, what can i do ?
4) In the modification adjustment help, i am getting the following instructions
   Ask the developers to adjust the modifications for their objects.After the adjustment is completed, the           
      developers must release their tasks and inform you. Modifications can be adjusted in any client.
     but i am not getting how they will do the modifications for their objects ?
     and why they need to do the modifications for their objects ?
Regards,
Gayathry.

Before performing the sp's you need to check your SPAU and see what are all the objects lying there for example some notes or fixes for the DD objects or Applications which were not supported  with your present sp level so when you go for next level of sp this all modifications or fixes wud/might be bundled together in the next release odf sp so you need to ask the dev team to check for that and ask them to create a new transport request under which they can make or store the changes they want in SPAU once you are done with ur sp's then you need to adjust the SPAU with the help of a developer.

Similar Messages

  • Software Component Vector in Modification Adjustment Transport

    Hello all,
    We are in the middle of a support pack project for our SRM system, and I've run into a snag as I prepare to move them into QAS.  We've had this system for many years, and when DEV was originally installed in 2000 it was as a B2B 2.0a system.  It was upgraded to 2.0b before GoLive, and the QAS and PRD systems were installed directly as 2.0b systems.  The entire landscape has been upgraded several times in the twelve years since, and today it is on release SRM 5.0.
    The problem is that the DEV system still shows an installed software component of NDI_ERM (Extended Relationship Management) in release 20A.  Obviously that is actually long gone, but it still shows up in SPAM in the Display Package Level function, and under Attribute SAPCOMPONENT in the properties of all transport requests released from this system.  It should have been passively deleted during the first (or subsequent) upgrade long ago, but for whatever reason that didn't happen.  This software component never existed in QAS or PRD and does not show up in SPAM in those systems.
    This hasn't been an issue in the past, and so I've just ignored it as I always had bigger fish to fry.  I've performed upgrades and support packages for these systems without an issue, but we hadn't done any of these tasks for the past three years.
    Until now.
    I successfully installed support package stack 28 for SRM 5.0 into DEV a few months ago, and I performed the required modification adjustments in SPAU, creating the usual modification adjustment transport.  Now, however, when I am trying to import the support packs into QAS, I have a problem when defining the queue, at the step for adding the modification adjustment transport.  The transport is marked with a Software Component Vector that includes the defunct ghost NDI_ERM 20A, and NDI_ERM doesn't exist in QAS.  SPAM finds the transport, but marks it with a red light ("Transport does not fit").  Drilling into details shows me that everything matches perfectly except for my ghost.  On that line I get "The software component is not installed," and SPAM will not allow me to add the transport into the queue.
    I should point out that I can import regular transports just fine, and I'm pretty sure I could just import the queue without the modification adjustment transport, and then import it manually when SPAM gets to the step about performing the adjustment.  No doubt that would work, and that's almost certainly what I'm going to end up doing.  But it bugs me that I can't fix this.
    I have some thoughts about fixes that might work, and I'd like input on whether anyone else has dealt with (and solved) this problem before.
    I think that I could probably just delete the line in DEV in table CVERS for NDI_ERM and so have it no longer show up in the attributes of future transports.  That might solve the problem going forward, though it won't fix the mod adjust transport I've already released.  Any thoughts about this?
    I was able to get the existing transport to no longer show NDI_ERM in its attributes by deleting the appropriate line in DEV in table E070A.  After doing that the transport looked fine in the STMS queue for QAS when drilling into its properties.  However, this apparently isn't enough for SPAM.  As I had already uploaded the transport in SPAM once, SPAM 'remembers' it and seems to have therefore cached its properties, including the NDI_ERM software component.  I haven't been able to figure out how to get SPAM to 'forget' this transport so I could completely upload it anew and hopefully get new attributes that will then match the correct software component vector for the target system.  Resetting the queue status doesn't do it.
    Any thoughts on where (what tables) SPAM stores information about modification adjustment transports, and how to clear that information out?  Any thoughts on the (admittedly drastic) measures I've mentioned above?
    Thanks in advance,
    --Matt

    Hello,
    SAP strictly forbids the modification of those tables for specific Add-Ons or even essential software component. As you do not really delete those products from a SAP system. This will only partially remove meta information from a SAP sytem.  After the "reinstallation" the data and many other log files are still exists and may have some really inconvenient side effects in a SAP systems (inconsistent installation, incomplete database table conversion, problems regarding maintenance via notes and support packages, modifications cannot be reverted...) .
    Additionaly it will be very difficult or even impossible to resolve upgrade or maintenance issues.
    If you have any  issue regarding an installation of a SAP product, you should contact the corresponding SAP support. They will provide you the right solution. 
    Currently SAP only provides for a small subset of Add-Ons the deinstallation.
    Thanks a lot for your understanding
    with kind regards,
       Thorsten Scheyter  (Development support)

  • Application patch no.

    Hello,
    how can we see the application patch number for a particular activity in finance?
    thanks.

    HI,
    SAP EASY ACCESS > SYSTEM > STATUS >SAP SYSTEMS DATA > COMPONENT VERSION > DETAILS BUTTON.CHECK THERE
    Best Rgds
    Suma Mani

  • Error in importing application patch

    Hi all,
          Whlie importing a application patch SAPKH50011, I am getting error Inactive import and getting stopped. Because of that many objects are locked and not able to modify programs. . Please help me to import this patch.
    Cheers,
    Ratna

    Hello,
    I tried below code to found any dynamic action referring any other page's region:
    declare
    v_flag number := 0;
    begin
      for rec1 in(SELECT page_id, action_name, affected_region_id, dynamic_action_name, action_sequence, affected_region
      FROM apex_application_page_da_acts
    WHERE (application_id,page_id, affected_region_id)
        IN (SELECT application_id,page_id, affected_region_id
              FROM apex_application_page_da_acts
             WHERE affected_region_id IS NOT NULL)
    and application_id = 569 and AFFECTED_ELEMENTS_TYPE = 'Region' order by page_id) loop
        for rec in(SELECT application_id,page_id,region_id
              FROM apex_application_page_regions where application_id = 569  and page_id = rec1.page_id) loop
          if rec.region_id = rec1.affected_region_id then
           v_flag := 1;
           exit;
          end if;
        end loop;
        if v_flag = 0 then
          dbms_output.put_line('page: '||rec1.page_id);
          dbms_output.put_line('da: '||rec1.dynamic_action_name);
          dbms_output.put_line('seq: '||rec1.action_sequence);
          dbms_output.put_line('action: '||rec1.action_name);
          dbms_output.put_line('region: '||rec1.affected_region);
          dbms_output.put_line(' ');
        end if;
    v_flag := 0;
    end loop;
    end;its not showing any region.
    Please check the code if I am missing anywhere and please let me know if there's any other way.
    Regards,
    Ani

  • Adding Modification Adjustment Transports to SPAM queue

    Hello;
    As part of my upgrade, I need to remove a table column as the upgrade to component SAP_APPL will re-insert it. However, if I remove it separately from the upgrade, the activation of the table removes the data - which needs to be kept.
    I've created a transport that will remove it. How do I include it in the queue when the the stack for SAP_APPL is imported? Will the Modification Adjustment displayed when "queuing" the SAP_APPL stack allow the transport to be imported with them? If so, how do I get the  transport into the respective queue so SPAM will see it?
    Thanks.
    Jim

    Hi Jim,
    YOu can include Modification Adjustment Transport only in the SPAM import queue.
    It is not possible for your to include a normal transport in the SPAM import queue.
    for details, you can refer to the online help:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/de/151042f664e12ce10000000a1550b0/content.htm
    So my suggestion is to just do SPAM import on your DEV system, and when the import run into the SPDD phase, you can create transport and do modification adjustment for this table. When you do upgrade on QAS and PRD system, you can include the modification adjustment transport generated on DEV system in the SPAM import queue.
    For details please refer to the online help:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/53/5c36c25db111d2b414006094b9ea64/content.htm
    With Best Regards
    Julia

  • Can not download MDM 5.5 SP05 Application Patch 1 (Build 5.5.41.58)

    I was able to download all other components of MDM SP5 Patch 1, except
    MDM 5.5 SP05 Application Patch 1 (Build 5.5.41.58) (BPMDMA55005P_1-20001090.ZIP). It doesn't show up in download manager.
    Anybody else had luck downloading this file?
    Is it a bug or access issue?
    Thanks,
    Abhay

    No error message.
    Component doesn't show up in Download basket. So can not download it.
    Earlier it was nice, just right click on the link you could save the Zip file.
    Abhay

  • SPAM - Modification adjustment in SPAU

    Hello!
    How I can get the modification adjustment list for imported support packages?
    SPAM transaction offer to use SPAU to look through SAP standard objects modification.
    What SPAU options is it necessary to look through objects modification?
    Thanks in advance!
    Regards

    Hi,
    have you taken a look at these links :
    http://help.sap.com/saphelp_nw70/helpdata/EN/2e/6d66767d9011d396b60000e82de14a/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/60/d6ba7bceda11d1953a0000e82de14a/frameset.htm
    Fabien.

  • SCCM Software Updates (and SCUP) vs. Application Management for 3rd Party Application Patching

    Hi,
    We're getting ready to tackle the phenomena known as Java patching, and I was wondering if I could get your personal preference; SCCM Software Updates (and SCUP) vs. Application Management for 3rd Party Application Patching?
    I probably should give a little background on my environment; It's a university atmosphere, so unless it's policy, you have to ask nicely...can't tell people to do things they don't want to; multiple version of required versions of Java for what ever reason,
    which need to be identified, grouped together, and then upgrade as much as possible without breaking their old applications.
    I was thinking that Application Management probably made more sense where it is more robust, especially for removing multiple installs of Java on a single system, but Software Updates/SCUP looks like it was built for this type of patching, so I'm a bit confused
    why SCCM would have two components which essentially did the same thing.
    Your thoughts?
    Thanks,
    Bill

    For Java version management specifically you can already achieve a lot by using the Application Model in CM12.
    You can define supersedence between the different versions, just make sure to opt for uninstall of the older version when defining it.

  • Can I apply any application patch when all application services are down?

    Hello All,
    Can I apply any application patch when all application services are down?
    Reg
    Chirag Patel

    Definitely you can. On some operating system (like Windows), if relinking is part of the patch then you cannot apply patches unless Application services are down.
    Whenever we apply a patch, we enable maintenance mode through adadmin, this would stop users from accessing the application during patch installation. However, you still can use "adpatch options=hotpatch" to apply a patch without enabling maintenance mode.

  • Implimenting new application patch

    Dear All,
    Dear All,
    We have following setup
    SAP ECC 6, Database : Oracle 10g, O/S : HP-UX 11.31
    Our application patch level is 14 i.e. SAP_APPL 600 SAPKH60014.
    Now patch 15 is also available.
    I am new to SAP, whether we have to go for patch 15. There are certain statutory requirements which are included in patch 15.
    Will it create any problem in present setup ?
    What are the precautions we have to take before implementing application patch ?
    Someone has told me that you have to study all notes included in patch 15 relevant to your setup.
    So we have to implement patch 15 on TEST MACHINE and we have to check all existing relevant scenario which is working fine.
    If this is the case then it takes lots of time of all the team members.
    Request you all to please guide us for the same.
    Thanks in Advance,
    Nirav

    Hi,
    As you are support pack Sap Appl 14 and you want to go on the SAP APPL 15. So you need to first check that all patches you need to upgrade before applying SAP APPL.
    So to implement SAP APPL 15 you have to first import Support Pack SAPKH60014 and SAPKW70020 .When you check you shall find that the two support Pack prequest that i have told also have some prequsit.So you shall have to update the other components also.
    As i checked in the service Market place found that we dont have any other patch after SAP APPL15 so as per my think you shall wait for one more release of SAP APPL and then apply this Sap APPL 15.
    When you apply A suport pack then it may be possible that some functionality thet was working fine may stop so we need to test all the cenario in the Sandbox system and then implement the support pack in the Production Landscape.
    Thanks
    Rishi Abrol

  • R12 Application Patch driver file

    Hi All,
    What is patch driver file and what it will do while applying R12 application patch?
    Can you confirm whether following drivers are present in patch driver file?
    C--copy driver
    D--database driver
    G--generate driver
    Thanks & Regards
    Tharun

    What is patch driver file and what it will do while applying R12 application patch?Oracle E-Business Suite Patching Procedures
    http://docs.oracle.com/cd/E18727_01/doc.121/e12148/toc.htm
    Oracle E-Business Suite Patching FAQ for Release 11i and Release 12 [ID 1325930.1]
    Can you confirm whether following drivers are present in patch driver file?
    C--copy driver
    D--database driver
    G--generate driverThose are the old names of the application patches which are no longer used in R12. I believe all R12 patches come with u patch driver.
    Thanks,
    Hussein

  • Who installed application patches?

    Hello,
    In the definitions of responsibilities. Whom belongs installing application patches? System administrator or database administrator?
    Thanks!

    gpinedo wrote:
    Hello,
    In the definitions of responsibilities. Whom belongs installing application patches? System administrator or database administrator?
    Thanks!Oracle Applications patches that is applied using adpatch is done from the OS (as applmgr user -- The user who owns the application tier files). So, whoever has access to this user can apply application patches. Usually, this is done by the Apps DBA.
    Thanks,
    Hussein

  • Regarding Screen Painter object modification adjustment in SPAU

    Hi all,
    We are upgrading SAP 4.6 C to ECC 6.0.I have query related to SPAU transaction.
    <b>How do we adjust the modification for Screen in SPAU transaction. The traffic light in front of  screen object is Green.</b>
    I have gone through the help.sap.com also but the screen adjustment document is not valid for ECC 6.0 , it's valid for ECC5.0.
    Can anybody suggest what exactly is to be done in this case if anybody has done it on ECC 6.0 . Has anybody done it earlier in any ECC6.0 Project?
    Good solution will be rewarded.
    Thanks & Regards
    Prabhat Ranjan

    Hi ,
    Can anybody reply to my query.
    Thanks & Regards
    Prabhat

  • Creating application patch

    Hi all,
    We (my team and I) are relatively new in APEX. We start development of one application in APEX for few of our customers and we are in front of two problems:
    1. after each milestone we must create patch from development version and apply it onto QA-version and if it's OK - to the production versions (we have separate production version for each of our customers)
    2. each of out customers have slightly different requirements (in interface only) and we don't want to have separate development ( and QA) version for each customer.
    I need some tips and tricks (opinions and advices) about APEX projects development flow: dev - test - deploy - update and customization ( to achieve most of the differences in GUI with some sort of configuration settings)

    Hi Peter
    Thank you for confirming what is required!
    All the best
    Phil

  • R12 Applications Patch

    Hi,
    I need clarifications about R12 applied patches,
    we are in multi node, 1 node for applications and 1 node for database.
    we have successfully migrate R12 application to the new target server but since the new target server isn't fully ready we hold the sync process of the database to new applications system.
    while we are on hold the source application are being patched for several times.
    so what i would like to asks could we also apply the same patch to the target application which is using the same databases ?
    Thanks,
    Hendra

    Yes you can apply the patches using nodatabaseportion option -- AD Command Line Options for Release R12 [ID 1078973.1]
    Thanks,
    Hussein    

Maybe you are looking for

  • Connect MacBook Pro with Mini DisplayPort to TV?

    I have a 15" MacBook Pro with the Mini DisplayPort outlet. I used to have a PowerBook which I was able to connect to my TV via the video adapter. No such adapter is included with my MacBook. How can I connect it to my TV to view videos, movies, tv sh

  • Zen:M Battery death!!!!!a last hope!

    A few months ago, I bought a wall charger(Creative Switching adaptor model:tesa9g-0502400).Suddlenly when?I connected?the Mp3(vision zen:m) to the wall charger,the screen turned black! and shut down!!since that moment,each time I connect the Mp3 to t

  • Problem with Coverflow & Artwork

    I use to have an ipod Photo and all the songs displayed the artwork properly. I just got a new ipod classic and I'm having several issues: 1) Albums not showing artwork properly in Coverflow 2) Songs showing artwork even if the Coverflow does not hav

  • Loading date

    hey all is it  possible to enter in SAP a fixed day of the week when material should be loaded for a specified destination. For example all orders for Japan should be loaded on a Tuesday. Would it be possible to enter this information in SAP to take

  • Error - Unable to execute service and function

    Hi all,    I created a sample component with service handlers but it is giving errors Unable to execute service GET_PURGE_LIST and function getPurgeList. (System Error: The service method 'getPurgeList' is not defined.) Please let me know what change