SD : Fast change Reason for rej.

Hi,
<b>Trasansaction</b>: VA01 / VA02 / Va03
There is this screen :
Program SAPMV45A
Screen 250
Description : Sales doc. Window  Fast change Reason for rej.
How will I get (envoke) this screen, my objective here is to assign/change Reason for rej. for all the line item in one go.

Edit - > Fast Change of...> Reason for rejection

Similar Messages

  • Fast change option for changing scheduling agreements

    Dear Experts,
    We need to have more fields in fast change option for scheduling agreements. How can we get it. please suggest

    Hello Antony,
    I want to add more fields in SA fast change.. it is not possible. if we click on more fields. but in PO it is possible. is there any way to do it in SA.

  • Need to disable availability check while changing 'Reason For Order' Field in Retail Tab

    While change of STO (Me22n) I want the availability check to be disabled when a change to 'Reason for Oder' is made in the Retail Tab in the item detail.
    Let me know if there is any BADI/ User exit or enhancement available where i can do this customization.

    Hi Reddy,
    Try Transaction Variant, you can customize the screen using this tool.
    Basically, you customize the screen (hide, make it required, visible etc) then
    save it as screen variant and define a new transaction code to it.
    So for your user, just give them this new transaction code (instead of SAP standard).
    Detail about transaction variant can be checked on :
    http://help.sap.com/saphelp_crm50/helpdata/en/7d/f63a0a015111d396480000e82de14a/frameset.htm
    Hope this helps,
    Gun.

  • Change "Reason for Movement" on Material Document

    I've posted a Material Document.  I now need to change the Reason for Movement.  I've tried this via MB02 but only the Goods Recipient and Text appear to be updatable.  Is it possible to change the Reason for Movement after the Material Document has been posted?  If so, how?

    Hello David,
    Except "text field" & "unloading Point", you can not modify any other field in Material document change mode (MB02 t-code)
    Hope this helps.
    Regards,
    Arif Mansuri
    Reward if answer is helpful.

  • Message ME644 Reason for Ordering (BSGRU) in BAPI_PO_CHANGE

    I have a requirement to change the Reason for Order (EKPO-BSGRU) through BAPI_PO_CHANGE. I have populated neccessary input but the BAPI returns an Information message saying
    'Change Reason for Ord. could not be effected ' Type I; ID ME; Number 664.
    This seems to be a common problem I have seen several notes accross older versions that suggest applying program changes. We are using ECC6.0 any idea if there is a note to be applied?
    Thanks for your time.
    Edited by: Cyril Alex on Apr 8, 2009 10:59 PM

    Hi Alex ,
      Have you got the solution of this problem? Please share the solution b'coz I also have the same issue.
    Thanks

  • Fast change for statistical delivery date in me21n

    hi
    need fast change for statistical delivery date in me21n
    in me21n when i enter on to fast change screen i doesn't find statistical delivery date
    can anyone tell me the process
    thanks

    Dear Anudeep,
    You cannot change this via "Fast Change".
    Please see the usage of this field.
    Calculation of the delivery time is an element in the determination of a vendor's adherence to delivery dates (that is, the vendor's delivery timeliness, or on-time delivery performance) in MM Vendor Evaluation.
    If it becomes known that the vendor can only deliver ordered goods some days later than originally stipulated, for instance, you can change the delivery date accordingly for materials planning and control purposes. However, the statistics-relevant delivery
    date remains unchanged.
    As a result, the vendor's "on-time delivery performance" score worsens. At the same time, it is ensured that materials planning and control works on the basis of the right date.
    Regards,
    ian, Wong Loke Foong

  • Change System Status of SO item dynamically based on Reason for Rejection

    Hi ppl,
    Our SAP user has raised a requirement as described below:
    In sales order (in creation mode (VA01) or change mode (VA02)), if at the item level, the reason for rejection is mentioned, then the system status for that item should be automatically set to Technically Complete SET (TECO); and if the user removes the reason for rejection for the item, then the system status Technically Complete should be RESET automatically.
    We are looking for any user-exit or BADI available which would be allow this dynamic change of system status based on the reason for rejection field. (No manual interaction for setting or resetting the system status).
    Technically, the functionality is based on the below fields:
    Reason for Rejection: VBAP-ABGRU
    System Status: JEST-STAT
    Please provide suitable inputs.
    Thanks,
    Dawood
    Edited by: Dawood.S.Ghasletwala on Jun 29, 2009 3:14 PM

    program: SAPMV45A
    User exit: USEREXIT_SAVE_DOCUMENT_PREPARE.
    loop at xvbap where updkz NE 'D'.
      if not xvbap-abgru is initital.
        "set your system state here.
      else.
       "reset your system state here.
      endif.
    endloop.
    hmmm you can as well try if you got all you need to know already in userexit: USEREXIT_CHECK_VBAP.
    Edited by: Florian Kemmer on Jun 29, 2009 11:53 AM

  • Changing the status of the sales order item based on reason for rejection

    Hi All,
    When a Sales order item is rejected then the status at the item level is changed as 'TECO'.When the reason for rejection is removed the status 'Teco' is reset.This status change can be achieved using the user exit 'MV45AFZZ'.But the exit does not allow re-atp calculation whenver a blocked item is release.I have use the exit 'MV45AFZB' ,through this the status change as well as re-atp calculation takes place.But the status changed(Based on reason of rejection) does not appear in the same screen.The change gets reflected only when the sakes order is saved and i open it again.
    I want the status change to appear in the same screen.I am doing my code in the form 'userexit_check_vbap' of the exit 'MV45AFZB'. Please let me know if there are any user exits or BADI's available for the same(Changing the status of the sales order item based on reason for rejection ).
    Regards,
    S.Subasree

    Hi subburamaiah
    If you want the report you can create a separate SIS report . In that take the input field  as a Reason for rejection.. and ask for the output the list of sales orders .Now when you check this user defined report you will give the reason for rejection and check what all orders got rejected on that reason for rejection.
    Regards
    Srinath

  • Process Order API -Reason for change either not provided ...

    I'm calling Process Order API to update shipped_quantity for a RMA receipt. Nothing has changed about this code but now I am getting :
    "The reason for this change is either not provided or invalid. (OBJECT=ORDER) "
    We installed a patch last weekend to speed up Ship Confirms I wonder if we went backwards in OM. Any suggestions ???
    Process Order code snipet:
    l_header_rec.header_id := p_header_id;
    l_header_rec.operation := oe_globals.g_opr_update;
    l_line_tbl(1) := OE_ORDER_PUB.G_MISS_LINE_REC;
    l_line_tbl(1).line_id := p_line_id;
    l_line_tbl(1).shipped_quantity := p_rec_qty;
    l_line_tbl(1).shipping_quantity_uom := 'EA';
    l_line_tbl(1).flow_status_code := 'RETURNED';
    l_line_tbl(1).operation := oe_globals.g_opr_update;
    Call Process_Order
    OE_Order_pub.Process_Order(
    p_api_version_number => 1
    .

    Please review the documentation about process order API as there are several things you might want to revisit about this call to process order:
    Following are my observations:
    - you are updating shipped quantity. I think this field shoud not be updated using the API. As it shoudl be updated by a process(shipping process)
    -You are also trying to update the flow_status_code. This field is also not supposed to be updated.
    My suggestion is that you try to follow the same process step by step that one should follow to update the shipped_quantity on RMA order. (e.g. receiving the item against the order using inventory api's or probably shipping the order line using the shipping api's). I am afraid, using the given code you might create data discrepancy.
    Hope this helps,
    Nitin Darji

  • The credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be.

    the credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be??

    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • Reason for rejection not changed in transaction MASS

    Hi everybody,
         I'm trying to update a sales order item with a reason for rejection (field VBAP-ABGRU) in transaction MASS but it doesn't work. I took a look in SAP notes and found similar problems but these notes (specially note 390105) don't apply to our version (4.7 support package 22). Before opening a note in SAP I would like to have someone's opinion about the issue.
         Thanks,
    Paulo

    Paul, it doesn't work because the field is not updated despite success message issued when the transaction is finished (I tried to change the field content from blank to other value). The field is available in transaction MASS and I have successfully tested it in another system (release 6.00). But now I found a note (regarding to the same problem in another field - MASSSDPOSVBKD-KURRF) that can be helpful. It's note 777746 and it applies to our release. So, I'm waiting for the basis team to implement it to see what happens.
    Thank you,
    Paulo

  • Mass change with Reason for Rejection.

    Dear Gurus,
    Pl tell me the process to close all the open orders at one go. I have tried with the t.code MASS, but I was unable to do that.
    Pl give the step by step process.
    Regds,
    Sreehari

    Hari,
    MASS transaction is useful, If you know what fields to change  and in what documents/customers/vendors/.
    In your case what fields is pretty clear (VBAP-ABGRU  or MASSVBAP-ABGRU )
    But what documents is not clear.
    Points to consider.
         You can the documents that are open by just writing some query or even you can get it from SE16 using VBAP table
            and you can use these document numbers and enter in the MASS T.Code.
    It looks simple but the main hurdle is not all of the items in these orders are open, right...so you can't enter the reason for rejection in an item which was already delivered, or scheduled to deliver.
    So  Unless you know that all the items of an order are open, its not feasible to use MASS T.code.
             So my suggestion is to write an ABAP program that check whether the item in an order is open or not and then change the reason for rejection using BDC code.
                    Thats my suggestion. I hope you understood the reason for going to an ABAP program.
    Regards,
    Ajai.
    Reward points if helpful.

  • Reason for change of Infotype Based on Company Code

    Hi Experts,
    I have a requirement where I need to restrict the F4 HELP in
    PA30 Transaction for the infotype 15  based on company code for the field reason for chagne.
    I know that reason for change of infotype are maintained in the table T530E.
    But can this be restricited through SPRO configuration.
    Thanks in Advance.
    Regards,
    IFF

    Hi.
    It's possible to change the search helps with a search help exit.
    Take a look in SE11 for search help H_T530E.
    Search help exit
    A search help exit is a function module for making the input help process described by the search help more flexible than possible with the standard version.
    This function module must have the same interface as function module F4IF_SHLP_EXIT_EXAMPLE. The search help exit may also have further optional parameters (in particular any EXPORTING parameters).
    A search help exit is called at certain timepoints in the input help process.
    Note: The source text and long documentation of the above-specified function module (including the long documentation about the parameters) contain information about using search help exits.
    Function modules are provided in the function library for operations that are frequently executed in search help exits. The names of these function modules begin with the prefix F4UT_. These function modules can either be used directly as search help exits or used within other search help exits. You can find precise instructions for use in the long documentation for the corresponding function module.
    Regards.

  • Field "Reason for change" mindatroy in PO under "Version" tabe ?

    Hello Exp.,
    Is there any EXIT or BADI available to make "Reason for change" mandatory while changing PO in ME22N tcode.
    In SPRO, is there any standard location where we can make this field mandatory? .
    Input and suggestion is highly appreciable.
    Regards
    Sanjay

    Dear sir,
    go to SPRO-IMG-Materials Management-Purchasing-Version Management-Set Up Version Management for External Purchasing Documents.
    select your document type for which you want to make the required entry reason for change. and click details indicator(CtrlshiftF2). and in field selection Reason field make the Required entry.
    then when u r changing PO the system will ask required entry for reason for change.
    regards
    jrp

  • HT2712 Network ip address keeps changing and for some reason I can't find the right settings. The diagnostics says to check with my network  administrator,  but idk whom that is being at a motel and all. I have made. New locations, & changed the ipv4 addr

    Network ip address keeps changing and for some reason I can't find the right settings. The diagnostics says to check with my network  administrator,  but idk whom that is being at a motel and all. I have made. New locations, &amp; changed the ipv4 address. Help plz

    Hmmm, is Network set to using DHCP?
    Go to System Preferences
    Click Network
    Highlight AirPort and click Configure...
    Choose “By default, join: Preferred networks”
    Select your access point and Remove your access point with the minus button.
    Launch your keychain access in Utilities and delete your access point keychain entry.
    Reboot
    Go back to the “By default, join:” page and click the plus this time to add your access point. Enter the correct password, save, reboot.
    Instead of joining your network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed

Maybe you are looking for

  • Nokia 5800 applications on nokia.co.in

    Most of the applications available for download for the Nokia 5800 on nokia.co.in have expired certificates or just down work at all. I hope someone in charge of that site / applications will fix this asap. Smartguard - > The application is not valid

  • 2711x monitor is blank

    My 2711x screen is blank, I try pressing f10 process but it's not working...what should be done? to turn on screen? Please help...

  • How do I receive a hpprinter email address?

    Where can I obtain a hpprinter printer email address for my printer??

  • Font Substitution with PDF Place

    I am trying to place a PDF. When I do so Illustrator substitutes fonts, creating a mess. Is there any way to specify the font replacements to be used.

  • Needs help with an error

    Hey guys, I'm trying to edit a flash game called Curveball. all i want is to get the lives up to like 200 so i can practice. but after i get the game into flash and try to play it in there i get this error Target not found: Target="undefined" Base="_