Reset release at WBS Change in PO, Atleast Version increment at WBS change?

Hello SAP Gurus,
We have a crucial requirement for resetting the release at  every price change, here it could be even Lower price than the earlier one,
One more thing when ever there is a  WBS change in the Account assigned PO line item, the system should reset the PO release strategy.
As WBS is not a standard field in CEKKO,
I'm trying for creation of Version Increment at every WBS item change in PO, but i could not succeed in the same, 
i tried including Field DISUB_PSPNR  from Table EKPO, Also tried Table EKKN field PS_PSP_PNR, and also tried some others trigger Version Management for changes done in WBS Element, but none of them are triggering Version management,
please suggest how to activate Version Management for WBS changes in PO, also if possible to reset release in PO as it is our ultimate requirement,
Thanks and Regards
Kumar.
Edited by: KumarSAP&SAP on Mar 18, 2011 11:39 AM

Hello,
I want to change one WBS Element to other one, say from WBS ABC-X001 to say DEF-Y001,
Please suggest any way to include WBS in Release stratergy as it is not in standard CEEKO structure, how to include it and any complication going to change the standard structure,
also i could not even get Version increment by changing the WBS Elements please suggest how to get that done.
Any Answers please,
Thanks and regards
Kumar
Pls reply if any one configured this setting to work ?

Similar Messages

  • Reset Release Strategy for any change in the Purchase Order

    Hi,
    Is it possible in SAP standards to reset release strategy for even minor changes in the Purchase Order irrespective of whether it is value change or any change in the text or Purchasing group change or whatever it is?
    If so, where do we need to make the configurations.
    I have seen in some thread about resetting the release strategy for decrease in Purchase Order value.Even that was possible through some BAPI.
    Thanks in Advance.
    S.Raghavan

    hi sandesh,
    sorry, i know it's too late.
    i tried your suggestion, it works blocking the purchase order after release strategies are setted.
    sandesh, raghavan:
    i need to reset the strategies after to make any change in the po. i'll appreciate your help if you can give it.
    regards
    f

  • ME38 resets Release strategy of Scheduling agreement

    Hello,
    It seems when the users change the delivery date  in the delivery schedule (transaction ME38), the system in some cases resets the release strategy of the scheduling agreement from "Release" to "Not Release".It happened only in some case,release indicator set to "4" in our case.
    I cannot understand why this happens.
    Has anyone encountered such a problem before.
    Thanks
    Sunil

    Below are the (changed) item fields :
    Purchasing Document Item Change Date   AEDAT
    Item Delivery Date   EINDT
    Schedule Line is "Fixed  "FIXKZ
    Below are the (changed) header fields :
    Release Indicator: Purchasing Document  FRGKE
    Release status  FRGZU
    Purchasing document processing state PROCSTAT
    Item and header changes have same "Change document number " and transaction code "ME38" , this happened only in some cases,Rel Strategy is on  document type level ,I am also confused on this .
      Please assist  on this

  • Cannot reset release strategy for RFQ

    Dear SAP gurus,
    I set release procedure for RFQ. I set anyway that the changeability is 6, and the tolerance is zero. I expect that after it is released, whenever anyone is changing everything the release strategy will be reset.
    But this is not happening. In my case, the manager already approve the RFQ but the RFQ has not been sent yet. Then someone change the quantity of the RFQ, and the release strategy is not reset. When I check again I realize that changeability 6 means the release will be reset if the value is changed; while in RFQ there is no value mentioned anywhere, it means that the release strategy for RFQ will never be reset.
    Do i miss something? Is there any way to make sure that the release for RFQ is reset if someone change anything in the RFQ?
    Best regards,
    John.

    Why are you having a value based release in RFQ? And more important, why do you need release for RFQ?
    However, if you still want to go ahead with release, then you need to use the user exit for purchasing document release to achieve your objective. Please search for my earlier posts on how to reset release even on decrease of PO value. You can use the same logic for RFQ also.
    Lakshman

  • EXIT_SAPLEBND_002 of M06E0004 User exit to Reset Release Status if PO

    Hi All,
    I have implemented a user-exit EXIT_SAPLEBND_002 of M06E0004, as advised, which can reset/cancel the release status of a certain PO document when a certain field has been changed aside from the quantity and price fields.
    I would just like to ask if how woud the exit know if something in the document has been changed by the user if he goes to me22n? Basically, the requirement was that everytime a user changes the partially released PO in the header data and other fields aside from price and quantity, the release status should be reset to start all over again.
    I have this code, but this should only be ran if a partially released PO has been changed in most of its fields (header/item).
    DATA: wa_ekpo TYPE ekpo,
          wa_bekpo TYPE ekpo,
          lv_frgke TYPE ekko-frgke,
          tx_ekko TYPE char200,
          tx_ekbe TYPE char200,
          lv_frgzu TYPE ekko-frgzu.
    FIELD-SYMBOLS: <fs_ekko>  TYPE ekko.
    tx_ekko = '(SAPLMEPO)ekko'.
    ASSIGN (tx_ekko) TO <fs_ekko>.
    If <fs_ekko>-frgke = '1' AND
       <fs_ekko>-frgzu IS NOT INITIAL.
    <fs_ekko>-frgke = '2'.
    <fs_ekko>-frgzu = space.
    ENDIF.
    UNASSIGN <fs_ekko>.
    Kindly send some recommendations.
    Regards,
    RE

    Add this code in user exit exit_saplbend_002 .
    Code=> This code use to change release status on PO amount decrease and increase.
    ================================
    **** Start of changes for Release status change on PO amount decrease .
    E_CEKKO = I_CEKKO .
    DATA : wa_bekpo type BEKPO,
           wa_ekpo TYPE ekpo,
           WA_CEKKO TYPE CEKKO,
           w_reset(1) TYPE c VALUE 'X'.
    if sy-tcode eq 'ME22N' OR sy-tcode eq 'ME22'.
    WA_CEKKO = I_CEKKO .
    IMPORT WA_CEKKO = WA_CEKKO FROM MEMORY ID 'ZREL_COST'.
    IF SY-SUBRC NE 0.
      EXPORT WA_CEKKO = WA_CEKKO TO MEMORY ID 'ZREL_COST'.
    ENDIF.
    ENDIF.
    if ( sy-tcode eq 'ME22N' OR sy-tcode eq 'ME22' )
      and sy-ucomm eq 'MESAVE' or sy-ucomm eq 'MECHECKDOC'.
    *Import/Export the origninal values.
    *Check if the limit is passed.
    LOOP AT it_bekpo INTO wa_bekpo .
    SELECT SINGLE NETWR FROM ekpo INTO wa_ekpo-netwr WHERE ebeln eq wa_bekpo-ebeln and ebelp eq wa_bekpo-ebelp.
    IF SY-SUBRC EQ 0.
    IF wa_bekpo-netwr < wa_ekpo-netwr.
        w_reset = 'X'.
      endif.
    ENDIF.
    ENDLOOP.
    *IF limit passed - reset the value to high limit beyond tolerance.
    IF w_reset = 'X'.
    E_CEKKO-GNETW = WA_CEKKO-GNETW + 1000000.
    ENDIF.
    endif.
    **** End of changes for Release status change on PO amount decrease .

  • Reset release strategy

    I've added a logic in user exit "ZXM06U22" to reset release strategy once the net price have been changed both increase or deducted. The program source as below, but it can't work. How can i reset the release strategy once the net price deducted. Thanks!
        i_cekko-usrc2 = 'X'.
        loop at it_bekpo into wa_bekpo.
          select single NETPR into lv_netpr from ekpo where ebeln = wa_bekpo-ebeln and
                                                            ebelp = wa_bekpo-ebelp.
          if wa_bekpo-netpr < lv_netpr.
            clear i_cekko-usrc2.
            rel_flag = 'X'.
            exit.
          endif.
        endloop.

    hey did you get the answer for this.... I am having the same problem ...
    If posible could please reply on this as soon as possible... thank you in advance...

  • Error while resetting release of segment

    Hi Experts,
    We have one custom IDoc.I am trying to add new field to one of the segment.So i am trying to cancel release status of segment using we31.But i am getting error Error while resetting release of segment  ZXXXXX Message no. EA259 .I checked many of SDN threads but no where exact solution is mentioned for this.Current release for the message type is 701.so we are on same version now also.I put  a break-point in LEDIJF05 in form CHANGE_CLOSE_SEGDEF.i observed it is failing at line 625 and
    can not unclose segment: release of last version is not SAP-version*.Can any body tell me what is the exact issue.
    Thanks in advance,
    Vijay

    Hi Vijay,
    If the SAP version and the version segment released last time is the same, then this problem should not occur. If you are still facing the issue, add a version to the existing segment. You should be able to add the new field then.
    Regards,
    Parthiban

  • External program to reset release startegy

    Hi All,
    Can anyone tell me how to reset release startegy from an external program. I understand that there are some exits avaialable to do it. I dont want to add my logic in an exit. Based on my program conditions I need to reset the release startegy of the P.O.
    Any Bapi of FM that is available.
    Thanks,
    Anupma

    BAPI_PO_RESET_RELEASE soved the probelm. U need to copy and remove std. check and it will work fine.
    Thanks,
    Anupma

  • Mass po reset release strategy

    i   want to know transaction or program or function module name or any other ways for performing
    " mass po reset release strategy "  ,  please   help

    Hi Veeru,
    You can release the PO's all at once. Please sit with your technical consultant and ask him/her to write the code which takes the inputs of the Release Codes and the indicator Released and pass this information (PO number, Release Code, Release Indicator etc what ever is required) in the BAPI_PO_RELEASE. Some coding needs to be done to do this.
    Hope this helps.
    Regards,
    Saroopya.

  • Reset Release while editing in VA02

    Hi All,
    I have activated status profile and selected the object types below.
    Sales Order Header
    Sales order item.
    I have created the following in BS02.
    10 CRTD Create SO 10 30 1 1   - Create Delivery  - Forbidden (for User1)
    20 REL Release SO 20 30 1 1   - Create Delivery  - Allowed (for User2)
    Now, the problem is, after releasing, if user1 is editing something in VA02, it should reset release. And, again release should be done by user2. I checked in status profile for reset release for CRTD status. But i did not find anything. Please help.
    Regards,
    Rosh

    Hi,
    I dont think it is possible to reset the status. You can look for user exit at sales order save to re set the status. In short it will be a development and not a standard config.
    Regards

  • All of my tools in PS 6 have a "cross" icon and I can't use them, like the clone tool.  I have reset all tools to no avail.  The bracket keys do not change the size.  Any help?

    All of my tools in PS 6 have a "cross" icon and I can't use them, like the clone tool.  I have reset all tools to no avail.  The bracket keys do not change the size.  Any help?

    Yep, I discovered that.  Thank you very much for the prompt and accurate reply.

  • I'm in trouble to reset the security question answer of my apple id. while going to change no other option is showing without answering pane. please help.

    I'm in trouble to reset the security question answer of my apple id. while going to change no other option is showing without answering pane. please help.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (118780)

  • In the Options | Privacy | History setting, I have "Never Remember History" selected. If I change this and hit OK, then re-enter the option, my new settings are reset to "Never Remember History". Why won't it save my changes?

    I am running on a clean install of Win7 64. FF Version 3.6.10.

    Quote: ''If I change this and hit OK''
    What do you change?
    If you select "Never Remember History" then you enter Private Browsing mode:<br />
    Tools > Options > Privacy > History: "Automatically start Firefox in a private browsing session"
    To see all History settings, choose: Use custom settings for history
    If all other history and cookie settings are the default then "Never Remember History" stays selected, otherwise "Use custom settings for history" is selected.

  • I changed my Apple ID but it did not change on the I cloud how do I reset the iCloud

    How do I change the iCloud password  I did update and change my Apple ID but it did not change the iCloud?

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, and your old ID is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How to change the default search engine? I accidentaly change it from google to yahoo, and I can't get it back. I changed my homepage too, but it isn't solved. Thanks

    dear, there.
    how to change the default search engine? I accidentaly change it from google to yahoo, and I can't get it back. I changed my homepage to google too, but it isn't solved. Thanks

    Clarification:
    I believe now you potentially lose all extensions, plug-ins when you use the new reset function, but you will let me know.
    If that is the case, your find corrupt file method maybe better. However, I reviewed the two help articles and there appear to be more files than just the delete search.json file and a possible search.sqlite file in the Firefox Profile Folder. I am confused. Then I have to find the folders. I think help articles mentioned how to find the profile containing the files, but not sure.

Maybe you are looking for

  • IOS 5.0 Calendar without dots on month view

    I updated my iPod touch to the new 5.0 iOS, but the month view of calendar is now without the little dots on days with some event. So I have to tap day by day to check if there are events, or I have to use the week view or the day view, but not so co

  • Tables for delivery details

    Hi all, What are the tables for delivery details. What i want exactly is header and lines tables for one Delivery . Thanks

  • [TV@Master] Resets it self?

    When I first installed the MSIPVS and all of the driver that came in the box, I was able to get only one channel, ch 2.  I then figured that the drivers were out of date, I then downloaded the most updated drivers from the site yesterday and installe

  • How to get the places tab ?

    I'v tried a few things that i found here but nothing works.So how do i get it on the photos. Funny thing ,it is right there on MY phone. Thank you for your help.

  • EAP Authentication Failing (External DB account restriction)

    Hi, I am using ACS 3.0 as my Access Server configured for LEAP authentication,Everything was working fine till 2 days back, All my wireless clients ver getting authenticated, But suddenly they have stopped doing so, On checking the logs it says "Exte