How to increase the line items against the std no of line items in MIGO

hi,
I have PO with more than 100 line items
During GR system is showing the error message as
Maximum number of items F1 reached
What is the standard no of line items in MIGO
And how to increase the line items
Is there any notes to apply
plz give sutable solution
K.Raghuram

Do you get message F5727 "Maximum number of items in FI reached"? reason is that in FI the posting line has a three-digit line item number (BSEG-BUZEI).
SAP's note 117708 provides a modification. I am pasting solution below.
Via the summarization you can post documents with more than 999 items in
FI.
The modification required for this is small, in addition you have to
change 2 tables. The modification is carried out in FI not in invoice
verification.
To activate document summarization in FI proceed as follows:
- The changes are described in Note 36353 and for the
modification in Note 77161. You may also have to apply Note
67640 so that the document summarization affects inventory
management.
An advice for the notes:
36353: Solution point 3: Field name WERKS
77161: Solution point 2: Maintain table TTYPV with Transaction
SE16
- this has the following effects; you can no longer clear the
GR/IR clearing account on purchase order item level (but only
on purchase order level) and you can only display the FI data
summarized (also see Note 36353)

Similar Messages

  • How to find Inbound Delivery list against the PO.

    Hi,
    I am new to Inbound delivery.
    For a purchase order, i created an Inbound delivery using T.Code VL31N. I am not able to find it in the history of the purchase order.
    Kindly suggest, how I can find the list of inbound deliveries created against various PO.
    Regards
    C.A. Shankar

    Hello friend,
    If you want to see the list of inbound deliveries agaist the PO.
    You can use VL06IG .Enter your po number and execute the t-code.
    If It doesnot work, It is better to select the item in the Item Details go to Confirmation tab and check the inbound deliveries against the PO/Line item wise.
    Hope it is ok for you.
    M.Mu

  • How to clear the down payment against the vendor invoice in the payment program?

    A down payment is made $25 Later an invoice is posted for $100 Now i want to Pay $75 to Vendor But the Automatic payment program  is not clearing the down payment against the vendor invoice. Could you please help how to clear the down payment against the vendor invoice in the payment program?

    Swathi,
    Need your help i have a strange situation
    1) F-48 and document posted with document no = 15..... in company code = L002 with payment block getting populated automatically
    2) F-48 and document posted with document no= 15..... in company code = Us11 without payment block and the screen does not even show payment block, I had to check this from BSEG table
    My question is
    a) How and where does this payment block is triggered through configured and how to process next steps.
    b) when I use F-48, how do we do the actual payment, is there a check printing and linking it to the KZ document or is check printing done outside the system and the KZ document type does not have any linkage.
    c) If I do FB60 for a higher amount how do we pay partial amount.
    Your response is appreciated.

  • ITunes:  I just redeemed a gift card in iTunes and then rented a movie.  I want it charged to the gift card but think that it was charged to my credit card.  How do I ensure the charges are against the gift card?

    iTunes:  I just redeemed a gift card in iTunes and then rented a movie.  I want it charged to the gift card but think that it was charged to my credit card.  How do I ensure the charges are against the gift card?

    I took this straight from the help menu.
    You need to set up an Apple ID for use with the iTunes Store before you can redeem anything in the iTunes Store. You don’t need to enter credit card information to redeem only the amount of a gift certificate or card.
    Hide 
    Use an iTunes allowance, gift certificate, or iTunes Gift Card
      If you aren’t already signed in to the iTunes Store, choose Store > Sign In, or click Sign In at the top of the iTunes Store window. 
      Below Quick Links, click Redeem, and follow the onscreen instructions.
    The amount in your account appears to the left of your account name. When you click the Buy button to make purchases, the amount changes to show how much money remains in your account.
    You can use a gift certificate only in the iTunes Store for the same country in which the certificate was purchased.

  • How to view the File created against the Transport Request in ASCII format

    Hi all,
    We have a requirement where in the file created against the Transport reauest and its content should be viewed in ASCII format.
    Experts do you have answer for this.
    Is thers any method to work out.
    Thanks in advance.
    Every usefull answers will be awarded points.*********

    Hi Anji Reddy,
    Thanks for your reply.
    Let me clear my querry.
    when we create a program in se38 and save it in a zxxxx package then it will create a transport request. The Content of TR i mean is not the Program name or the object list in the TR. The content i mean here is the abap code written in the program. which will be stored as a file in the server. when we open this file it will give the SAP format. Which i want to view in ASCII format.

  • As good will gesture, we can help you with the upgrade for PSE 13. We would request you to place the order for Adobe Photoshop Elements 13 as an upgrade and then we will provide you the full version serial number for the same product against the new upgra

    I RECIVED AN EMAIL FROM ADOBE AS  :  As good will gesture, we can help you with the upgrade for PSE 13. We would request you to place the order for Adobe Photoshop Elements 13 as an upgrade and then we will provide you the full version serial number for the same product against the new upgrade order"  IS THIS UPGRADE FREE AND WHAT SHOULD I DO, HOW CAN I HAVE THIS UPGRADE?

    Compare with on-line stores. The full version is often cheaper than Adobe's upgrade price.
    See this example from Amazon, but check pricing in your own region.
    http://www.amazon.com/gp/product/B00N4OLCRO/ref=s9_simh_gw_p65_d4_i2?pf_rd_m=ATVPDKIKX0DER &pf_rd_s=desktop-1&pf_rd_r=0F1GED9546928YP3PHC0&pf_rd_t=36701&pf_rd_p=1970559082&pf_rd_i=d esktop

  • How to find the duplicate modifiers against the same SKU

    Hi Gurus,
    how to find he duplicate modifiers existing against the same SKU.
    Any help or advise is helpful..
    Thanks
    Yasar

    here is an example that might be of help.
    SQL> select * from employees;
    YEAR EM NAME       PO
    2001 02 Scott      91
    2001 02 Scott      01
    2001 02 Scott      07
    2001 03 Tom        81
    2001 03 Tom        84
    2001 03 Tom        87
    6 rows selected.
    SQL> select year, empcode, name, position,
      2         row_number() over (partition by year, empcode, name
      3                            order by year, empcode, name, position) as rn
      4    from employees;
    YEAR EM NAME       PO         RN
    2001 02 Scott      01          1
    2001 02 Scott      07          2
    2001 02 Scott      91          3
    2001 03 Tom        81          1
    2001 03 Tom        84          2
    2001 03 Tom        87          3
    6 rows selected.
    SQL> Select year, empcode, name, position
      2    From (Select year, empcode, name, position,
      3                 row_number() over (partition by year, empcode, name
      4                                    order by year, empcode, name, position) as rn
      5            From employees) emp
      6   Where rn = 1;
    YEAR EM NAME       PO
    2001 02 Scott      01
    2001 03 Tom        81
    SQL>

  • How  to  know  ddl  operations  done  against the  database

    hi,
    we are using oracle 10g.
    i am new to oracle dba how i know what are the DDL operations done against the database in oracle , i can i track that one and is there any view to store that informations

    Hello,
    I would recommend you to read Oracle documentation for using auditing DDL statements and more
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/security.htm#sthref2913
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_4007.htm#SQLRF01107
    Regards
    OrionNet

  • How to apply row level security against the database administrator

    I would like an advice in applying row level security against the database administrator. We need to prevent DBA from editing data in some table rows or have any indication that data was corrupted.
    There is no problem in viewing the data so we considered one way hash function or digital signature which will be stored in the same table, but we see following disadvantages:
    HASH - DBA may use the same hash function to update the stored data after he changes the sensitive row.
    Digital signature - the is a need to manage and keep the private key in a safe place outside of DB
    Is there additional ways to achieve the aim?

    Does VPD helps to prevent from DBA to edit/view a data in specific rows?Yes.
    If I correctly understand, DBA has full access to security policy used by VPD to control the access and can grant himself privileges that I don't want.You can to define which users can be exempt of the politics, for the context or by Grant EXEMPT.
    This includes DBAs.
    The simple fact of being DBA doesn't guarantee the exemption.
    Everything goes to depend of the VPD config.

  • Benefits from using the MSI driver against the latest on my R4870 ?

    hi,
    Quote from: Stu
    You don't always need the latest drivers installed
    I am new to the forums and was thinking of OC'ing my video card MSI R4870 512M but before doing so I was wondering if there are any benefits from using the latest driver available at MSI site against the latest driver available from AMD site ?
    Code: [Select]
    MSI 23-07-2010 Version 8.723
    ATI 15-09-2010 Version 10.9
    Also from your experience what would be a nice safe OC that this card would hold, I don't want to go overboard just increase it some more ? it is currently at GPU 500 and Memory 900

     To answer 2nd part, you can attempt to match the factory OC version of the card. See 4870 OC specs > here < If you haven't done so yet download > Afterburner < from MSI.
     4870~something doesn't look right, your GPU clock is way lower than any of the MSI 4870 cards shown on the Global website. From what I see core clock should be at least 750 for the 4870. Are you sure your core clock  is at 500 or is that a low power state for that card? does the speed go up under a load? I know speed of the NVIDIA cards drop very low under light load.
     I'm pretty sure most people use the CCC drivers from AMD/ATI. If you're not having any problems that can be traced to drivers there's no need to bother with them.

  • Not able to see the material documents against the status of GMPS

    Hi,
    Although the PM order has the status of GMPS(Goods Movement Posted) in IW33.No material document is seen against the Order under the order type :Preventive Maintenance.

    Sumit Mohan,
    Maybe someone changed the configuration (see above).
    Let us know the results so we can exclude it from our investigations...
    PeteA

  • Is there any way in FDQM to validate the source records against the essbase

    hi everyone
    i want to know is there any way that FDQM can validate the source records against essbase. say for example i have a a ud dimension member coming from the source i want to compare this member with essbase member in the outline and pass/fail the validation. can we do this?
    thanks
    tm

    Hi
    Are you processing through the web client or as a batch process?
    If you are loading manually through the web then it is standard functionality to highlight any source metadata imported that does not get mapped to a target, you then get the opportunity to correct those members at the Validate stage. If you are setting up mapping tables with specific target members then these have to be valid members in the Essbase outline (although I guess there is a risk that those members change over time and do you mappings stay in sync), it also doesn't do that validation if you upload your maps from template files (.xls / .tra / .trn) or if you have a * to * like mapping.
    If you are processing in batch then if there are any members that do not have a vliad target member after import (remember mapping is applied during the import stage) then the batch fails. You can use the AutoMapCorrect feature to overcome this and map to a default 'suspense' type member if that gives you an issue.
    Ultimately if you get to the load stage and the combination of members is not valid then FDM produces a load error file, this will contain all of the records exported from FDM that have failed to load to Essbase. What this doesn't easily give you is the source metadata that makes up those failed records.
    Can you provide any more info as to your current process and then we might be able to provide a few more pointers.
    Hope this helps
    Stuart

  • Constraint the quantity ordered against the Purchase Requisition

    Dear Expert,
    I have problem in Purchase Requisition, when I have done one PR doc. I put the 200 as the quantity. and when I'm doing the PO I can put the quantity 400, without error message. I also can create 2 PO with reference to the same PR, so for example PR quantity is 200 , the qty for first PO is 200, and The quantity for second PO is also 200. now , this condition is acceptable in my system. what should I do to avoid these kind of conditions, therefore no over-delivery, or mistake in ordering.
    Thanks
    Hope to see ur feedback soon
    Best Regard,
    Pauline

    Hello,
    For putting a restriction on the PO qty, not to exceed PR qty, you can configure the message 06 - 648 (Requisition quantity already ordered in full (see follow-on docs.)) as an error message in the SPRO settings in the below path --
    SAP Customizing Implementation Guide > Materials Management > Purchasing > Environment Data > Define Attributes of System Messages.
    This will give the error message when the PO qty is exceeding the PR Qty for enjoy transactions (ME21N, ME22N, ME23N, etc.)
    For the old transactions (ME21, ME22, etc), you need to put a validation by using - EXIT_SAPMM06E_012 function exit.
    Hope this should help.
    Regards,
    Zafar.

  • Using laptop in many envirouments (home, office, university..) made change every time the proxy server. May Firefox (in the future..) have same facilitation to learn or try itself to set the correct proxy against the networks?

    In may network envirounments there is a proxy server. I mean, at the office there is one, at the University another one, at home none...
    Every time I get a new place of this I have to change manually the proxy configuration. I think this is not so confortable. I discovered a Antivirus SW that has implemented that idea: First the sw try with the proxy settings, if it's failed it try without. It's not the best, but at own home this make sense. May firefox use more intelligent (may be autolearn: I mean by network id firefox can associate the proxy settings) proxy configuration settings.
    Thx a lot!
    FaB

    You can look at these extensions:
    *FoxyProxy: https://addons.mozilla.org/firefox/addon/2464
    *QuickProxy: https://addons.mozilla.org/firefox/addon/1557
    *SwitchProxy: https://addons.mozilla.org/firefox/addon/125

  • How Do I  register a complaint against the terrible Adobe  Customer Service Chat line

    I waited for over an hour and a half to speak to an expert this morning about a problem I have with my newly purchased Light Room 5bought and installed 2 days ago. I can't get the Plug in manager to work without the Add buttom shutting down the applcation with an error message .
    The expert Prianka could not answer the question and asked me to try again in about half an hour  and speak with someone else !.
    When I did , I found the Chat option greyed out and unavailable due to high demand ! This is not acceptable from such a big and well established Company . 
    I am still waiting patiently  nearly 5 hours later to resolve my problem. 
    Adobe should increase its resources for online support for newly bought products and facilitate a priority  email or chat on-line complaints servce that better needs the needs of its Customers
    Can a manager at Adobe please respond to this question with ba prompt and positive  outcome or give me a refund please
    Thanks
    Message was edited by: Photo Jammer

    This is a user-to-user forum. Try tweeting to Adobe customer care https://twitter.com/AdobeCare
    In general, you will find people here are knowledgeable and helpful. Describe the problem in more detail - like exactly when the error occurs. Operating system is alos useful too.
    John

Maybe you are looking for