Maximum Number of line iten reached in FI

Hi All,
i ahve a question that wether the settings in OBYC is depends on sales organization / Plant? i mean, we have two sales orhganizations under one company code and orders in sales organization 1000 we are able to bill without any problem even for more number of materials. but for sales organization 7000 we are getting the subject error while doing PGI, i found that we should maintain / do the summerization of the documents in OBYC t-code. there i found for billing type VBRP and VBRK the settings sre maintained. what should i do? is there any other setting need to maintain?
Thanks & Regards
Ashwini

i have a question that wether the settings in OBYC is depends on sales organization / Plant?
To me, NO, it does not depend on sales organization. I assume your issue is based on the pricing procedure used by these sales organization. It looks you have two different pricing procedure for these two sales organizations. If pricing procedure are different, then check the number of pricing condition types and associated account keys. This will influence number of line items posted in the accounting. So you may need to summarize the line items. Take a look at OSS 1675235  - Error message F5727 "Maximum number of items in FI reached" when release SD billing document to accounting, Note 36353 - AC interface: Summarizing FI documents and/or 1483198  - Error F5 727 "Maximum number of items in FI reached" when releasing invoice to accounting
Regards,

Similar Messages

  • Maximum number of lines 999 reached in FI - Post Goods Issue Vl02N

    Hi
    While doing PGI for more than 500 items, the FI line items have reached more than 999 and system issues the Msg " maximum no of items in FI reached."
    As per Note 36353, we have maintained blank values for MKPF (reference transaction) in table TTYPV using transaction OBCY.
    Now when we tried to post the PGI for more than 500 items, system has issued the foll. msg "Error in FI Data Compression".
    Help us in solving this issue.
    Thanks

    Hi,
    Were you able to solve this issue, we have around 708 lines in the Outbound Delivery, as it would create more than 999 FI lines it is failing.
    Thanks.
    regards,
    Raj

  • Maximum number of line items in sales order

    hi,
    Is there a limit on the maximum number of line items that are permitted in a sales order?
    Thanks,
    Shailaja

    Hi
       I think the correct reply would be 999,999 because data type of item number POSNR is NUM 6, which means that it can hold upto value 999,999.
         However, at the same time keep the following into consideration:
    1. FI document has a restriction of 999 line items per document. So, depending on the account settings, there will be a lower limit. E.g. if each Sales order line item results in 2 line items in the accounting document, then the max. no. of SO line items is limited to 499.
    2. If FI summarization is active, then the system summarizes the account postings, thus reducing the no. of FI line items. Hence, a SO can accomodate more than 999 line items. However, this means that certain line item level details will not be available to the Finance guys (which they may not like).
    3. As the number of line items in a Sales order increases, the system performance suffers greatly. There are performance fixes available, but in general, it is painful to load a SO with large no. of line times through BDC's. 10 Sales orders with 100 lines each consume less system resources than 1 Sales order with 1000 lines.

  • Maximum number of line items in PO/SA....

    Hi,
    1.
    What is the limitation on maximum number of line items in a PO/schedulling agreement/Contract.
    2.
    Also what is the maximum permissible number of lines in a single accounting document possible.As far as I know there is a limitation of counter 999 meaning if an aaccounting document is generated after GR then it will only allow max 999 lines.
    Is there any other way to avoid this.Because in my case I have for several line items in PO and several pricing conditions with separate GL account.Now when I do GR and if a PO has many line items with about 4 to 5 conditions then for each line item there would be minimum 6-7 entries.
    How can this best be handled in SAP.
    I was being adviced to split the GR but is there any better way or is there any option like summerised acounting document ?
    Please suggest as this is most critical for me.
    Thanks in advance
    Regards,
    manOO

    Hi,
    There is no limitation in PO.  But if you want, you can use following user exit;
    <b>EXIT_SAPMM06E_012</b>
    With regard to Maximum Number of items: There is a limit of (999) line items which can be posted per FI document. This is because the line item number (BSEG-BUZEI) field length is defined as (3) numeric positions, i.e., (999) line items.
    The most commonly used workarounds are as follows:
    (1) Implement FI summarization (per note 36353).
    (2) Cancel the original billing document and split it into smaller documents using different payment terms but actually with the same terms, in case of invoice verification.
    This will avoid the (999) line item limit for FI postings. Please also have a look at the note 117708 and 77161.
    Bye,
    Muralidhara

  • Maximum number of lines in UTL_FILE?

    I am using the UTL_FILE package to dump the content of a package to a file. But I find that for packages that are large, the file is getting truncated when written out (it breaks at around 1680 lines or so).
    I confirmed that there is no problem with the read part, by doing a dbms_output.put_line for that particular package.
    Is there any setting on the maximum number of lines that can be written out here? I am using version 8i or Oracle. Thanks.
    Regards,
    Srini

    OK, here is my code: thank you.
    CREATE OR REPLACE PACKAGE BODY Code_Dump AS
    PROCEDURE write_nonpackage_to_file(fname IN VARCHAR2) IS
    fileHandler UTL_FILE.FILE_TYPE;
    fileName VARCHAR2(400);
    CURSOR c_file_content IS SELECT * FROM user_source WHERE name = fname AND NOT (type like '%PACKAGE%') order by line;
    BEGIN
    fileHandler := UTL_FILE.FOPEN('/users/mydir/tmp', fname || '.sql', 'w',1022000);
    UTL_FILE.PUTF(fileHandler, 'CREATE OR REPLACE ');
    <<file_writing_loop>>
    FOR each_record IN c_file_content LOOP
    UTL_FILE.PUT(fileHandler, each_record.text);
    END LOOP file_writing;
    UTL_FILE.FCLOSE(fileHandler);
    END write_nonpackage_to_file;
    PROCEDURE write_package_to_file(fname IN VARCHAR2) IS
    fileHandler UTL_FILE.FILE_TYPE;
    fileName VARCHAR2(400);
    rec_type VARCHAR2(40);
    CURSOR c_spec_file_content IS SELECT * FROM user_source WHERE name = fname AND type LIKE 'PACKAGE' order by line;
    CURSOR c_body_file_content IS SELECT * FROM user_source WHERE name = fname AND type LIKE 'PACKAGE BODY' order by line;
    BEGIN
    dbms_output.enable(10000000);
    fileHandler := UTL_FILE.FOPEN('/users/mydir/tmp', fname || '.sql', 'w',1022000);
    UTL_FILE.PUTF(fileHandler, 'CREATE OR REPLACE ');
    <<file_spec_loop>>
    FOR each_record IN c_spec_file_content LOOP
    UTL_FILE.PUTF(fileHandler, each_record.text);
    END LOOP file_spec_loop;
    UTL_FILE.PUTF(fileHandler, '/\n');
    <<file_body_loop>>
    FOR each_record IN c_body_file_content LOOP
    UTL_FILE.PUTF(fileHandler, each_record.text);
    END LOOP file_body_loop;
    UTL_FILE.FCLOSE(fileHandler);
    END write_package_to_file;
    PROCEDURE dump_code (p_dump_what IN VARCHAR2) IS
    CURSOR c_all_code IS
    SELECT DISTINCT name, type FROM user_source;
    my_copy VARCHAR2(40);
    BEGIN
    my_copy := p_dump_what;
    <<each_file>>
    FOR each_record IN c_all_code LOOP
    IF each_record.type = my_copy THEN
    dbms_output.put('parameter: ' || my_copy ||' ');
    dbms_output.put_line('record type: ' || each_record.type);
    END IF;
    IF each_record.type <> 'PACKAGE' AND each_record.type <> 'PACKAGE BODY' AND each_record.type = my_copy THEN
    dbms_output.put_line(each_record.name);
    write_nonpackage_to_file(each_record.name);
    END IF;
    IF each_record.type = 'PACKAGE' AND each_record.type = my_copy THEN
    write_package_to_file(each_record.name);
    END IF;
    END LOOP each_file;
    END;
    END Code_Dump;

  • GUI connection error MAXIMUM NUMBER OF CONNECTION HANDLES REACHED

    Dear Experts
    while logging on to GUI7.10 I am getting following error
    MAXIMUM NUMBER OF CONNECTION HANDLES REACHED'
    'MAXIMUM NUMBER OF HANDLES REACHED'. 'NO MORE MEMORY IS AVAILABLE'.
    'DO YOU WANT TO SEE DETAILED ERROR DESCRIPTION?'
    When i click on yes to the question above, i get the following:
    'COMPONENT = DPTM'
    'RELEASE = 7.10'
    'VERSION = 10'
    'RETURN CODE= -16'
    'Counter = 3
    This error is not allowing me work.
    Does anyone have a solution?

    Hi,
    I am having the same issue. Did you resolve the issue.
    Please let me know
    Regards

  • Maximum  Number of Nodes 10000 reached

    Hi Im using a loop condition for deadline rendering with system time then the worlkflow showing error with the message
    "Maximum  Number of Nodes 10000 reached" where im going wrong
    im checking my dealine requirement for every 3 minutes by using loop condition  original requirement is to check for every 3 days
    im confused over here where im going wrong
    Thanks

    Hi Prasad,
    As suggested by our friends, there is no termination condition in the loop , and it has become an infinite loop.
    To elaborate this error description, find extarcts from help :
    Maximum number of nodes that can be processed at runtime before the workflow runtime system assumes an endless loop and cancels the current workflow.
    The presetting for this value is 10000.
    Regards,
    Akshay

  • Error Message-"Maximum number of internal sessions reached"

    Hi,
       In one of the User defined screen , we are getting error as
    "Maximum number of internal sessions reached".
       This error is not coming each & every time.This screen is used to store the values in Z-table.
       This error is coming after entering 6-9 entries.  
       What may be the problem.
       The code is as follows :
       when 'save'.
            INSERT zmmt001_grn_gate FROM wk_zmmt01.
            INSERT zmmt002_grn_item FROM TABLE it_zmmt02.
            IF sy-subrc EQ 0.
              COMMIT WORK.
              MESSAGE I002 WITH wk_sno.
              CLEAR wk_lifnr.
              CLEAR wk_ebeln.
              CLEAR wk_name.
              CLEAR wk_appval.
              CLEAR wk_chal.
              CLEAR wk_form38.
              REFRESH it_temp_tc1 .
              CALL TRANSACTION 'ZMMI001'.
            ELSE.
              ROLLBACK WORK.
              MESSAGE e000 WITH text-006.
            ENDIF.
      Whether CALL TRANSACTION 'ZMMI001' statement having problem..
      Pls give your suggestion on this.
    Thanks in Advance,
    Best Regards,
    Pavan.

    Hi
    I agree on the reason of the problem, too. SAP limits the number of internal sessions. By calling the transaction with <b>"CALL TRANSACTION ..."</b> statement, you keep the current transaction's program data and open a new internal session. To handle things technically, SAP forces an internal session number limit.
    The solution is to use <b>"LEAVE TO TRANSACTION ..."</b> which ends the current transaction session, rolls out the relevant program and then opens the new session.
    *--Serdar
    [email protected]

  • How do i detect the maximum number of lines

    Situation:
    I have a textfield that displays about 8 lines of text before
    the content would need to be scrolled to view the remaining
    content.
    Question
    Rather than having some ActionScript that is constantly
    trying to scroll the field, how do i detect the following.
    How do i determine the maximum number of lines that may be
    displayed in a textField (or any type of text field) before
    scrolling would be needed?
    Please specify the method. Thank you.

    When tracing the output using the bottomScroll, it only tells
    me how many liines I have output to the textfiedl, it does not tell
    me how many lines the textfield can hold.
    How do I determine how many lines a textfield can
    hold?

  • Maximum number of lines textfield

    Hi everybody !
    I need to set a maximum number of lines on a text field that should be expandable up to that line number and not beyond.
    Who do I know how to do?

    You can control the number of chars in the field, you can limit the field to the visible area but you cannot dictate a number of lines that the field can be. The closest thing you can get is to make  the field the max number fo lines and then use "limit to visible area" so that people cannot add more text.
    Paul

  • I can't enter a Site. Ihere is only a message: "Maximum number of open connections reached."

    If i want to go to a Site, i recive this: "Maximum number of open connections reached.
    " other Browser work. I have the Problem only with Firefox.

    Check the connection settings.
    *Firefox/Tools > Options > Advanced : Network : Connection > Settings
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel
    If you do not need to use a proxy to connect to internet then select "Use the system proxy settings" setting or select "No Proxy".
    See "Firefox connection settings":
    *https://support.mozilla.org/kb/Firefox+cannot+load+websites+but+other+programs+can

  • Maximum number of line items

    Dear All,
    I am facing an issue in the maximum number of line items EBP purchase order.
    We are in SRM 4.0 using extended classic scenario.
    In EBP PO, if the number of line items is more than 50 then we are getting the dump error "Field symbol has not yet been assigned" when we try to display the PO in Process purchase order transaction.
    In process purchase order, if we click on the start after enting the PO number then it is giving the dump error. But we could able to display the PO by clicking on the details icon of the PO after searching with time frame.
    Dump error is occuring only when we try open the PO header node to see the list of items of the PO. Until the PO is having 50 line items we dont have a problem. If the PO is having 51st item then we are getting the dump error.
    Have anyone faced this issue? Please help me to resolve this.
    Thanks.

    Pradeep,
    Dump error details:
    What happened?
        Error in ABAP application program.
        The current ABAP program "SAPLBBP_PDH_SEARCH" had to be terminated because one
         of the
        statements could not be executed.
        This is probably due to an error in the ABAP program.
    Error analysis
        You attempted to access an unassigned field symbol
        (data segment 32774).
        This error may occur for any of the following reasons:
        - You address a typed field symbol before it is set using ASSIGN
        - You address a field symbol that points to a line in an internal table
          that has been deleted
        - You address a field symbol that had previously been reset using
          UNASSIGN, or that pointed to a local field that no longer exists
        - You address a global function interface parameter, even
          though the relevant function module is not active,
          that is it is not in the list of active calls. You can get the list
          of active calls from the this short dump.
    Information on where terminated
        The termination occurred in the ABAP program "SAPLBBP_PDH_SEARCH" in
         "SUB_LIST_GET".
        The main program was "SAPLBBP_PO_UI_ITS ".
        The termination occurred in line 191 of the source code of the (Include)
         program "LBBP_PDH_SEARCHF10"
        of the source code of program "LBBP_PDH_SEARCHF10" (when calling the editor
         1910).
    Thanks.

  • Maximum number of line items in delivery

    HI experts,
    For open sales orders deliveries are created through VL10c in  background  job
    what are maximum number of  line items a delivery can have and How do I ristrict the Line items?
    Thanks in Advance.

    In standart there is not limit of quantity items in Delivery.
    But you can make limit - see Note 103334.
    SAP recomended 300 pos.

  • Maximum number of apple id reached how to solve it?

    Hi,
      When i tried to activate iphone it showing "Maximum number of apple id reached ! " How to solve this ? I dont have old id details.!
    Thanks.

    Have you recently purchased iPhone second hand ?

  • Maximum number of Sessions ever reached in the last two days

    DB version:11gR1
    We are studying the number of sessions created by one of our JAVA oltp application. We would like to know the maximum number of sessions reached in the last two days.
    I can see max_utilization column from the query
    select * from v$resource_limit where resource_name='processes'But i don't know the time interval (no of days) on which this value is based upon.

    Hi,
    One alternate option will be noting the value before you start the experiment using following statement.
    select value from v$sysstat where name = 'user calls';
    And running this SQL after you are done with making calls. Then you can subtract the two values to get the users calls made between the two times. Keep in mind that this will include all calls made to the database.
    Regards

Maybe you are looking for

  • RFC - Receber chamada do R/3 ao gravar VENDA

    Caros, Sou novato nas tecnologias SAP e estou em um projeto para desenvolvimento da integração "Payment Card Interface to R/3". Estamos desenvolvendo com o SAP Java Connector 3 e a princípio já tenho o meu JCOServer executando e conectado no sistema

  • How do I update my software on the first iPad?

    How do update my iPad on the latest software?

  • Message count on Queues

    Hello, I am new to JMS, i am using WebLogic 8.1 SP5, any built in API is available to find message count on specific queue. That means if i pass queue name to weblogic method that should be return message count or any other way to find message count?

  • Installing just Compressor on a Mac Mini

    Hi! i just upgraded to FCS2 and I am wondering if there is anyway I can install just Compressor on a Mac mini I bought specifically for rendering? I tried not to install it in the G5 i am using now but it seems to be bundled together with the other F

  • Remote editing via Contribute

    I have Dreamweaver 5.5 but not Contribute. My client has Contribute but not Dreamweaver. He wants to be able to edit text on his website, which I maintain. We are in different offices. Do I need Contribute as well as him to make this work?