Movement 261 and 262

Hi All,
I am having a problem regarding movement type 261 and 262.
When I am doing 261, in production order withdrawn quantity is getting updated and acording to that the Cost of that component also gets updated. And storage location Stock getting decreased respectively.
But when I am doing 262, nothing is updated(withdrawn quntity in production order - component overview  & Cost of that component). But respective Stock is getting increased in storage location.
What is the problem. OR what procedure should I follow to overcome from this problem.

Again i m clearifying my problem with example...
Suppose, i m doing GI (movement type 261) using MIGO or CO27 for one component in production ordr.
Then it is appearing as a "Quantity withdrawn"  in "Component overview" in production order. say 10 pc.
Then stock of perticular storage location will be decrease by 10 pc.
But when I am doing reverse GI (mvnt 262) using MB1A then "Quantity withdrawn" field should become blank, i mean zero. but that is not happening. But stock of perticular sorage location is Increased by 10 pc in right way.
So, I can say it is right according to Stock increase and decrease. But, by seeing component overview i can't say the situation of GI.
Is there any setting in SPRO?
plz give guidence.
Points will be rewarded.

Similar Messages

  • How to block movement type 261 and 262 from several storage locations

    Dear Expert,
    Can we block the  261 and 262 movement type from several storage locations? These storage locations are not affected by the MRP run, where for the materials that have been moved to these storage locations their existance are not count. These storage locations could not be used for confirmation production order, therefore i want to block  261 and 262 movement type from these storage locations.
    Thanks
    Pauline

    Dear Pauline,
    if my understanding is correct abt ur query,
    1) you want in confirmation screen, Consumption should happen only from one storage location
    2) Rest all storage locations should not be allowed
    3) Maintain Storage location in BOM component view, in mass you can maintain in CEWB
    4) Now GO with SHD0, Make storage location field as Out put only, for CO11N Transaction
    Plz refer this link for SHD0 Demo
    [https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/transactionVariant-AStepbyStepGuidefor+Creation]
    Regards
    Madhu Kumar

  • Allow mov type 261 and 262 for a material type only

    Requirement is to allow movt type 261 and 262 for a particular material type.( Assume Only 261 - 262 issue transactions happen against that material type.)
    User to be restricted, while material issue (migo), for the material type XXXX to 261 - 262 movt type only.
    No any other movt type allowed for this material type while issuing material.
    All suggestions welcomed.
    Regards,
    Rakesh

    Thanx amit.
    But same user uses all other movt types for other material type also.

  • How to stop 261 and 262 MVT types after GR for production Order.

    hi,
    After GR [MB31] against the Production order,  261 and 262 movments should not be happen, but in  present proces its taking place,
    Client dont want to happen it,
    Can any body tell me how to controll this.
    Veera.

    Hi  Veerakumar ,
    You can TECO the production order if reqd since delivery complete status of the order.
    or you can go to system status and do as explained .
    Regards,
    Vimal

  • MB_CREATE_GOODS_MOVEMENT - GI with reference to a reservation; Movement 261

    I have data coming inbound in EDI 944. This data is supposed to come and post as a good's issue and creating a material doc. number in the process. The reservation number and reservation item number field in my IDOC are blank. So, I fill them up in a user exit - EXIT_SAPLLMDE_002 after quering RESB table with my production #,material and plant combination. An IDOC is created. But the reservation # that i filled in the user exit is still blank.Also in MB51, the reservation tab shows up as blank . But there are entries for reservation in MSEG table for the material document number just created. I am trying to make this work for only movement types 261 and 262. Here is the code of my user exit..
    ***   INCLUDE ZXLIDU10
    ***"*"Globale Schnittstelle:
    ***"       IMPORTING
    ***"             VALUE(I_IDOC_CONTROL) LIKE  EDIDC STRUCTURE  EDIDC
    ***"             VALUE(X_XALLR) LIKE  RLREO-XFELD
    ***"             VALUE(X_XALLP) LIKE  RLREO-XFELD
    ***"             VALUE(X_TCODE) LIKE  SY-TCODE
    ***"             VALUE(X_IMKPF) LIKE  IMKPF STRUCTURE  IMKPF
    ***"       EXPORTING
    ***"             VALUE(X_XALLR) LIKE  RLREO-XFELD
    ***"             VALUE(X_XALLP) LIKE  RLREO-XFELD
    ***"             VALUE(X_TCODE) LIKE  SY-TCODE
    ***"             VALUE(X_IMKPF) LIKE  IMKPF STRUCTURE  IMKPF
    ***"       TABLES
    ***"              T_IMSEG STRUCTURE  IMSEG
    ***"              T_IDOC_DATA STRUCTURE  EDIDD
    *Capture Reservation Number & Qty record related to Prod. Ord.
    *Component
    *for Movement type 261/262.
    DATA:   BEGIN OF e1mbxyh.  "Goods movements for mobile data entry
            INCLUDE STRUCTURE e1mbxyh.
    DATA END OF e1mbxyh.
    DATA:   BEGIN OF e1mbxyi.   "Add goods mvment from external systm:
            INCLUDE STRUCTURE e1mbxyi.
    DATA END OF e1mbxyi.
    tables : resb .
    clear e1mbxyi.
    *T_IMSEG-WENUM = X_IMKPF-XABLN.
    check i_idoc_control-mestyp eq 'ZMMBXY'.
    check i_idoc_control-idoctp eq 'WMMBID01'.
    check i_idoc_control-direct eq '2'.
    loop at t_idoc_data.
      case t_idoc_data-segnam.
        when 'E1MBXYI'.
          e1mbxyi = t_idoc_data-sdata.
          if e1mbxyi-bwart eq '261' or e1mbxyi-bwart eq '262'.
            clear resb.
            select single rsnum rspos bdmng from resb into (resb-rsnum,
          resb-rspos,resb-bdmng) where matnr eq e1mbxyi-matnr and aufnr eq e1mbxyi-aufnr
          and
            werks eq e1mbxyi-werks .
            if sy-subrc eq 0 and e1mbxyi-bwart eq '261'.
              e1mbxyi-rsnum = resb-rsnum.
              e1mbxyi-rspos = resb-rspos.
            loop at t_imseg.
    *          clear t_imseg.
              t_imseg-rsnum = resb-rsnum.
              t_imseg-rspos = resb-rspos.
              t_imseg-xrere = 'X'.               "Read this in some OSS note that I need to have it as X
              modify t_imseg .
            endloop.
            endif.
            if sy-subrc eq 0 and e1mbxyi-bwart eq '262'.
              e1mbxyi-rsnum = resb-rsnum.
              e1mbxyi-rspos = resb-rspos.
              e1mbxyi-bdmng = e1mbxyi-erfmg.
              e1mbxyi-enmng = e1mbxyi-erfmg.
            endif.
            t_idoc_data-sdata = e1mbxyi.
            modify t_idoc_data.
          endif.
      endcase.
    endloop.
    After it comes out of the user exit, in SAP it passes through the FM MB_CREATE_GOODS_MOVEMENT, thats where the real Goods movement takes place..
    Any idea guys why the newly generated IDOC doesn't have reservation number and item field filled ?

    Hello Shareen
    I am not really sure where the problem might be yet I would like to suggest some improvements to your coding.
    DATA: ls_edidd    TYPE edidd.  " I do not work anymore with header lines but exclusively with work areas
    DATA: ld_idx        TYPE i.
    loop at t_idoc_data INTO ls_edidd
                                WHERE ( segnam = 'E1MBXYI'  ).
      ld_idx = syst-tabix.
          e1mbxyi = ls_edidd-sdata.
          CHECK ( e1mbxyi-bwart eq '261' or e1mbxyi-bwart eq '262' ).
            clear resb.
            select single rsnum rspos bdmng from resb into (resb-rsnum,
          resb-rspos,resb-bdmng) where matnr eq e1mbxyi-matnr and aufnr eq e1mbxyi-aufnr
          and
            werks eq e1mbxyi-werks .
           LOG-POINT <name of checkpoint group>
             FIELDS e1mbxyi-matnr e1mbxyi-aufnr e1mbxyi-werks
                         syst-subrc resb.
           CHECK ( syst-subrc = 0 ).
            CASE e1mbxyi-bwart.
              WHEN '261'.
              e1mbxyi-rsnum = resb-rsnum.
              e1mbxyi-rspos = resb-rspos.
            loop at t_imseg.
    *          clear t_imseg.
              t_imseg-rsnum = resb-rsnum.
              t_imseg-rspos = resb-rspos.
              t_imseg-xrere = 'X'.               "Read this in some OSS note that I need to have it as X
              modify t_imseg.
            endloop.
            WHEN '262'.
              e1mbxyi-rsnum = resb-rsnum.
              e1mbxyi-rspos = resb-rspos.
              e1mbxyi-bdmng = e1mbxyi-erfmg.
              e1mbxyi-enmng = e1mbxyi-erfmg.
            WHEN OTHERS.
              CONTINUE.
            ENDCASE.
            ls_edidd-sdata = e1mbxyi.
            modify t_idoc_data FROM ls_edidd INDEX ld_idx.
    endloop.
    If you have checkpoint groups available on your SAP release then I would use them to support debugging.
    Regards
      Uwe

  • Floor Stock Management - Movement Type 312 & 262 RFCs

    Dear All,
    For testing reasons, I transferred Stock from SAP ERP (IDES ECC6.0, no EHPs, Configuration Type A) to SAP ME (Base 6.0.2.0) with both Movement Type 261 and 311. I defined a Floor Stock Location 0001 for this purpose.
    According to ME help, I should be able to return those movements via 262 or 312 respectively as far as ERP is concerned. In ME then I set the Reason Code to both RTN- codes which worked fine for returning 311 items (I got maintainInventoryRequests each) to their original stock location. So far so good.
    Issue 1: Collaboration for return worked fine, however, I then got INVCON02 IDOCs (as opposed to the INVCON02_INV_PEG ones MII received originally for booking 311&261 movements), supposedly sent from SAP ERP. MII declined those saying "No workflow defined", as it is the case. My question here is: What are those IDOCs about? Do I require them? Can I switch them off?
    Issue 2: As for returning 261 movements, which supposedly should be triggered from SAP ME I do not get any kind of collaboration when trying to return those to available stock. Do I require a special reason code? Is the business logic different from my thinking (returning items moved via 261 should be returned to available stock in SAP ERP when returning them in SAP ME)?
    Any Ideas? Help highly appreciated
    Cheers, Stefan

    Hi Atisivan,
    In SAP there is planned material movement and there in unplanned material movement. System allowes any number of movement when you do unplanned goods Movement. this may be to provide for stock adjustment during stock count. but when you click on reference order. then system checks the reservation against the order and will do only planned goods movement.
    If you still have above production order in system you can check the documented goods movement for each posting you have done. and you will see that the 1000 posting what you did will be considered in unplanned posting.
    however, it is advised always to use with reference to while you are doing a goods issue or reversal.
    regards,
    Suraj Kamble

  • BAPI_GOODSMVT_CREATE with a movement type of 262

    hi:
    when  I do a goods movement using BAPI_GOODSMVT_CREATE with a movement type of 262. If I supply the reservation number it creates the material document with a movement type of 261 ignoring the 262 . why ?

    Hi,
    Check if GM_CODE in the import parameters is set to "06" for the reversal movement type. If not, please set it to 06.
    Regards,
    Sachin .

  • MF42N - Change type movement 261

    Hello Experts,
    I run the transaction MF42N to make a notification.
    This operation uses the movement type 261.
    Can I change this type of movement?
    Can I assign different types of movement by purchasing organization, to use the 261 for a purchasing organization and the Z61 for another?
    Grateful
    Fabricio

    Hello,
    Thanks for the reply.
    Explained in more detail the stage.
    There are 2 companies implemented. Each has several plants. The type of movement 261 has the field GSBER mandatory, because this is required only by one company, or for plants for this company.
    The other company (and plants) needs that the field GSBER is not mandatory, so we need to change the type of movement in the case of a plant or another.
    For a plant, the type of movement has to have the field GSBER mandatory, while for the other plant, no.
    Thank you very much.
    Fabricio

  • Movement types and effects on moving average cost

    Hi all,
    can anybody explain me what is moviment type n° 309 (transaction mb1b).
    Before of this movement I had in the storage a stock of 15.000 KG and a moving average cost of 6,70 u20AC.
    Then I did a movement 309 in MB1B for 4.050 kg.
    After that I did a movement 261 (probably with transaction qa11) for 11850,300.
    After these movements my moving average cost decreased to 1,29.
    what kind of movement are 309 and 261?
    Can they change my moving average cost?
    thank you
    C.

    Hello Vallex,
    Mvt type 309 is materia to material/batch to batch/valuation type to valuation type transfer. If you have different different price for both material then definately it will change your moving average price.
    However, 261 is issue to production order and that will not change your moving average price. it will take material price from material master into the accouting document.
    Hope this helps.
    Regards,
    Arif Mansuri

  • Movement Type and Special Stock in Reservation

    Hi,
    I had created a Repair Order and via this Repair Order, system automatically created Service Order also.
    I had entered a component (Spare Part) in the Service Order. Upon saving System created a Reservation with Movement Type 261 and Special Stock E. As a result, during Service Confirmation, System is looking for Sale Order Stock of the component too. But here, the component will be available in Unrestricted Stock.
    How do I get just movement type 261 without the Special Stock indicator in the above scenario ?
    Thanks for help.
    Raj

    Hi Thyagarajan,
    The Reservation was for the Subcomponent of the Product that I entered in the 'Component Overview'.
    The Component Overview had
    Item 000 for the Main Item by default and 'Reservation Relevance/Generation of Purchase Requisition = Never'
    Item 0010, I entered the Subcomponent and 'Procurement Type (text) = Reservation for sales order' and 'Reservation Relevance/Generation of Purchase Requisition = Immediately'
    Movement Type in the 'Component Detail General Data' is 261 with Special Stock = E in the 'Value flow/Quantity Flow' section.
    I do not want E here as the Subcomponent will be consumed from Unrestricted Stock.
    Anything that I missed out ?
    Thanks.
    Raj

  • 261 and 914 implications

    hi everyone ,
    can anybody explain me the exact implications of 261 movement type and 914 interim storage type. How they are used, in what context?
    waiting for ur valuable reply
    thank you
    have a great day

    hi balaji,
    In warehouse mamagent while using 261 movement type for issuing against the service order,the material moves from the bin location to interim storage area(914).
    For this process a to will be created automatically in mb11 trx.
    after confirming the to only billing request can be carried out in DP90 trx.
    for movement type 261 , you have assigned the interim storage area 914 in customizing
    Regards,
    velu
    Edited by: kulandaivelu rajasekaran on Apr 17, 2008 5:18 PM

  • I have purchased a movie and it has downloaded.   Next, I get a screen the says Terms and Conditions. It says to click Agree but I. Can not find Agree anywhere in the document.  how do I move forward and access the movie?

    I have purchased a movie and downloaded it. Next I get a screen that says Terms and Conditions and tells me to read and click on Agree. I cannot find the Agree anywhere in the document.  How do I move on and view the movie?

    Go to Settings>General>Usage. How much space does it show you have?
    If you connect your phone to your computer, what does iTunes say is on your phone? Do you see a large amount of "Other"? If so, you may have a corrupted database. You'll need to sync your phone then restore it as NEW (not from back up) then re-sync your data).

  • Need to convert music videos that are tagged as "Movies" and re-rag them as "Music Videos" to get them out of my movies library and into the Music Video folder. Likewise, I ha e some educational videos that belong in "Podcasts." Help?

    Need to convert music videos that are tagged as "Movies" and re-rag them as "Music Videos" to get them out of my movies library and into the Music Video folder. Likewise, I have some educational videos that belong in "Podcasts." Help?

    Select/highlight the ones that you want to change in your iTunes library, do Get-Info (control-I) and change their Media Kind on their Options tab to 'Music Video' - and then similarly for the podcasts.

  • Movie Rentals and Purchases on IPad - What's wrong with this?

    Bought my very first Apple product...(IPad 64G WiFi only) last week.
    I intended to use it just to keep me busy reading, watching movies, playing games, on all the long flights to Europe and Asia that I take.
    So yesterday I excitedly set up an ITunes account, and downloaded 4 movie rentals, and purchased one other movie (Angels and Demons). All HD. I just figure I'd let it run all night and I'd see the movies the next morning.
    The rentals all appear to have downloaded, and they show up in the videos section. HOWEVER, they are ALL marked "Expires in 17 hours". Never started watching any of them, why are they already set to expire? The rental info section of Itunes says I have 30 days to start watching, then 24 hours after that til they expire.
    As for the purchased movie, th it appeared stuck on the "tap to retry" icon, which I did several times, with repeated errors, until the download icon simply disappeared and no sign of the dowload status or the actual movie anywhere.
    I DID get billed for all of these. This is like 40 bucks worth of stuff.
    Everyone who uses MAC stuff always brags about how great it is, how excellent customer service is, how things just "work", etc.
    Color me WAY not impressed. No answers to my emails sent through ITunes help (yes, I checked spam folder) and no movies for my flight to China this weekend.
    Any suggestions on things to change to make it work better next time? OR just buy a **** portable DVD player for 400 bucks less than an Ipad?

    HI Jeffrey and welcome...
    Make certain the time and date are correct on your PC.
    Click Start and then click Control Panel.
    Click "Date, Time, Language, and Regional Options" and then click Date and Time.
    Click the Date & Time tab.
    Make sure that the date and time settings are configured to use the current date and time and then click OK.
    Make sure you are running the latest version of iTunes. http://www.apple.com/itunes/download/
    Check the Firewall.
    From the Start menu, choose Control Panel.
    If the Control Panel is in Classic View, skip to step 4.
    On Windows 7 and Vista, click Security; on Windows XP, click Security Center.
    Click Windows Firewall.
    On Windows 7 and Vista, click Change Settings; if asked for permission by Windows, click Continue; make sure the “Block all incoming connections” option is *not selected.*
    Click the Exceptions tab.
    Check the iTunes box.
    Click OK.
    You can report problems to Apple via the iTunes store. Launch iTunes. Select iTunes Store on the left. On the right side of that window select your account name. In the next window click: Purchase History then click: Report a Problem.
    More support options here: http://www.apple.com/support/ipad/contact/
    Carolyn

  • HT4108 I'm trying to connect my iPad to my tv so that I can mirror whatever is on my iPad. I want to stream movies online and watch on the tv. I have the digital av adapter and an hdmi cable but it's not working. Any tips ?

    I'm trying to connect my iPad to my tv so that I can mirror whatever is on my iPad. I want to stream movies online and watch on the tv. I have the digital av adapter and an hdmi cable but it's not working. Any tips ?

    If this is an iPad 1, it won't mirror, but it will still output video from the 30 Pin dock connector.
    If your new TV has a conventional VGA in and stereo inputs you can try this connector.
    http://store.apple.com/us/product/MC748ZM/A/apple-composite-av-cable?fnode=3a
    I used to stream video from both Netflix and YouTube and from my Mac using iTunes sharing through my iPad then with this connector plug into my iPad and TV.
    It won't be high resolution, but it will get you picture from iPad to TV.
    Good Luck.

Maybe you are looking for

  • Transferring iMac G5 to new aluminum iMac

    i just bought a new iMac and used a firewire at the initial set up to transfer all the information from my last iMac G5 to my new iMac. It had iLife 06', and now I think that my new iMac that is supposed to have iLife 08' is running on the 06' stuff.

  • How to passing object to the applet?

    Dear All, My project is needed to read the xml file (include the form content) and then parse the xml file to create the related object, so using the applet to display this dynamic form. Due to cannot directly open the file object and the applet, the

  • Cannot download hotsync manager portion of Palm Desktop

    Hi, I am unable to download hotsync manager for Palm desktop. The error message reads "the application config launch services has unexpectedly quit". I am however able to download it as another user so the problem must be something in my folder? I ha

  • Mail Syncing Error

    I just added a new IMAP account to my Mail.app, I know have three mailboxes in my Mail.app. Now the third won't sync over to the iPhone. Is there a limit to how many mailboxes you can have syncing? This is the error which comes up: "iTunes could not

  • Unable to install xp-unable to accept EULA cos trackpad/keyboard stops work

    Trying to install xp on 10.6.2 on macbook pro 13.3" 2009 model using bootcamp 3.0. The partitioning and windows setup went fine, but during installation, Windows asks me to accept EULA before installing but my trackpad and key board stopped working a