Unable to do Goods reversal

Hi,
I am unable to do goods reversal of an outbound delivery. Error message shows "Enter Movement type".
Typ Message text                                                           LTxt
    GI for delivery 1085154084 cannot be canceled for the following reaso
    Enter Movement Type
Please provide your valuable inputs to solve the above issue.
Thanks
Rama

Hi,
Rama as our other friends has suggested u pls check the schedule line assignment for the return sales document type RE.
And also the movement type there are two type 651/653 choose the required and carryout the returns delivery in vl01n if it is manaually.
Pls check if it works.
Regards,
Ramesh.

Similar Messages

  • Credit memo link with Goods reversal

    Hi,
    Does anyone know of any process or method either in R/3 or in SRM that can be used to link Goods reversal with automatic credit memo creation for a PO ( when invoice is already posted ). We have SRM 4.0 and not using GRBasedIV status checked for most of the POs.
    Can a customized movement type or workflow achieve this.
    Thanks in advance,
    Viv

    Again I can tell you that the process what you were following (reversing the goods receipt) is totally wrong and it will have a serious negative impact on inventory.  Either you should not create a return delivery or take the stocks into parent plant.  If you dont want to show in inventory, then scrap it which is a standard process.
    Coming to the requirement, there is no standard way to achieve this.  Check these threads where the same topic was discussed
    [Re: How to set up in SAP to have automatic billing after PGI |Re: How to set up in SAP to have automatic billing after PGI]
    [automatic billing|automatic billing]
    You have to apply the same logic for credit note also.
    thanks
    G. Lakshmipathi

  • Regarding Goods Reversal and Goods Issue process for Production orders

    Hi,
    I have a issue regarding <b>Goods Reversal</b> and <b>Goods Issue</b> process for <b>Production orders</b>.
    Actually I am having a Z - Function Module in that i am passing <b>production order number other details</b> to
    make the <b>Goods Reversal</b> happen.
    The code for the above is as below:
                       i_mvtit-material      = wa_mdfa-matnr.
                        i_mvtit-plant         = i_resb-werks.
                        i_mvtit-spec_stock    = 'Q'.          "New
                        i_mvtit-stge_loc      = 'ZWIP'.
                        i_mvtit-stge_type     = i_resb-lgtyp. "New
                        i_mvtit-batch         = i_resb-charg. "New
                        i_mvtit-orderid       = i_resb-aufnr.
                        i_mvtit-spec_stock    = i_resb-sobkz.
                        i_mvtit-entry_qnt     = i_resb-enmng.
                        i_mvtit-entry_uom     = i_resb-erfme.
                        i_mvtit-entry_uom_iso = i_resb-meins. "New
                        i_mvtit-wbs_elem      = v_frwbs.
                        i_mvtit-move_type     = '262'.
                        i_mvtit-xstob         = 'X'.
                        i_mvtit-gr_rcpt       = i_resb-aufnr. "New
                        i_mvtit-reserv_no     = i_resb-rsnum.
                        i_mvtit-res_item      = i_resb-rspos.
                        APPEND i_mvtit.
    * HEADER ELEMENTS
                        k_gmvt_code-gm_code    = '03'.
                        k_gmvt_head-pstng_date = sy-datum.
                        k_gmvt_head-doc_date   = sy-datum.
    * CREATE GOODS MOVEMENTS
                        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
                          EXPORTING
                            goodsmvt_header = k_gmvt_head
                            goodsmvt_code   = k_gmvt_code
                          TABLES
                            goodsmvt_item   = i_mvtit
                            return          = i_return.
    The Above code does the <b>Goods Reversal</b> but then i will update one Z Table with fields like
    Production Order Number[AUFNR], Number of Reservation[RSNUM], Item Number of Reservation [RSPOS], Material Number [MATNR], Requirement Quantity [BDMNG], WBS element[PSPNR] etc. If Above BAPI runs sucessfully.
    That is happening correctly.
    But Then actual issue is i have do <b>Goods Issue</b> for those Z-Table records.
    There i will give Production order Number's & Storage Location in Selection-Criteria.
    Then i need to do <b>Goods Issue</b> for that order.
    The code i had written as follows.
    * POPULATE VALUES FOR BAPI CALL
            i_mvtit-material      = i_zpsi7603_01-matnr.
            i_mvtit-plant         = i_resb-werks.
            i_mvtit-spec_stock    = 'Q'.                "New
            i_mvtit-stge_loc      = p_sloc.
            i_mvtit-stge_type     = i_resb-lgtyp.       "New
            i_mvtit-batch         = i_resb-charg.
            i_mvtit-orderid       = i_resb-aufnr.
            i_mvtit-spec_stock    = i_resb-sobkz.
            i_mvtit-entry_qnt     = i_resb-enmng.
            i_mvtit-entry_uom     = i_resb-erfme.
            i_mvtit-entry_uom_iso = i_resb-meins.       "New
            i_mvtit-wbs_elem      = v_frwbs.
            i_mvtit-move_type     = c_261.
            i_mvtit-mvt_ind       = 'F'.                "New
            i_mvtit-xstob         = c_x.
            i_mvtit-gr_rcpt       = i_resb-aufnr.       "New
            i_mvtit-reserv_no     = i_resb-rsnum.
            i_mvtit-res_item      = i_resb-rspos.
            APPEND i_mvtit.
    * HEADER ELEMENTS
            k_gmvt_code-gm_code    = c_03.
            k_gmvt_head-pstng_date = sy-datum.
            k_gmvt_head-doc_date   = sy-datum.
    * CREATE GOODS MOVEMENTS
            CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
              EXPORTING
                goodsmvt_header = k_gmvt_head
                goodsmvt_code   = k_gmvt_code
              TABLES
                goodsmvt_item   = i_mvtit
                return          = i_return.
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
              EXPORTING
                wait = c_x.
            READ TABLE i_return INDEX 1.
            IF i_return-type EQ c_s.
              DELETE FROM zpsi7603_01 WHERE aufnr = i_resb-aufnr AND
                                            rsnum = i_resb-rsnum AND
                                            rspos = i_resb-rspos.
            ENDIF.
    If i run above code for <b>Goods Issue</b> it is giving error can anybody tell me what changes i need to do to make it work.
    The <b>Error Message</b> i am getting is as below:
    <b>Qty and / or "delivery completed" ind. or final issue ind. are missing</b>
    <b>Error Number for the above is : 264.</b>
    Can anybody solve my issue.
    Any help will be appreciated.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    Hi,
    Thanks boss.
    It is working now correctly.
    The issue is the  i_mvtit-XSTOB should be equal space in case of Goods issue while incase of Reversal it should be equal to X.
    Thanks for ur efforts.
    I had awarded you points.
    Thanks a lot.
    Thanks & Regards,
    Rayeez.

  • Sales Return: credit memo Should generate automatically with goods reversal

    DEAR SD GURUS N EXPERTS,
    Currently we are using following system of Sales return.
    VA01: (Order Type: RE) --> VL01N (Return Delivery) --> VL09 (Goods Reversal) --> VA01 (Request 4 Credit Memo or remove billing bloc) --> VF01 (Credit Memo)
    But, now my client want a such configuration that entry of Credit memo should happen along with Goods Reversal (VL09) - Automatically. They don't want to carry out VF01 separately.
    Reason behind it: Customers has credit Limit, Suppose a customer has a Credit limit of 5,00,000 and we have delivered the Material of same amount. It means all the credit limit has been used. But now He has returned the material of 2,00,000. But it will not affect the credit limit until we pass Credit memo.
    Please suggest the required configuration and what we can do in such scenario. Thanks in Advance.
    DSC

    Again I can tell you that the process what you were following (reversing the goods receipt) is totally wrong and it will have a serious negative impact on inventory.  Either you should not create a return delivery or take the stocks into parent plant.  If you dont want to show in inventory, then scrap it which is a standard process.
    Coming to the requirement, there is no standard way to achieve this.  Check these threads where the same topic was discussed
    [Re: How to set up in SAP to have automatic billing after PGI |Re: How to set up in SAP to have automatic billing after PGI]
    [automatic billing|automatic billing]
    You have to apply the same logic for credit note also.
    thanks
    G. Lakshmipathi

  • Regarding Goods Reversal & Goods Issue Process for PO

    Hi Experts,
               Could you any one tel me what is Goods Reversal and Goods Issue process for PO...
    How to create the FM & detailed Procedure Pls?....
    Please any one tel me.......
    Thanks & Reagards
    HB

    Hi Hans,
    SOURCE : HELP.SAP
    Purpose
    Inventory Management uses this process in such a way that the goods issue posting is divided into two parts that run in separate systems. Posting the GI document in the supplying plant results in a message to the receiving plant. The receiving plant then performs a complementary posting. The physical goods receipt takes place as usual.
    Prerequisites
    When using batch processing, the following prerequisites must be fulfilled:
    Both the original and target systems have the same batch definition level.
    The batch definition level is either the material or the client.
    An ALE scenario exists for materials and classes (characteristics).
    Unique batch numbers exist cross-system.
    Batches can only be changed in their original system when they are not decoupled. From an organizational point of view, this must also lead to the batch status being changeable in a local SAP R/3 system. For example, this is impossible when transfer posting to a new batch and results in further actions, for example, relabeling containers, palettes and so on.
    Characteristics
    As for the purchase order in a one-system situation, the system should automatically post the material into the stock in transit at the receiving profit center and the corresponding Profit Center Accounting using intra-CC transfer prices at goods issue for the purchase order and the unchecked delivery. This requirement is valid for one-system situations as well as for two-system situations where there is an ALE interface. No internal billing document should be created.
    In a two-system case, the receiving profit center should be derived at goods issue from the unchecked delivery. Profit Center Accounting then takes place with
    Stock change transfer price to stock
    Internal expense to internal sales
    Internal clearing account to stock change transfer price.
    Account determination in a purchase order for an intra-company-code transaction must be different from account determination in external transactions. Automatic GR/IR account clearing is required in both one-system and two-system situations.
    The stock in transit must be visible in the receiving profit center.
    The system must send a shipping notification at goods issue in one-system and two-system situations.
    You need to create an invoice document for the internal and external trading statistics for cross-boundary deliveries as well as for customs purposes.
    GR/GI slips are created.
    Process Flow
    Goods Issue Posting for Stock Transfers
    The delivery triggers the goods issue in the issuing system.
    The call contains the stock transport order data known in the delivery, including the PO item and the logical system of the recipient.
    The transaction (quantity and value updates) is selected using the movement type:
    Movement Type     
    Function
    641     
    Goods issue with UB logic (Creation of stock in transit at recipient, immediate value posting).
    647     
    As 641, however the goods receipt line (movement type 101) is added automatically, so that the goods receipt is posted at the same time as the goods issue (one-step procedure).
    You determine the movement type according to the schedule line category in Sales and Distribution. The goods issue for a cross-system stock transfer must be different from the integrated transaction. This is achieved by adding a new movement type.
    You post quantities and values at goods issue in the same way as a goods issue for a sales order. That is to say, the quantity is posted in the supplying plant and the value is adjusted to that of the stock account. The offsetting posting is made to a clearing account. The known data from the delivery is copied to Accounting to balance the account where necessary.
    The system creates a message to the appropriate receiving system for all items with reference to a cross-system purchase order. The system does not perform any validity checks on the recipient’s data before posting begins. Incorrect Customizing results in the update being terminated.
    If a goods issue has receiving plants in different logical systems, an IDoc is sent for each system.
    In order that the goods receipt is able to use the values on the receiver side, you must add the values used to post the goods movement, in particular the transfer prices, to the IDoc.
    The logic for recognizing the profit center switch functions as follows: At goods issue, the system recognizes that the profit center of the issuing plant is different from the profit center of the receiving plant. The system derives the profit center node from the relevant profit center.
    Data Transfer
    The IDocs sent by the issuing plant trigger the goods issue postings in the receiving plant.
    Background Posting in the Receiving System
    The goods receipt is posted in the receiving system using the IDoc. The interface receives the data from the goods issue in the supplying plant. The following processes now run at the recipient:
    The system finds the update control for the GR part of the posting.
    The goods movement is posted with the new movement type.
    During valuation of the goods receipt, the system might, where necessary (UB logic), refer to the values (legal value and the value from the parallel valuation type, if you are using the transfer price function) from the IDoc.
    The PO history is updated. The PO history is updated with the material document number from the second part of the GI posting. The GI document number is not stored in the supplying plant, because there is no way to display this document.
    In two-step procedures the goods receipt is posted to the stock in transit.
    Reversal
    You can only reverse this goods issue for the PO using the cancellation transaction in SD. You cannot reverse the GI in Inventory Management.
    The material document that is automatically created in the receiving system cannot be canceled. This reversal is triggered by the sending system (the actual reversal of the GI document takes place there) and transmits the data, including the reversal movement type, to the receiving system. No actual reversal is posted in the receiving system, because the material document number of the original document does not exist in this system. This scenario is applicable for cases where you use the two-step procedure (with stock in transit).
    Distribution of Batch Master Data and Characteristics
    The batch information is transported using the message category BATMAS.
    When you create a cross-system goods issue, the system creates the corresponding IDoc using the message category BATMAS.
    When the delivery arrives in the target system, the batch and all the information is already present in the system.
    Changes to the batch data are also distributed using the message category BATMAS.
    The batch can be decoupled in the receiving SAP R/3 system. This means that the batch can have a different status in the receiving system than in the original system. By setting an indicator at material level, you decide whether the batch can be decoupled or whether the batch and all its attributes are copied from the original system. "Decoupled" i.e. "locally independent" batches are no longer distributed from its own system.
    The batch data does not need to be available before the physical goods receipt takes place. The goods receipt into the stock in transit does not usually refer to the batch unless you are working with batches with assigned active ingredient values.
    If the GI cannot be posted for organizational reasons, for example because the goods cannot be loaded onto a truck until 10pm, then you can post the goods into the GR blocked stock. This stock is also non-batch-specific.
    In cases where the GI IDoc arrives before the batch IDoc, then the GI IDoc can be subsequently posted by a periodically scheduled report (transaction BD87). A program like this exists in the SAP standard system. In Customizing for MM Inventory Management (activity Copy, Change Movement Types), you should make settings to define that manual creation of batches at goods receipt is not allowed.
    Shipping Notification
    The shipping notification is required in the receiving system due to its relevance for MRP. In this way, for example, a change in delivery date determined at goods issue is sent to the receiving system using the shipping notification. The shipping notification can also be used when posting the GR batches.
    Reward if found helpfull,
    Cheers,
    Chaitanya.

  • Restriction of goods reversal with 262 mvt type in MIGO

    Hi,
    During goods reversal using mvt type 262 with reference to a production order, we are able reverse any amt of qty, I want to restrict the reversal to the extent of other than confirmed qty.
    Eg. Order qty 10 EA, GI done 10 EA (BOM 1:1), confirmed qty 5 EA. I should be able to reverse only 5 EA or less and not more, as 5 EA already consumed.
    Regards,
    Jagadeesh.

    Jagadeesh,
    This check can only be possible using user exit "EXIT_SAPMM07M_001" of Enhancement MBCF0002, you can write your logic in Include ZXMBCU02.
    Regards,
    Prasobh

  • CIN : Capital goods reversal

    Hi
    Can someone give the steps for capital goods reversal process in CIN, with the transaction codes.
    Regards,
    R.Srinivas

    see first u have to do cancellation of ur  G R N  doc in MIGO after that go to J1IEX here select   POST  & give vendor excise no. then press enter --> now in front of u a screen appears in which all details are displayed  , now click on SIMULATE button on top , a small box appears in cenvat reversal is written for part1 & part 2 click on continue & then click on POST CENVAT Button.then u can check in T CODE = FB03 Ucan see that all ur J1IEX Entries i.e CIN entries are reversed , tell to Check in FI FOR T CODE FB03 .
    reward for efforts.
    sap11
    Edited by: sap11 on Jan 24, 2008 10:49 AM

  • Core storage is unable to begin volume reversion

    Hello there.
    I have an external hard drive, and in finder I right clikced it to encrypt it.
    Now I am trying to decrpyt it by opening it up in finder and its gives me Core Storage is unable to begin volume reversion error or sometimes : Unable to decrypt the Core Storage logical volume
    I tried decrypting it in finder, in disk utlities, I tried earsing the hd completly, and multiple restarts on my computer.
    My hd is pretty much useless at this point.  I cannot view my content stored on that drive, copy or paste anything on and to that drive.  It takes a long time for the content to load into the drive also before I can see it.
    Does anyone have a solution for this?

    I also have the same issue. In my case the system hangs during normal login, and stays there forever in about 40% of login progress. I am not able to access any file, or do anthing in the Mac Book pro.
    I have Yosemite 10.10.2 installed.
    I went into safemode and tried to turn off filevault, in attempts of fixing the hang. But I get "Core Storage is unable to begin volume reversion". Anyone any ideas on how to fix this and turn off filevault successfully?

  • Partial goods reversal in STO from goods in transit

    hi!
    what is the movement type we have to use  for partial reversal of goods in transit stock and move it to some cost centre in STO scenario ?whether this functionality available in SAP?
    Because if you use 557 MT,<>MB1A , stock in transit will be reduced (trxn mc.9/mb52) but if you run MB5T it will be showing stock without reduction ?
    Any sap release notes on this if any?
    right answers will be rightfully rewarded .
    thanks in advance for your time
    shankar gj

    not answered yet

  • Unable to close Goods Receipt PO with foreign currency

    hi all,
    When we tried to close Goods receipt PO done in June-08 using Euro currency(Data-->Close)
    System is throwing error message
    "No matching records found  'G/L Accounts' (OACT) (ODBC -2028)  [Message 131-183]"
    What might be reason for error message ?
    As we already did manual JE to reverse Goods receipt PO.
    Expecting you all valuable replies.
    Jeyakanthan

    Hi,
    Define the Goods clearing account.
    When closing a Goods Receipt PO manually B1 will post to Goods Clearing.
    Hope it helps.
    Jesper

  • Goods reversed without cancelling billing Document in STO

    Dear..........
    One of my end user has reversed the goods issue and deleted the line item also in case of Stock Transfer Order. The billing document and Excise document is as it is there. Delivery document is also there but line item is deleted. Is there a way to restructure the scenario so that the document flow could be stream lined.
    Thanks in Advance.
    Indranil Chatterjee.

    Hi,
    SAP note 1486490 can help you if delivery is having transfer order.
    sandip

  • Wrong goods reversal date

    Hi all,
    I am facing a case where the the GI was done on 27/03/2010 but the user for changing the quantity in the document
    reversed the goods issue by VL09 on 03/04/2010.The problem here is now we want the reversal to happen at 27/03/2010 and then carry out the GI with required qty.
    How to reverse the G R document?
    MBST t code doesn't support this as it done from VL09 T code not through Inventory Management transaction.
    Please suggest some solution.
    Lakshman

    Hi Sidi
    Please find the error  details :
    GI FOR DELIVERY CANNOT BE CANCELLED FOR THE FOLLOWING REASONS
    CANCELLATION DATE 27.03.2010 IS BEFORE THE GI DATE 07.04.2010.
    i checked the omsy settings its is ABp is ticked and DBp is unchecked.
    thanks for help.

  • MM COnsigment stock: Unable to issue against reversation

    dear all ,
    we are trying to prototype a MM consigment stock process.
    we have done the following
    1. Purchase info record is created as consigment
    2. PO is created. while creating the PO, the net price is coming as Zero.
    3. Migo was possble with item category as K and movement type as 101
    4. Created a reversation
    5. finally tried to do a goods issue with special indicator as K
    we are getting error PO has zero price.
    we have tried all known settings and the net price in PO  is still coming as zero.
    kindly let us know where the issue could be . what setting need to be modified.
    regards

    Dear Friend,
    when the matl is in consignment sstores, it is not belongs to company. Vendor is the legal owner of the matls.
    you have to transfer from consignment stores to  company stock using 411-K mvt type( T-code= MB1B).
    *you can not do two transactions at single shot( i.e. both transfer posting and issue a matl against Resevastion)*
    In ur case upto 3rd step is OK.
    then,
    1.0 Transfer the matl to companys stock.
    2.0 Create a reservation against a cost center.
    3.0 issue a matl against ur reservation.
    OR
    **u can issue a matl directly to cost center using mvt 201-K in T- code= MB1A.**
    *By that time if u see the matl do. u wil see that stock changes from 101(K-) to 201(K+), but can not issue against reservation*
    It will solve ur problem.
    If u have any doubts, plse revert back.
    Reward if useful.
    Regards
    Viru

  • ***How to Partial goods reversal for a goods movement / PGI done to vendor

    Hi Experts,
    Here is the scenario
    Purchase order is created for 7 ea and inventory for the 7 ea gets moved to the vendor. However the Vendor actually only receives 6ea . Vendor returns 6ea to company.  A Goods Receipt is performed for the 6 ea .  We are invoiced for 6ea
    This leaves 1 ea showing at the vendor.
    The question is  How to reverse that partial quantity to our own company stock. If we use VL09 it reverses the compete quantity.
    Also if I try to do reversal of partial stock with MB1B with the special movement type 542E it gives me error saying  "Special Stock E not supported (check your entry)
    Thanks in advance.
    Edited by: Albert Ackerman on Oct 2, 2009 9:23 PM

    Enter movement type 542 special stock E- DO NOT HIT ENTER
    Go to Edit> Default Values
    You wil be taken to a screen that will allow you to enter sales order data along with the std 542 fields.

  • I have recently installed Aperture 3.1 and my Canon MG 6150 is unable to print good quality photos from it I have to use iPhoto to produce good quality prints. o

    I have recently installed Aperture 3.1,  but my Canon MG6150 has been unable to print photos of good quality from the Aperture print engine
    and I have to return to iPhoto to obtain prints I am happy with.

    I have now to reply to my own question having later found a thread over another canon printer with the answer. In the second print dialog box you click on "show details" and then on "layout". The following schreen shots make this clear. The settings can then be saved as a preset.
    It's a pity the Canon helpdesk was not able to give me this information. I hope that this will help others with similar problems.
    NTMJ

Maybe you are looking for

  • Open sales orders using SD_SELECT_SALES_DOCUMENTS - no POSNR

    Hi all, I'm trying to use SD_SELECT_SALES_DOCUMENTS to select open sales documents but have noticed that it does not seem to contain line item details, seems like it only shows open sales orders at header level. I was wondering if there was something

  • Best practice implementation. What are the steps for this?.

    We had an upgrade from CRM 4 to 7 undertaken by some outfit (name deleted). After the upgrade was complete it would look as though the comapny carried on using the GUI interface rather than the WebUI interface, mainly because that's how CRM 4 worked.

  • Dynamic Pages: how to overide the default format returned from the oracle query.

    When writing a dynamic page, portal always displays any return from a database query in a default format or grey background table: <TABLE border="0" cellspacing=0 cellpadding=2 style="background-color:#E0E0D0"> <TR> <TH ALIGN="LEFT" style="background

  • "Phantom" accounts on second drive wreaking havoc with the main drive!

    I recently bought a new hard drive for my 2006 MacPro, intending to use it as a new startup disk. Trouble is, the drive it replaced, a 2TB drive has too much info I want to keep to move it out and reformat.  So I figured if I deleted all of the old s

  • Tricky problem

    I am facing some peculiar problem here, see if anyone can help. It goes like this. Suppose we have 2 dimensions Product and City and the fact is Response count from prospect customers. During a market campaign i.e for a promotion (this dimension i ha