How to set movement or transfer block during Physical Inventory

Hello Team,
I was wondering if someone could help with how to set
Material Movement block for the entire plant during physical inventory.
I will appreciate any input.

The inventory process in general in equal.
creating document - printing documents - counting - enter count - (recount) - post difference.
It is just the step of creating documents which differs between MI01 and MI31.
MI01 wants that the user to enters the material to be counted manually.
While in MI31 you have a huge selection screen, that allows you to create inventory documents for several location at the same time, while SAP  takes the materials according to your selection criterias.
MI31 can be executed to create the documents directly or by batch input, in earlier releases it was only possible thru batch input.

Similar Messages

  • How to exclude a set of materials from  cycle counting physical inventory

    How to exclude a set of materials from  cycle counting physical inventory
    Details:
    Set of material to be uploaded to SAP on say Jan-2011  from another system with cc indicator D:once
    in a year  and fixed,before uploading into SAP physical inventory will be done .
    So we donot want again those materials to fall in the cycle counting in the same year.
    So is there a method to exclude these materials from CC counting for the year 2011
    or is there some way to upload last inventory count date in SAP system so that it will exclude those
    materials?
    Any answers will be appreciated.
    Thanks
    Bijay

    HI Antony
    Thank you for your reply.
    If material count is less than this method is well valid.
    IN our case there are 7lakhs materials and having diff cc indicator A,B,C,D...
    So it will cumbersome for client to keep track of all those materials when to update cc indicator.
    So any other thought? can we upload last count date while updating materials details  or similar
    Thanks
    Bijay

  • Standard movement to transfer blocked batches to a different plant/center

    I am trying to transfer blocked batches to a different plant/center where it is (from 2000 to 3000). Is there any standard movement which allows to move blocked batches to another plant/center without unblocking them?
    Thank you in advance.
    Edited by: TUBAGOL on Oct 1, 2009 11:11 AM

    Prerequisites
    For materials handled in batches, you can carry out stock transfers from plant to plant and from storage location to storage location as well as transfer postings from material to material.
    An issuing batch and a receiving batch are always involved in a stock transfer or transfer posting of a batch material. The issuing batch number is copied as the receiving batch number (except in the case of a plant-to-plant stock transfer in two steps). The batch number can, however, still be changed.
    Stock Transfers in Two Steps
    In a stock transfer from plant to plant using the two-step procedure, you enter only the receiving plant for the removal from storage. The stock in transfer is managed only at plant level in the receiving plant, independent of storage location and batches. You must enter the receiving storage location and the receiving batch when you post the placement into storage.
    In a stock transfer from storage location to storage location using the two-step procedure, the receiving storage location and the receiving batch are already determined during the removal from storage.
    After posting the removal from storage, the quantity is in stock in transfer. Stock in transfer is managed at plant level, as well as at storage-location level and batch level. As a consequence, you must enter the same receiving batch for the placement into storage. If you do not know the batch, enter * in the Batch field. The batch selection list is displayed. This list displays the stock in transfer for the batches in the Stock column.
    Procedure
    You can post a transfer from batch to batch by entering a different batch for a stock transfer using the one-step procedure. To do this, proceed as follows:
    From the Inventory Management menu, select Goods movement ® Transfer posting.
    Maintain the data on the initial screen. Choose one of the following movement types:
    u2013 Movement type ® Transfer posting ® Plant to plant ® Remove from storage/place in storage
    u2013 Movement type ® Transfer posting ® Stor. loc. to stor. loc. ® Unrestr. to unrestr.
    u2013 Movement type ® Transfer posting ® Material to material
    To maintain the items directly on the item detail screen instead of on the collective entry screen, select Edit ® New item.
    On the detail screen, you can enter an issuing and a receiving batch.
    Post the document.
    In a transfer posting to a new batch, batch data (such as shelf life expiration date or vendor) is copied to the new batch. Classification data is copied as well.
    In a transfer posting to an already existing batch, the data of the existing batch is retained.
    Transfer Postings From Batch to Batch, With Status Management
    In a transfer posting to a new batch, the new batch is given the status unrestricted use (even if the issuing batch has the status restricted use), unless the restricted-use status has been predefined by Quality Management.

  • L_TO_CONFIRM - differences posted to 99 - how to set this stock as blocked?

    I am using fuction module L_TO_CONFIRM for some RF processing and I have been asked that where the differences are posted to 999, can this stock also be blocked so as to remove it from the view of MRP.
    I cannot see how I can do this with this function module as there is no flag to set it to blocked.
    Does anyone have any ideas?
    Regards
    Larissa Maryniuk

    Larissa,
    A useful note on top of Jurgen's.
    Potentially you can cause havoc using LI21 (Clear Differences in IM) as it will allow you to enter any Storage Type.  There is a table where you can exclude Storage Types from being used with LI21.  It makes sense to set this for all Storage Types (except 999 !).
    IMG \ LE \ WM \ Activities \ Physical Inventory \ Clear Differences (Interface to IM)
    2nd option.
    Regards,
    Nick

  • How to set values of formula fields during runtime in crystal reports

    Hello All,
    Could any one help in letting me know how to set the values of a formula in the runtime.
    I tried using the below systax in the formula field
    Assume that I have 2 formula fields
    1. format_count
    2. format_display
    my formula is like below:
    in the formula field format_count i have
    format_display=pagenumber
    when checking for errors its throwing error stating "stamement is expected"
    Could any one help in resolving this
    Thanks

    Hi Ranjeet,
    Whenever you assign values to a variable, you need to use :=
    Like this:
    numbervar x := pagenumber
    And what exactly are you trying to do anyway?
    -Abhilash

  • How to set the file transfer mode to binary

    Hi,
    I have a requirement to upload files from local machine to server, and it is working fine.
    But after uploading files junk characters are entered after each line, so want to set the file transfer mode to binary to get rid from this error.
    We have checked that if we ftp the files manually then also getting the same problem when the transfer mode is not selected as binary.
    Please give your valuable advice.
    Thanks,
    Ranita

    Hi,
    I want to set the file transfer mode through controller code, presently I am using the below code where no file transfer mode is specified ::
    public void upLoadFile(OAPageContext pageContext,OAWebBean webBean)
      String serverPath = null;
      OAApplicationModuleImpl am = (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
       try {              
          Connection conn = am.getOADBTransaction().getJdbcConnection();     
          String query = "select  distinct variable_name, value from fnd_env_context where variable_name = 'XXCUST_TOP' and concurrent_process_id = ( select max(concurrent_process_id) from fnd_env_context )";
          PreparedStatement stmt = conn.prepareStatement(query);
           for (ResultSet resultset = stmt.executeQuery();
                          resultset.next(); )
                 serverPath  = resultset.getString("value");
            stmt.close();  
           catch(Exception ex)
             throw new OAException(ex.getMessage(), OAException.ERROR);
       String filePath = serverPath+"/"+pageContext.getParameter("FileType");
       //System.out.println("Default File Path---->"+filePath);
       String fileUrl = null;
       try
        DataObject fileUploadData =  pageContext.getNamedDataObject("MessageFileUpload");
      //FileUploading is my MessageFileUpload Bean Id
        if(fileUploadData!=null)
         String uFileName = (String)fileUploadData.selectValue(null, "UPLOAD_FILE_NAME"); 
         String contentType = (String) fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");  
         //System.out.println("User File Name---->"+uFileName);
         FileOutputStream output = null;
         InputStream input = null;
         BlobDomain uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, uFileName);
         //System.out.println("uploadedByteStream---->"+uploadedByteStream);
         File file = new File(filePath, uFileName);   //C:\\Ranita
         //System.out.println("File output---->"+file);
         output = new FileOutputStream(file);
         //System.out.println("input---->"+input);
         byte abyte0[] = new byte[0x19000];
         int i;
         while((i = input.read(abyte0)) > 0)
         output.write(abyte0, 0, i);
         output.close();
         input.close();
         HashMap map = new HashMap();
         map.put("fromPage","Y");
         pageContext.forwardImmediatelyToCurrentPage(map,true,OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
       catch(Exception ex)

  • Material Blocked for Goods reciept during Physical inventory.

    Dear All,
    We are using Batch management .
    While carrying out the Physical inventory, system allows the goods receipt for the materials existing in the physical inventory document,  As the new batch is created during the Goods receipt.
    While creating the physical inventory we are putting the posting block and including all the existing batches available at that time.
    Can anyone suggest anything so that the goods receipt can be stopped till the time difference is not posted in the system.

    Dear Don,
    Please explore the "Posting block" and  "Freeze book inventory"
    checkbox in transaction MI01 .
    Posting block Indicates that no goods movements involving the materials
    listed in the physical inventory document can be posted for the duration
    of a physical inventory count.
    I hope this helps
    Regards
    V V

  • Freeze inventory during Physical Inventory

    Hi,
    I am creating a physical inventory document with  'Freeze book inv. bal.' ticked in MI01. After document gets created,  I am expecting that the Physical inventory block field in material master is set to 'A' . However in my system it sets it to 'X' which then makes the inventory movement is not allowed even though I did not tick the 'Posting block'
    Is there any set up that I need to do to make the tick on Freeze book inv balance during MI01 to result in Physical Inventory Blcok field = A in material master
    Thank you.

    Hi,
    SPRO --> Material mnagemnet --> Inventory managemnet and phy Inventory --> physical Inventory --> Allow Freezing of Book Inventory Balance in Storage Location
    Check the check Box for store in the plant.
    Hope Help U !
    Regards,
    Pardeep Malik

  • Unblock Bins/Material during physical inventory

    Guys ,
                 Can anyone suggest me the necessary config to be maintained to make the unblock everytime even when a physical inventory document is created and inventory count is not completed ,.
    Thanks

    Hi
    If you want to unblock bins I assume you are talking about WM
    I do not think what you want to do is possible or advisable.
    In WM you cannot freeze the book inventory as you do in Imand so therefore the way to protect the integrity of the stock in the bins whilst it is being counted is to block them as WM does when an inventory count is activated.
    You could either create a count doc and save it but DO NOT activate it until you are ready to count it (this can be done in LX22) the block only occurs when the count is actually activated, alternatively delete the count document or finally complete the count
    I hope that this helps

  • How to set new site on "Private" during construction to block search?

    Want to put a website on "private" setting during construction to block search engines. How do you do that?

    See http://www.robotstxt.org/meta.html

  • How to set a DMA transfer type for PXIe-6536 in LabWindows/CVI?

    I have a PXI chassis PXIe-1078 with a controller PXIe-8115 running under Windows 7. The digital output board is PXIe-6536.
    I use a function DAQmxSetChanAttribute to set a property DAQmx_DO_DataXferMech to a value DAQmx_Val_DMA, since I want to use a direct memory access data transfer. This wokred well with a PCI-6534 board using the same LabWindows/CVI code before migrating it to the PXIe system.
    Unfortunately, running this code on the PXIe system reports a DAQmx error -200452: "Specified property is not supported by the device or is not applicable to the task".
    The task is created in the following simple way (the board name in MAX is 'Dev1'):
       DAQmxCreateTask ("digTask", &digitalTask);
       DAQmxCreateDOChan (digitalTask, "Dev1/port0:3", "DIG_CHANNELS", DAQmx_Val_ChanForAllLines);
       DAQmxSetChanAttribute (digitalTask, "", DAQmx_DO_DataXferMech, DAQmx_Val_DMA, 15);
    How can I solve this problem? How is it possible to choose between different transfer types?
    Thank you in advance for any hint!

    Hi CavityQED,
    The PCI-6534 is a "Digital I/O" board while the PXIe-6536 is a "High Speed Digital I/O" board, that's why they don't have the same properties.
    By the way you can use DMA transfer with this method :
    http://zone.ni.com/reference/en-XX/help/370520J-01/hsdio/direct_dma/
    Let me know if it helps you.
    Regards.
    Mathieu_T
    Certified LabVIEW Developer
    Certified TestStand Developer
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    LabVIEW Tour
    Journées Techniques dans 10 villes en France, du 4 au 20 novembre 2014

  • How to set movie poster frame in final cut pro x

    Need some help on the following.
    Objective-using QT 7 or later, Current Compressor, FCP X or any other video editing tool, export a mp4 movie that displays a "poster frame" when the movie is inserted into iBook Author. When started by the user, the movie would begin to play from the first frame of the movie (not the poster frame).
    thx ra

    This sounds like a question for the iBooks Author forum. I think you set the poster frame in that application. How you make the video behave in the iBook is controlled in that application not in the editing application.

  • How to set permissions on devicemapper block device

    I'm setting up a new RAC on RHEL5.1 using device mapper for multipath functionality.
    How should I set the permissions for the block devices I'm going to use for ocr, voting and asm?
    /dev/mapper/ocr1
    /dev/mapper/voting1
    etc.
    Regards
    Jon-Arne Storelv

    Markus,
    You are right about udev changing drastically between RHEL 4 and RHEL 5. The paper I referred to does include some guidelines for setting permissions for RHEL 5 as well. Here are some relevant extracts from the same pdf document:-
    # From udev.permissions section
    This file was obsoleted in later versions of the 2.6 kernels such as SLES10, RHEL5 and
    Oracle Enterprise Linux 5 (OEL5), that functionality was merged into the rules files, which is explained later in this paper
    ...and later you will find this example in the document
    For RHEL5, OEL5, SLES10
    • Create a file /etc/udev/rules.d/99-raw.rules with the following content
    with the following content
    KERNEL=="raw[1-2]*", GROUP="oinstall", MODE="640"
    KERNEL=="raw[3-5]*", OWNER="oracle", GROUP="oinstall", MODE="660"
    /etc/udev/rules.d/50-udev.rules on Centos 5 gives plenty of examples of settings for all different types of devices. We really need to specify OWNER, GROUP and MODE for devices that RAC will use in a rules file.
    Thanks,
    Satish

  • How to set Movie resolution with JMF player

    Hi everyone,
    I am opening my .mpg files with the help of JMF.
    The movie sample is of resolution 160 X 300.
    I want it should fit into area of 670*670, 330*670 , 330*330 ,250*250.
    I tried to set panel size but it failed.
    I tried to set visualComponent size but again failed.
    I have one restriction that JFrame should not maximized it fixed according to my resolution(1024*768)
    Please help me.
    public void controllerUpdate(ControllerEvent c)
              if (player == null)
                   return;
              /////adding visualComponnt to jpanel
              if (c instanceof RealizeCompleteEvent)
                   if ((visualComponent = player.getVisualComponent()) != null)
                        Dimension d1 = new Dimension(670, 670);
                        visualComponent.setMinimumSize(d1);
                        visualComponent.setPreferredSize(d1);
                        player.prefetch();
                        updateUI();
                        add(visualComponent);
         }

    tom_zhang wrote:
    How to use MediaPlayer object SetBounds method to change movie's resolution to 330*330 ?Well - 'don't'. Java layouts typically honour the preferred size in relation to the current layout constraint, than any 'bounds'.
    Only can same scale zoom visual componentTo help further, I would need to see an SSCCE.
    BTW - had you considered adding (the visual component of) the player to the CENTER constraint of a BorderLayout, and putting all that in a JFrame that is resizable? Then the user can choose whatever size they want to view the video, by dragging the frame to the desired size.

  • How to set up wire transfer for foreign vendor?

    Hi all,
    Prior to the question I posted, I guess my question is : what configuration steps need to be done in order to set up a wire transfer for foreign vendor?
    please advise.

    Hi Nancy,
    You need to have a Bank Account which is setup to issue payments in foriegn currency.
    Apart from that all other steps remain the same as to doing a domestic wire.
    Provide points if found usefull.
    Thanks,
    Praveen

Maybe you are looking for