Fields in MCHB table for cycle counting

Hi Experts,
There is a requirement in my program that if the values of the follwoing stocks are there in MCHB table then change the date of creation when cycle counting is performed at the end of the year:
Blocked
In qual. insp.
Restricted-use
Returns
Stock in tfr
Unrestricted
Can anyone tell me that which field are there in MCHB table coressponding stock  types.I can see some fields starting with CV* and some with KZ* for BLocked, restricted..etc

Blocked  - CSPEM
In qual. insp. - CINSM
Restricted-use - CEINM
Returns - CRETM
Stock in tfr - CUMLM
Unrestricted  - CLABS
These are the fields

Similar Messages

  • WM tables for cycle count

    Friends,
    I have a question regarding WM tables.
    Whenever a cyclecounting is carried for a Bin, a Physical Inventory document is genrated. Is there any table in SAP tha gives me the list of ins for which no pysical inventory documents are generated.
    Sanjay

    Hi,
    If you're looking for WM-tables, please check this link:
    http://www.saptechies.com/warehouse-management-tables/
    BR
    Csaba

  • What does the field Inconsistent mean for ABC Analysis for Cycle Counting report

    What does column "Inconsistent" mean for report ABC Analysis for Cycle Counting (T-code MIBC)?  The reason I'm asking is because I see TotalStock values greater than 0, but the Accounting 1 view for Material Master and MMBE both show zero stock.  I do not understand why TotalStock in the report does not show zero.  Can anyone explain how this can happen?
    Note: the report is run for consumption/usage date range.
    Thank you,
    Doug

    Hi,
       MBEW table and MMBE transaction will show the current stock. When you run MIBC report for consumption, the system considers the consumption for the date range given (from MVER table), which may not be equal to the current stock. Refer the KBA:  1817237 - Stock quantities and stock values in MIBC  which explains the system design.
    Regards,
    AKPT

  • Giving problem after I included the new field to MCHB table.

    Hi Friends,
    I added one new field called ZZINQNUM to the MCHB table.For this field I created one new data element called ZVBELN_INQUIRY and attached domain VBELN.
    Activated and adjusted  the table.
    Now what the problem is
    I went to SE11 -> Display - > Selected the contents -> In selection screen, I double clicked the ZZINQNUM select-option and selected the equal to space option. For this I am expecting all the records from the table,because in the field ZZINQNUM is empty. But result is zero entries.
    Can any one help me out in this. Thanks in advance.
    Thanks
    Srinu

    Hello Srinivasa
    Two years ago I had the very same problem when I added a new field to an already existing and filled customer table. I debugged the maintenance view and saw that the new field contained an undefined value but not the initial value.
    You could try and use the DB utility (<b>SE14</b>) and activate the table again (of course without deleting the table entries).
    Alternatively, you could write a simple ABAP to initialize the field value, e.g.:
    DATA:
      gs_mchb   TYPE mchb,
      gt_mchb    TYPE STANDARD TABLE OF mchb.
      SELECT * INTO TABLE gt_mchb.
      gs_mchb-zvbeln_inquiry = ' '. " space
      MODIFY gt_mchb FROM gs_mchb
        TRANSPORTING zvbeln_inquiry
        WHERE ( zvbeln_inquiry ne ' ' ).
      UPDATE mchb FROM TABLE gt_mchb.
    Regards
      Uwe

  • ABC analysis for Cycle Counting.

    Hi SAP gurus,
    I am facing a problem from the user. While doing the ABC analysis for cycle counting using the Transaction MIBC, he is getting an error " table T159c is not maintained for plant XXXX". when i checked it SPRO cycle counting is not done for that particular plant.
    My question is : Where do we maintainc CC Physical inv indicator ? I have checked at material level in Gen.Plant/Sloc view, it is not maintained . so may be they have maintained at Plant level. where do we maintain at plant level.?

    Hi
    1) Maintain the Percentages against A,B,C,D cycle counting indicators in OMCO
    2) Perform  MICN to schedlue the batch input session for Creation of physical Inventory documents
    3) MIBC-For ABC analysis for Cycle counting .
    Note : the percentages maintained in OMCO will decide on the classification of the material as to when the Physical inventory needs to be done based on either the consumtion values/Requirement values
    Regards
    Sandeep

  • I need validation code for cycle count open interface

    Hi friends i require the validation code for the
    cycle count open interface .
    can anybody help me .......
    Message was edited by:
    user506929

    Hi David
    I want to know the procedure for cycle count open interface i.e.
    1> How the data from flat file is uploaded in oracle INV
    How many Tables are needed?
    2>What validations are required ?
    3>How these validations are performed ?
    If you have any document pls send it to me at :
    [email protected]
    thanks for ur responce ......

  • Automatic generation of physical Inv. docs. for Cycle Counts

    I would like to know if physical inventory documents for cycle counts can be created automatically by SAP. i.e. all A class materials will have physical inventory documents generated automatically after every 3 months. Is this possible?
    Many thanks.

    Technically it is possible to run the creation program scheduled in background.
    But not everything what is technically possible makes  sense for the business process.
    Before you generate inventory documents (it does not matter whether this is anual inventory or Cycle count) you have to make sure that any receipt or goods issue that happened before the count is posted in SAP.
    This often can only be achieved by calling the Usual Suspects.
    With a good organisation in place this can even be achieved with scheduled jobs, but such good organisations I have not seen often (did I ever?)
    Further you might have a kind of misunderstanding. Each cycle count has all due to be counted materials, no matter if the CC indicator is A, B C or D.  There is no field in the selection screen to tell SAP to just create inventory documents on A items.
    The CC indicator defines how often a material is to be counted,  but not when. The when is defined by last inventory, or accounting view creation date. So you should plan to count minimum once in a month, I recommend to do it weekly, but it depends on the number of items you have to count.

  • Invalid value in OPTION field of value table for IN itab operator. operato

    Hi,
    I am working on SELECT-OPTIONS to accept single and multiple values for company code. I am using CREATE_RANGE_TABLE and ADD_SELECTION_FIELD and all is good but I was prompted with error "Invalid value in OPTION field of value table for IN itab operator. operator"  when I enter 2 single value.
    SIGN OPTION LOW  HIGH
        |      |CN01|    |
        |      |SG02|    |
    However, below combinations working good for me and I don't get the above error.
    SIGN OPTION LOW  HIGH
    I   |BT   |CN01|CN02|
         |     |SG02|    |
    SIGN OPTION LOW  HIGH
         |     |SG02|    |
    I am using below coding.
      DATA:
        ls_cmp_restrictions TYPE if_wd_select_options=>t_complex_restrictions,
        ls_rsoptions        TYPE rsoptions.
      CLEAR ls_rsoptions.
      ls_rsoptions-bt = abap_true.
      ls_rsoptions-cp = abap_false.
      ls_rsoptions-eq = abap_true.   " for enable only single value*
      ls_rsoptions-ge = abap_false.
      ls_rsoptions-gt = abap_false.
      ls_rsoptions-le = abap_false.
      ls_rsoptions-lt = abap_false.
      ls_rsoptions-nb = abap_false.
      ls_rsoptions-ne = abap_false.
      ls_rsoptions-np = abap_false.
      ls_cmp_restrictions-m_exclude = ls_rsoptions.
      CLEAR ls_rsoptions .
      ls_rsoptions-bt = abap_true.
      ls_rsoptions-cp = abap_false.
      ls_rsoptions-eq = abap_true.   " for enable only single value*
      ls_rsoptions-ge = abap_false.
      ls_rsoptions-gt = abap_false.
      ls_rsoptions-le = abap_false.
      ls_rsoptions-lt = abap_false.
      ls_rsoptions-nb = abap_false.
      ls_rsoptions-ne = abap_false.
      ls_rsoptions-np = abap_false.
      ls_cmp_restrictions-m_include = ls_rsoptions.
    * Create a reference to range table
      lr_field = wd_this->m_helper->create_range_table( `BUKRS` ).
    * Add the select-option to the group
      wd_this->m_helper->add_selection_field(
        i_id                         = `BUKRS`
        i_value_help_structure       = 'P0001'
        i_value_help_structure_field = 'BUKRS'
        it_result                    = lr_field
        i_no_intervals               = abap_true
        i_no_extension               = abap_false
        i_complex_restrictions       = ls_cmp_restrictions
        i_use_complex_restriction    = abap_true ).
      FREE lr_field.
    Edited by: Girish Nabar on Jul 22, 2011 12:35 PM

    Hi Girish,
    People are answering not for points, just to share the knowledge.
    And I think the way of structure is wrong.  i think we cannot pass two single values in your way. am not sure about .
    low means it will accept single value. for one record in sign structure.
    wait for other replys.
    Regards
    Srinivas

  • Add new batch during count entry (for cycle count by quant LICC)

    Hi! We are using LICC for cycle counting by quant as we have mixed storage and do not want to count all the materials in a single bin. Most of the materials involved are batch-managed. One issue we have is we may discover other batches during stock take. In this case, how can we add this to the stock adjustment since we cannot add new item when we use cycle counting by quant?
    Appreciate your suggestion in this case.
    Cheers!
    SF

    Hi,
    Whenever you find discrappancies, in this case founds, you will note these down and first do an analysis whether this particular batch has been written off in the past as lost. When not, you will make a MB1À or MIGO booking to add this found batch to stock. When yes, you could do a reversal of the issue or do a new receipt.
    MdZ

  • What is T-code to cancel physical inventory document for cycle count MICN?

    HI
    Please advice me what is T-code and step to cancel physical inventory document for cycle count MICN?
    Thanks

    There is no way to Cancel the Cycle count document. however you can click on 0 count so that it wont post any new entry on the cycle count.

  • A question about ABC analysis for Cycle counting

    Hello expert,
    What is  RMCBIN00  used for? Currently, user asked me if we can copy  RMCBIN00 and perform ABC analysis by quantity? I have no knowledge about it. Can any expert give some clue?
    Thanks in advance,
    Best Regards, Johnny

    Hi
    RMCBIN00 is a standard ABAP report available within your SAP system (depending on your version and release level). Below is the standard documentation available for this report and a few details of other objects it interacts with such as tables, function modules, includes etc. If you would like to see the full code listing simply enter the object name( RMCBIN00 ) into the relevant SAP transaction such as SE38 or SE80
    RMCBIN00 -  ABC Analysis of Cycle Counting (Physical Inventory)
    PURPOSE
    This report runs an analysis for the chosen material types in the cycle counting method of physical inventory.
    FEATURES
    The analysis takes into account the consumption (usage) or the requirements values of the selected materials for the desired time period. You can decide whether you want to analyze:
    Only materials that have a cycle counting indicator
    All materials; that is, including materials that have no cycle counting indicator.
    Regards
    Anand

  • Table for cycle/unit

    Hello Guys,
    Can someone tell me the table name for cycle/unit ( single cycle plan- frequency) . I have tried MPLA,MPOS,MHIS and no luck.
    I could find all other fields using above tables except the frequqnecy.
    Please help.
    Regards,
    Mahee
    Edited by: maheee on Jun 2, 2011 10:37 PM

    Never mind I got it.

  • Backend BW table for reject counts in datamanager packages

    Hello Team,
    I am not able to find the backend BW table for the logs of the data manager package which can tell about the rejected records count or sucessful records count.
    I got all other information about the datamanager package form the table UJD_STATUS except records counts.
    So can anyone please help me out to find the rejected records/sucessful records count in the backend BW table
    I got 1 tableUJF_DOC but it is also not giving me the information which i want.
    Thanks & Regards
    Ronit Kumar

    Something like:
    In UJD_STATUS for some record in the field LOG_FILE you will have:
    Clear20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.LOG
    with
    USER_ID: V.KALININ
    APPSET_ID: SIM
    APPLICATION_ID: INFILE
    In UJFS:
    \root\webfolders\sim\infile\privatepublications\v.kalinin\tempfiles\
    we can see the file: Clear20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.LOG
    In this file:
    <RESULT><PROMPT><![CDATA[%SELECTION%    /SIM/INFILE/PRIVATEPUBLICATIONS/V.KALININ/TempFiles/FROM.TMP@@@SAVE@@@@@@EXPAND@@@|DIMENSION:BE||DIMENSION:PERIODS|
    %SELECTION_KEYDATE%    ]]></PROMPT><STATUS_STEP><![CDATA[/CPMB/MODIFY completed in 0 seconds
    /CPMB/CLEAR_COMMENTS_FOR_CLEAR completed in 2 seconds
    /CPMB/CLEAR_CUBE completed in 663 seconds
    /CPMB/CLEAR completed in 0 seconds]]></STATUS_STEP><REJECTRECORD><![CDATA[Clearreject_record20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.txt]]></REJECTRECORD><REJECTFILE><![CDATA[Clearreject_data20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.txt]]></REJECTFILE><MESSAGE><![CDATA[Task name CLEAR CUBE DATA:
    Submit count: 1831713
    Reject count: 2
    model: INFILE. Package status: WARNING]]></MESSAGE></RESULT>
    Vadim

  • How to populate the logical_group field in V_LTDX (table for layouts)?

    Hi,
    Scenario:
    I have implemented the ALV using CL_SALV_TABLE. In the grid we have a 'Choose Layout' button where we have the options of choose, change, manage etc. the layouts. If we create a layout, the layout is saved in the table LTDX(view: V_LTDX).
    Issue:
    How do we populate the 'Logical_group' field in the table while creating/changing the layouts?
    Please suggest..
    Regards
    s@k

    Solved..:)
    Solution:
    While creating the ALV grid, use the method 'get_layout' of the class CL_SALV_TABLE and get the reference of the layout in a reference variable.
    Data:
          gw_key       TYPE            salv_s_layout_key.
      gr_layout = gr_grid->get_layout( ).
      gw_key-report = sy-cprog.
      gw_key-logical_group = gc_log_grp." Pass the logical group here say logical group: 0001, 0002, etc. for each ALV
    So, whenever you create/ change a layout on the ALV grid, the system automatically passes this logical group and saves it in the table LTDX.
    Regards
    s@k

  • Field in portal table for the text contained in an uploaded file

    I have uploaded a file of base item type file into release 2 of the portal.
    Does anyone know which table the clob field for the text contained in
    the uploaded file is stored?
    Thanks,
    Suzanne

    Hi,
    When you run the Search hep is it giving the description or not
    You have to create the serarch help with both the fieldname and its description field then we cna the values. Or
    Try to mantain the text table for this field and get the data.
    Get the valeusinto drop drown with this table Or create the SearchHelp for this text table
    Regards
    Lekha

Maybe you are looking for

  • General slowness, but Safari is taking FOREVER!!!

    For more than a month I've been struggling with extreme internet slowness. My MacBook in general was running slow so I did the usual (verify permissions, repair permissions). That didn't help. I verified the HD, cleaned out all of my folders and defr

  • Time zone urgent

    ALTER SESSION SET TIME_ZONE = ' -07:00'; The sessions hang with this command in place give solution urgent Message was edited by: user448073

  • Lenovo s960 vibe x language problem

    1) i have some problem with my lenovo s960, all apps are in chinese language. i cant change it to fully english. please anyone can give me a step by step tutorial how to make my lenovo fully english language?? (lenovo store and game centre) 2) when l

  • Wanted Lightroom Training in London/SE

    Does anyone know of any independent trainers in London or the SE who can give me some training for a day on Lightroom? Thanks for your help. Angus

  • IMovie freezes after 2-3 Minutes while exporting

    Hi, I have a 58 Minutes project with hd content which freezes iMovie every time after 3-4 minutes when i want to export it. I tried every possible export option, but the freeze while happen every time. when i try to export a tiny project (30 sec.) ev