MI31 Inventory: Max. number of selected materials

Hello,
we are actually working on the selection of physical inventory documents (transaction MI31).
When we select all materials of a plant (by only selecting the plant and leaving the material fields empty) the transaction works fine.
But when we select one or a few range of materials, the programm creates a short dump:
016060
016070
016080 * Read all materials (MARD, MARA) for this plant
016090 select (l_t_mchb_fields)
016100 into corresponding fields of table l_1200_t_mchb_lean
016110 from MCHB as a
016120 join mara as b
016130 on amatnr = bmatnr
016140 where a~matnr in l_t_matnr_ra and
016150 a~werks = l_s_aux_param-werks and "only 1
016160 a~lgort in l_t_lgort_ra and
016170 b~MTART in l_t_mtart_ra and
016180 b~matkl in l_t_matkl_ra and
016190 ( b~attyp in l_t_attyp_ra or "EXLUDE!!
016200 b~attyp is NULL ) and
   > (l_t_mchb_dyn_cond).
016220
016230 if sy-subrc is initial.
016240 * fill keys for further database selection MARC, MCHA, and MCH1
016250 loop at l_1200_t_mchb_lean assigning <S_MCHB_LEAN>.
This interruption must be caused by the number of material in the selection (in line 016210).
Does anyone have an idea how many materials can be selected at the most at the same time in order to avoid the interruption of the program?
Thanks and Regards
Peter

Hi,
Please check the dump by going in trans :st22.
You will to come to know exact problem.
Regards,
Joginder

Similar Messages

  • Allow a max number of selections

    Hi,
    I'm quite new to Sharepoint but I've been trying to create a list and i want to allow people only to select a date for max 20 times, when that limit has been reached to give them back a message like "All slots are full, please select another date".
    Is there a way i can do this?
    Thanks

    Hi,
    You can achieve this using ItemAdding event receiver, where you can check the selected date from the user and get the count from the list for the selected and then throw the required message.  Please refer to the following article.
    https://msdn.microsoft.com/en-us/library/ff648923.aspx
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/e3d665b0-56da-4fe7-8dd6-1d1e29f70130/new-item-insertion-validation-through-event-handler
    Please don't forget to mark it as answered, if your problem resolved or helpful.

  • Inventory Count for Batch Managed materials - Plant, S.Loc and Batch Wise

    Hi.,
    In the company's current scenario, the printing of batch managed materials are scheduled under 3 Job names.
    1. First job determines the materials/batches that need to be created today using Program RM07ICN1
    2. Second Job Processes the BDC Session created by Program RM07ICN1 using Program: RSBDCSUB
    3. Third Job prints the Inventory tickts at the appropriate Storage location using Program: RM07IDRU
    Each Job has its own variant.
    The Variant for SL.No 1 is defined w.r.t
    i. Material Type : Two Material types have been defined
    ii. Under selection variable, GIDAT ( Planned count date and GBDAT are flagged.
    Current Analysis:
    A. The inventory documents get printed with Materials as per the cycle counting indicators defined which govern which material has to be currently counted.
    B. Inventory documents are generated for all materials in all the plants and in all the storage locations
    C. Batches for a material number may print on different cycle count documents throughout the year. 
    Customer requirement:
    The inventory documents to print on basis of
    1. Material, Plant and S.Loc.
    This would help in identifying the batches which are currently being counted as well.
    2. Customers requirement is to ensure that all batches are accounted for and will identify any overage of batches since in the current process, they are never reviewed as a whole.
    QUESTION:
    1. How to configure the Customer requriement.
    2. How to configure the Variant/s, if thats the place the configuration has to be done to satisfy the customer.
    3. How to activate the Variant in SE37 after definition in the Step Indicator. Does it activate on execution?
    When i run the Program using SE38 , maintaining options in the Screen ( giving Material, Plant and S.loc), i get the desired list (Batches w.r.t Material,plant.S.Loc). But there is a list of over 150 Batch managed materials and it would not be physically possible to maintain the variant for each each Material,plant,S.loc wise.
    Is there a way to configure the customer requirement/s.
    Any and all help is much appreciated.
    Thanks

    Hello Mahesh,
    <b>Customer requrirement is specific, they want a list of Inventory Documents to be generated on basis of Material in each Plant-S.Loc batch wise.</b>
    Then you need to define multiple varinat for the program.
    <b>(a) If i am giving two variants in the same Program name RM07ICN1, how to execute one after after in sequence.
    In testing, I have defined in the " Step", Progran RM07ICN1 with one variant and Program RM07ICN1 with another Variant. But on execution of Program RM07ICN1 thru SE38, the screen defined latter ( second variant screen data ) is displayed.</b>
    You need to define several steps in SM36 transaction for the program using each variant. SE38 you can use only to save your variant data so later you can use this variant in SM36.
    Once you schedule the job with SM36 and release it then it will automatically execute this job as per your criteria (timeline)
    Hope this helps.
    Regards
    Arif Mansuri

  • Max number of items exceeded?

    I am trying to develop a questionaire like application. Most of the logic is stored inside pl/sql functions (that is retrieving the previous or next question with possible answers and answer-types, like, eg. radiogroup, select-list, textarea, ...) while all of the questions and respective possible answers are kept inside a collection. In processing the answers after submit I store given answers inside the same collection, basically by nullifying all possibly previously given answers for the current question and then looping through eg, g_f01.count to refill. The entire application remains on the same page, showing eg., in one 'frame', one or two questions with say 7 checkboxes and two textareas.
    Everything seems to work fine, I can go forward and backward and will find new questions or ones that already have been answerd, but!!...
    after the 50st item (answer), that is after I reached the 50st radiogroup, checkbox or textarea, new checkboxes or radiogroups even though shown the resulting values will not be stored inside the collection anymore.
    generating the page i use:
    htp.prn(apex_item.radiogroup(p_idx => 1, p_value => c2.a_id, p_selected_value => c2.qa_id, p_attributes => 'id="P2_QUEST_' || i || '"'));
    and in processing correspondingly ...
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    FOR c2 IN
    (SELECT seq_id,
    c001 q_id,
    c002 a_id,
    c012 qa_id
    FROM apex_collections
    WHERE c001 = to_char(p_q_id)
    AND collection_name = 'ANSWERS'
    AND c002 = apex_application.g_f01(i))
    LOOP
    apex_collection.update_member_attribute(p_collection_name =>
    'ANSWERS', p_seq => c2.seq_id, p_attr_number => '12',
    p_attr_value => c2.a_id);
    END LOOP;
    END LOOP;
    to me I only use f01 ... f04 say, ... Is it possible that I still hit the max of 50 page-items?
    Regards
    j.

    max number of items exceeded?

  • Max number of sessions in the database for abt a month

    Hi,
    We are adding around 1000 additional users to our 11g database, how to find the impact of CPU, Memory etc.. And also we would like to know max number of sessions in last one month. Please let us know how to get this info.
    Thanks in advance.
    Edited by: 934825 on Dec 7, 2012 7:55 AM

    vlethakula wrote:
    You can join
    dba_hist_resource_limit and dba_hist_snapshot
    SELECT a.begin_interval_time, a.end_interval_time,
    b.resource_name, b.current_utilization,
    b.max_utilization
    FROM dba_hist_resource_limit b, dba_hist_snapshot a
    WHERE a.snap_id = b.snap_id AND b.resource_name = 'sessions'
    ORDER BY a.begin_interval_timeDon't forget that the use of these DBA_HIST* views or their underlying tables requires a license for the performance pack.

  • Max Number of items for an FI document (999) has been exceded

    Dear Guru's
    I hav production Bom For A ( Truck) , and now when i declare the production it gives me an ERROR :-
    Max Number of items for an FI document (999) has been exceded.
    How i can overcome this error!!
    Please help
    Regards
    Rahul Bhardwaj

    Hi
    You cant post more than 999 line items in FI document and you need to split the document if line items crosses 999.  It looks your production BOM itself contains some errors.  Check it.  Becoz no production BOM contains such a huge materials.  Splitting the BOM into sub BOM may be another option.
    Srinivas

  • In Oracle 10g, what is the max number of values we can pass to  'IN' Clause

    Hi,
    In my SQL query i have a scenario like, i have to pass the values to 'IN' Clause dynamically from other application. I want to know what is the the max number of values i can pass to 'IN' Clause.
    i have searched in many pages i seeing answers like 'may be 1000' , 'not sure'....
    Could any one tell me the exact limit of IN Clause in 10g.
    Thanks in Advance.
    Chandran

    Hi, Chandran,
    Chandran M wrote:
    In my SQL query i have a scenario like, i have to pass the values to 'IN' Clause dynamically from other application. I want to know what is the the max number of values i can pass to 'IN' Clause.
    i have searched in many pages i seeing answers like 'may be 1000' , 'not sure'....Don't overlook [Dont want to know|http://forums.oracle.com/forums/thread.jspa?messageID=2683385&#2683385]. This may explain why people are reluctant to give a straight answer.
    Could any one tell me the exact limit of IN Clause in 10g.1000 items such as IN (1, 2, 3, ..., 1000)
    No limit on the number of sets: IN ((1), (2), (3), ...) *<=== NOT QUITE!* See below
    No limit in sub-queries: IN (SELECT ...)
    Edited by: Frank Kulash on Jun 3, 2009 9:43 AM
    The limit of 1000 applies to sets of single items: (x) IN ((1), (2), (3), ...)
    There is no limit if the sets contain two or more items: (x, 0) IN ((1,0), (2,0), (3,0), ...)
    Thanks to Michaels for pointing this out.
    Edited by: Frank Kulash on Jun 3, 2009 10:22 AM
    Fixed link

  • Is a subquery in a BO report limited to a max number of records???

    Here's my problem:
    I recieved an excel sheet with 700 records of customers from a client who wants me to to create a report with specific data for these customers in my Business Objects universe (BO6.5 on SQL Server).
    So I created a dataprovider with query 1, i.e. the requested data of customers. Then I created a second dataprovider, query 2, based on 'personal files', i.e. the excel sheet. In query 1 I added to the conditions that each customer should be in (sub)query 2 (CustomerId In list of the query result ('query2.CustomerId').
    the syntax I have used for this seems OK.
    However, I recieve the following error: "Too many selected values (LOV0001)". I know this error has to do with parameter MAX_INLIST_VALUES, which is limited by default to 99 and can be extended to 256 max. But I thought it refers to the max number of items in lists of values.
    When I limit the number of records in the excel sheet to 99 the result is perfect (proof that I got the syntax right!). I can upgrade the parameter to 256, and can split the excel sheet into three, but that will not be useful when next time my client sends me 10.000 customer records.
    Can I make reports in BO which use subqueries that result in more than 256 records at all? (hardly imaginable).
    What is the best way to do this?
    Thanks in advance!

    Hi Lucas,
    Following is the information regarding the issue you are getting and might help you to resolve the issue.
    ADAPT00519195- Too many selected values (LOV0001) - Select Query Result operand
    For XIR2 Fixed Details-Rejected as this is by design
    I have found that this is a limitation by design and when the values exceed 18000 we get this error in BO.
    There is no fix for this issue, as itu2019s by design. The product always behaved in this manner.
    Also an ER (ADAPT00754295) for this issue has already been raised.
    Unfortunately, we cannot confirm if and when this Enhancement Request will be taken on by the developers.
    A dedicated team reviews all ERs on a regular basis for technical and commercial feasibility and whether or not the functionality is consistent with our product direction. Unfortunately we cannot presently advise on a timeframe for the inclusion of any ER to our product suite.
    The product group will then review the request and determine whether or not the functionality/feature will be included in a future release.
    Currently I can only suggest that you check the release notes in the ReadMe documents of future service packs, as it will be listed there once the ER has been included
    The only workaround which I can suggest for now is:
    Workaround 1:
    Test the issue by keep the value of MAX_Inlist_values parameter to 256 on designer level.
    Workaround 2:
    The best solution is to combine 'n' queries via a UNION. You should first highlight the first 99 or so entries from the LOV list box and then combine this query with a second one that selects the remaining LOV choices.
    Using UNION between queries; which is the only possible workaround
    Please do let me know if you have any queries related to the same.
    Regards,
    Sarbhjeet Kaur

  • Planning Layout error K9162 - max number of columns in planning layout rest

    Hello collegues,
    our client would like to have 34 columns in planning layout costs activity inputs of TA KP67. But error message K9162 - max. number of columns is restricted to 30. So I tried to switch of the message with TA OBA5 application area K9 - msg number 162. But this does not work as the error comes up again even though the message is switched off.
    Do you have some ideas?
    Thanks and regards,
    Christian

    Hello,
    thanks for your response. I have maintaine in OBMSG:
    K9     162     WE     E    switch off selected
    then in OBA5 for dialog and batch I have maintained  -
    but the error is upcoming again. So I think that this sort of message cannot be switched off as the planning layout is restricted to 30 columns by design maybe?
    thanks and regards,
    Christian

  • Max Number of Procurement Proposal for a date

    We have scenario where a user has changed fixed lot size for a material 11,70,000 to 1 Pc. As result more than 2 Million Purchase requisitions got created by MRP. Is there any standard config settings, where we can maintain max number of procurement proposal for given date or demand. So that we can prevent such occurances in future.

    Hello Amit.
    The materials planning creates a large number of order proposals in the amount of the fixed lot size for this one request for a fixed lot size (lot-sizing procedure 'FX') with a large number of requests and a small number of fixed lot sizes.
    In Customizing for the plant parameters of materials planning (transaction OPPQ, table T399D) you can set a parameter for the maximum number of order proposals that are created by materials planning for a requirements date.
    The materials planning of this material terminates regularly if the maximum number is exceeded. An error document with error message E098 is generated. This way you can prevent that the MRP run terminates if the lot-sizing procedure is set unfavorably.
    Best Regards,
    R.Brahmankar

  • Max. number of expressions exceeded

    I have a simple SQL to select data from a single table with a
    list of 1000 elements i.e. SELECT A FROM TABLE_A WHERE B IN (1,
    2, 3, ..., 1000). It worked fine. If I added one more i.e.
    WHERE B IN (1, 2, 3, ...., 1000, 1001), then I got error 1795 -
    Max number of expressions exceeded 254. I thought this error
    applies to the number of expressions. What I have was a list of
    values in a single expression -> B IN (1, 2, ...).
    I think the error message is misleading. If there is a limit of
    1000 elements in the IN expression, the error message should say
    so unlesss Oracle somehow formats the 1000 elements into 254
    expressions behind the scene.
    Any comments.
    Thanks.
    null

    What versions are you using?
    Do you have a License?
    thanks
    mike

  • Max number of part appraiser allowed for a 360d appraisal

    Hi, experts,
    i am trying to implement a 360 degree appraisal using OSA framework(part appraisal).
    according to F1 help:
    If you have selected only the Part Appraiser (PAPP) and/or Importance
    Part Appraisal (PWGT) columns in an appraisal template, this is a 360°
    appraisal, and the SAP system does not restrict the number of part
    appraisers allowed.
    in my template, only have PAPP column , but the maximun number of part appraisers allowed is still set to 18. what's wrong? it should be no limit.
    i tried to create a document(using phap_create_pa) , the 18 limitation stop me to add more part appraiser.
    i am so confused, does that mean we can not have a REAL 360 appraisal without limitation for part appraiser?
    thanks and best regards.
    Jun

    hi,
    i traced into the program,  in funciton module
    HRHAP_0DOC_MAX_NO_PART_APPER
    it's quite clear, there is no special logic for 360 appraisal , the formula is always set to :
        no_of_part_appraisers = ( c_column_max_number - l_total_columns )
                                DIV l_part_columns.
    so i think it's not possible to use OSA to depict an REAL 360 appraisal without maximum appraiser limitation.
    the maxi number is (18 -1) / 1 = 17
    which is really a pitty...
    br.
    zj

  • Max number email recipients

    I tried to send an email to 216 email accounts but it would not let it go through. Now I have the email pop up and the list of accounts line up down the page. I can not get to the bottom to click the box to delete the email and it just keeps coming up each time I start up my email account.
    I have to force close it to get it to close.
    My question is what is the max number of accounts you can sent an email to and how do I actually do away with the one that is in cue. I have a imac 1.83 GHz intel Core Duo with 10.5.7 and mail 3.6
    Thanks Mike

    The maximum number of emails you can send at once is determined by your email provider; you need to ask them.
    If this email is in the Drafts folder, you can go to ~/Library/Mail/name of mail account/Drafts.mbox, select the message and Delete it.

  • SE16 restricted to a pre-defined max number of hits

    Hello,
    our consultants use sometime Tcode SE16 for end-users support purposes.
    I would like to restrict the output of SE16 on any tables to a predefined maximum number of hits (5000 or 10000 for examples) to avoid huge selections with bad performance on the server.
    Do you know any way to restrict it with a standard or custom tool ?
    Thank's

    Hello Vincent
    The global setting of this property can be found at: menu Help -> Settings -> choose tabstrip "F4 Help"
    There you can define the max. number of hits to be displayed. This setting is valid for all DB selections. The users have to set this property on their own.
    NOTE: The menu Help is found on any screen.
    Regards
      Uwe

  • Max. number of chapters in FCE?

    I have a FCE project with about 20 chapter markers but after the first twelve chapter markers, the remaining markers end up further down in the timeline rather than on top like the first 12. They also appear to be pink instead of green like the first 12. When I export to quicktime and import that to idvd 6, only the first 12 chapter markers show up.
    Is twelve the max. number of chapter markers in FCE; and if so, what are the pink markers? I can't seem to find anything about it in the help manual.
    p.s. I will have FC Pro and idv Pro in a few days. Will that solve my problem?

    The pink markers are in your clips, not on the timeline - you must have had the clip selected when you inserted those markers. Clip markers are ignored when you export a sequence.
    When you want to insert chapter markers, make sure you don't have a clip selected. Move the playhead to the point where you want the chapter marker & hit the M key twice; in the dialog box, give it a name, click the Chapter Marker button and click OK. You will get a green marker at the top of your timeline and they will import into iDVD.
    You should go back & remove the pink markers; you will have to select the clip again to remove them. But if they are at locations where you want your chapter markers to be, you can use them as guides to place your chapter markers on the timeline.
    ps. FCE supports up to 99 chapter markers in a sequence

Maybe you are looking for

  • How can i see what the camera sees? good manual?

    without using any app or program or anything. just a visiual of the camera view? is there any good manual for the Macbook pro?

  • Weblogic login issue

    i wrote log-in code in servlet, on Weblogic server, it works fine, but some times it gives session time out error even before complelty logging in and when i delete the cookie, everything works fine again.. did any body faced this problem before..???

  • Deleting records from Z table via an ABAP

    Hello hoping someone can help me I am about to start writing an abap that will delete records from three seperate z tables that have been in there for over 18 months. Hoping that someone can give me a shove in the right direction to start me off as n

  • Connect360 and MOV files

    Is anyone using a software called Connect360 to stream video to their Xbox 360? I get it working fine with AVI files, but when I downloaded a 720p HD Trailer in MOV format from Apple, both Connect360 and the Xbox find the file but it won't play. Xbox

  • Auto refresh, passing item name

    Hi all I have a page which needs to automatically refresh each ten minutes. It may be navigated away from and back to and in this situation, I don't want the report which is cached to be re-run. If the page is left for ten minutes, the page should re