Problem with the table control BDC in FV60 transaction

Hi All,
I got the problem with the table control in FV60 transaction.
This is working for 900 line items.After 900 line items it is giving the problem like it is 1000th line item.You can post only 999 line items.
I know we can post only 999 line items,but in my file only 920 line items.
Please give me solution,if anybody come across this situation.
Thanks & regards,
rakesh.

Hello Rakesh ,
your file may have only 920 line items , but based on those line items, SAP may create few more  new lines ( based on the clearing recon accounts , inter company transaction ...etc )...
regards
Prabhu

Similar Messages

  • Problem with a table control

    Hi gurus,
    I´ve a problem with a table control. It has 3 columns which one is a checkbox.
    I can fill all fields but in the moment I mark the checkbox this line must be unwritable. How can I do it?
    Thanks for all
    Dani

    Assign a function code to the checkbox column....
    so when u check / uncheck any entry, PAI + PBO will be triggered....
    In the PBO during the loop of table control, check the checkbox field value. if it is 'X', make the row readonly
    by looping at screen and setting screen-input = 0 for rest of the columns.
    like ...
    LOOP AT tc_itab
           WITH CONTROL tc_test
           CURSOR tc_test-current_line.
       module set_row_readonly. " loop at screen and set input = '0' if checkbox is checked...
    ENDLOOP.

  • Problem with a Table Control Scroll Down.

    Hi,
    I´m working with a table control in which I select one of the many lines the table contains and I move it into a structure, I delete the data of the table control internal table and I move the selected line back into the internal table to show only that record. My problem is the following:
    Whenever I have to scroll down to select a line, the selected line doesn´t appear afterwards. I believe that it´s because the scroll bar disappears and keeps on showing the line where the record I selected used to be and because the selected record is added in the fist line of the TC.
    Is there any way of avoiding the disappearrance of the vertical scroll bar? Or how can I show the record added in the first line if the TC only displays the position where the selected record used to be?
    This is the logic I use to show the single record.
      READ TABLE TI_ASIGLOT WITH KEY PUSH = 'X'.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING TI_ASIGLOT TO ST_ASIG.
        CLEAR TI_ASIGLOT.
        REFRESH TI_ASIGLOT.
        MOVE-CORRESPONDING ST_ASIG TO TI_ASIGLOT.
        ST_ASIG-CPEND = ST_ASIG-GAMNG.
        MOVE ST_ASIG-CPEND TO TI_ASIGLOT-CPEND.
        APPEND TI_ASIGLOT.
    Thank´s and regards.
    Lucila

    Well, I´m going to anwser my own question. The problem was that in my TC the top field value was the line number of the record I've selected. So the only thing I had to do to fix it was to asign 1 to the field TC-top_line inside the form where I select the record.
      READ TABLE TI_ASIGLOT WITH KEY PUSH = 'X'.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING TI_ASIGLOT TO ST_ASIG.
        CLEAR TI_ASIGLOT.
        REFRESH TI_ASIGLOT.
        MOVE-CORRESPONDING ST_ASIG TO TI_ASIGLOT.
        ST_ASIG-CPEND = ST_ASIG-GAMNG.
        MOVE ST_ASIG-CPEND TO TI_ASIGLOT-CPEND.
        APPEND TI_ASIGLOT.
        W_INI = 1.
      ELSE.
        MESSAGE I889(100) WITH TEXT-T07.
        EXIT.
      ENDIF.
    z_result-top_line = 1.
    (z_result is my TC )
    Best regards,
    Lucila

  • Problems with the items (control) in forms 9i (Re)

    Hello,
    I write this problem in a other post and but don't have any feedback about it(So I will give another try:-) )
    The problem that I will describe don't happen all the time and is very rare but I want to know if it's a normal bug of forms or something more special of our PL/SQL code...
    So here we are.
    Is there others developpers here that have problems with the mouse cursor of the user that seems to be "jammed"(blocked, trapped) in a text item (or another control, like a list item). When this problems happen, the user can't go on another field of the forms with his mouse cursor(Mouse click), the only thing that can resolve that is to refresh the page with Internet Explorer, and after that, he is free to go on another field of the forms.
    This problem is very rare but happens sometimes.
    Thanx in advance!

    Hi,
    This problem is due to failuer of navigation of mouse cursore. For more specific solution can you give the error message and error code, So that we can have exact picture. Waiting for error code......

  • Problem with looping table control in PAI

    Hi,
    I have a table control which displays 10 records at a time. In PAI it is looping only these 10 records even though itab has more than 10. I need to do some validations on all the records. How to overcome this prob.
    Thanks in advance.

    c if u want to do validationsdo it on the internal table before passing it to the table control..
    Secondly in a table control if its size on the screen is for displaying 4 records only den it will display on 4 while running even though ur table has 10 records...
    So in SE41 drag and increase the size for table control...den it will display all records..
    And if u dont want dis..den write the code for vertical scroll in table control..
    Get back to me in case u want 2 do dat..
    Hope dis helps..
    Reward if it does

  • Anyone else having problems with the music controls in the control center?

    Ever since the iOS 7 post release update (iOS 7.0.2) I've have trouble with the music controls not working properly. Wondering if anyone else was experiencing the same issues....

    IslandPrince89 wrote:
    That actually helped but it seems that there are a lot of bugs in the iOS 7.0.2 ..
    You can use this Link to send your Feedback to Apple
    http://www.apple.com/feedback/

  • Problem with the table view's _visibleBounds when used on a scroll view

    I've had numerous problems with getting a table view to work on a scroll view since the table view keeps resizing (http://discussions.apple.com/thread.jspa?threadID=2618816&tstart=0)
    I have created the views in IB. The scroll view is attached to the controller's view, and is assigned as the controller's view. The frame size of the scroll view is 320x436. I am manually setting the content size in code:
    UIScrollView* tempScrollView = (UIScrollView*) self.view;
    tempScrollView.contentSize = CGSizeMake(320, 720);
    The table view's frame's width/height is set to 280x88 in IB (i.e the size of two cells), and the header and footer are set to size 0.
    However, when I run the code, the table view is smaller, it is only 280x68. I have looked in the debugger, and the table view's _contentSize (of its scroll view) is 280x88; however, the _visibleBounds property is 280x68.
    I've tried looking into the documentation for the UITableView class, but can't find anything on the _visibleBounds property, or where it is being set and how to force it to the correct size.
    If anybody has any advice, I'd appreciate it.

    I can get around this problem by going to the scrollview which the tableview belongs to, and unchecking the Autoresize Subviews box.
    But if anybody knows about the _visibleBounds property, or the rules which are applied when resizing subviews, I'd be interested.

  • Variant for selection screen with the Table control entries in another Tab

    Hi Guys,
      The requirement is to create a variant for the two tabs on a selection screen.
      First tab contains the select options and the second contains table control for making entries.
      So will it be possible to create a variant when the user makes entries in the fields in one tab and the table on other tab?

    You wrote
    Utilizing the "Save as variant" option from the selection screen itself works out perfectly, but this variant cannot be transported.
    But, give the variant a name beginning with "CUS&" and this variant will be transported. Variant beginning with "CUS&" or "SAP&" are so-called "system variant" and are  transported automatically. You can then copy the transaction code and use this new variant in the new transaction.
    Regards,
    Raymond

  • Problems with the table of lock is fills

    Hello all
    In my system in occasions repeated, the table of lock it is fills
    Per this problem, I did open the message with SAP and in this message the sap support, I replied that increase the  parameter value  "enque/table_size" at 200 MB, this is the value for 200 MB (202752)
    With the parameters implemented in my system, the table of lock to a is fills, this is not resolved my problem and continuos.
    Other comment is that the value maximun is 200 MB for this lock table.
    I think the problem is in the programs that executed this lock, when is executed some programs that sent the information at my stores, is when the lock table fills.

    Thaks for you answer
    Already enters in the transaction SM12 and see the registers in this table
    with this information, I found the users that added lock in the system and the system table the which is locked.
    But with this information, how can know few registers are locked per users in the SM12 and top file and history alone display this information
    300  PRODUCCION1  30.11.2010  U 11/30  Nr_of_Locks:    4960  Scope:  2   0     4,960
    300  PRODUCCION    30.11.2010  U 11/30 Nr_of_Locks:     5000  Scope:  2   0     5,000
    300  PRODUCCION1   30.11.2010  U 11/30 Nr_of_Locks:     4918  Scope:  2   0     4,918
    300  PRODUCCION1   30.11.2010  U 11/30 Nr_of_Locks:     4956  Scope:  2   0     4,956
    300  PRODUCCION     30.11.2010  U 11/30 Nr_of_Locks:     5020  Scope:  2   0     5,020
    300  PRODUCCION1   01.12.2010  U  12/01 Nr_of_Locks:     4911  Scope:  2  0     4,911
    300  PRODUCCION1  01.12.2010  U  12/01 Nr_of_Locks:     5014  Scope:  2  0     5,014
    300  PRODUCCION1   01.12.2010  U  12/01 Nr_of_Locks:     4939  Scope:  2 0     4,939
    300  PRODUCCION1   01.12.2010  U  12/01 Nr_of_Locks:      190  Scope:  1 0      190     
    300  PRODUCCION1   01.12.2010   U  12/01 Nr_of_Locks:      191  Scope:  2 0     191
    300  PRODUCCION1   01.12.2010   U  12/01 Nr_of_Locks:     4775  Scope:  2 0     4,775
    300  PRODUCCION1   01.12.2010   U  12/01 Nr_of_Locks:     5022  Scope:  2 0     5,022
    For my is important know which is the number of locks of this user,this I would give me an idea more clear the problem.

  • Problem with the table that goes on next page

    Hi all,
    In my template there is a table that stores detail information. The table property is set to display in box format meaning only the border and not grid. Also I have used <?if:position() mod 10 =0?><xsl:attribute name="break-before">page</xsl:attribute> to display only 10 rows per page. now if there are say 15 rows for detail then the remaining 5 lines are correctly printed in next page, but the table in first page is not displayed in box format.
    If needed I can provide you with the xml and template.
    Thanks in advance.
    Suresh

    quick work around
    put this table in another table
    give the box format for outer table,none for inner.

  • I have a problem with the QuickTime controles

    Hi,
    When I play the WWDC 09 video, and go to full screen mode it would not give me the video controls. However, when I am in normal mode it will give me the controls. I repaired QuickTime and the same thing happens; also, I even uninstalled from my PC and reinstalled it, same thing happens. What could be the causing this problem?

    One export will not serve all those purposes. You export to QuickTime Movie to take the master file to your DVD authoring application. You use JES Deinterlacer on the exported file for high quality computer playback without interlacing. You need to recompress for the web. There options are enormous and you should research this thoroughly.

  • Problem with the item (control) in forms 9i

    Hi,
    I want to know if it's normal that we have sometime (not regulary) some problems when a user by exemple use a form with la list item and make the selection of the value very rapidly, fill all the other parameters (radio items...) to call an update with multiline forms and try to go on the text item field he want to go and he can't because the mouse cursor seems to be "jammed".
    This problem is very rare but I want to know if this one is a control problem (to be fixed with an update of forms... or it's something that some PL/SQL code can start aleatory.
    Thanx in advance.

    I am sorry but I couldnot understand exactly what you want.
    Can you clear it and use small sentences instead of big ones.
    Thanks

  • Проблема с оглавлением/The problem with the table of contents

    Добрый день, я использую Pages 5.5.2 и при создании оглавления у меня возникла проблема: Если поставить фильтр по заголовкам, а не использовать все, как предлагается в начале, то гиперссылки в нумерации обновлении сбиваются.
    Например: Заголовок 1       страница 1
                       Заголовок 2       страница 2
                       Заголовок 3       страница 3
                       Заголовок 1       страница 4
                       Заголовок 2       страница 5
                       Заголовок 3       страница 6 
                       Заголовок 1       страница 7
                       Заголовок 2       страница 8
                       Заголовок 3       страница 9
    это изначальный вариант, требующий форматирования, так все работает, но если отфильтровать ненужные стили заголовков, то результат будет таким:
                       Заголовок 1       страница 1 - при нажатии отправляет на страницу 1
                       Заголовок 1       страница 4 - при нажатии отправляет на страницу 2
                       Заголовок 1       страница 9 - при нажатии отправляет на страницу 3
    Скажите пожалуйста, как это исправить?
    Please tell me how to fix it?

    Courtesy of Google I can translate for you in hopes someone else will assist you, Nikita.  There are many experienced Pages users here.
    Hello, I use Pages 5.5.2 and when creating a table of contents I have a problem: If you put a filter on the title, and not to use everything as suggested in the beginning, the hyperlinks in the numbering update astray.
    For example: Title 1 page 1
                        Heading 2, page 2
                        Heading 3 Page 3
                        Heading 1 Page 4
                        Heading 2, page 5
                        Title 3 Page 6
                        Heading 1 Page 7
                        Heading 2 Page 8
                        Heading 3 Page 9
    this is the original version, which requires formatting, so it works, but if you filter out unneeded heading styles, the result will be:
                        Heading 1 Page 1 - when you send a page 1
                        Heading 1 Page 4 - when you send to the page 2
                        Heading 1 Page 9 - when you send a page 3
    Please tell me how to fix it?

  • Problems with the Time Control

    well whenever I choose "play" it will play but then stop and say:
    Fps: 27.4/29.97 (Not Realtime)
    Even though I have "Auto" selected on Frame Rate..When I try to RAM Preview I have to continuously click it for it to finish because it just stops..
    I know this might sound like an odd problem but I've tried everything.
    OS: Windows
    Vista
    Laptop
    32-bit
    894 MB Ram
    AMD Athlon 64 X2 Dual-Core Processor TK -55 1.80GHz

    You don't have enough RAM to adequately run Vista, let alone After Effects. You should have a bare minimum of 1GB to use AE and expect RAM previews of anything more than a second or two. 2GB is real-world starting point.
    http://www.adobe.com/products/aftereffects/systemreqs/

  • Problems with a table in PDF`S footer

    Dear sirs,
    We are having problems when trying to run a PDF with Adobe LiveCycle Designer tool.
    We are working with a PDF which is composed of a header, the main body and a footer. We have created a table (table1) at the footer and
    another one at the main body (table2). This last table (table2) may overflow therefore it will genarate two pages for our PDF.
    On both pages appear the header and the footer correctly but in the last page it does not write the data from the table included in the footer (table1).
    We have no problems with the table included in the main body
    In the attachments, I send you the screenshots of both pages in which I have marked in red the part where we have error.
    May you help us to solve our problem?
    Thanks in advance your help.
    Edited by: emgaitan on Mar 16, 2010 2:18 PM

    Wardell,
    Check the data in RSA3 for the extractor that you use to bring data .
    You must be using the data source 0CO_OM_CCA_09. Check the data and reconcile and you will get it.
    Let me know if you need anything else.
    Thanks
    Ravi Thothadri
    [email protected]

Maybe you are looking for

  • How to read values from Property file into BPEL process local variable?

    I would like to use a Property file with some parameters e.g. <myparm1>12345</myparm1> How can I read from a BPEL process such a Property file and assign it into e.g. local variable "intparm1"? Where (in which directory) should I put this XML Propert

  • Netweaver Error

    Hi All When iam installing the netweaver with abap system iam getting some problem with Database id please read it and tell me the solution i tried in some ways could you please give me the solution.iam posting that error what i got in installation.

  • HOW do I put a (~) on top of any vowel, in my iphone?

    I'm in São Paulo, right now, It's impossible to put a (~) character on top of any vowel, because of that it's impossible to put the correct time and weather because of yahoo can't find the city I'm in ... somebody has any clues? iphone    

  • Smart folders or rules in Mobile Me

    Is there anyway to get rules to filter my incoming mail before it is pushed to my iPhone? Or, Alternatively can smart mailboxes be synchronised with Mobile Me accounts?

  • Integrating Ariba with JDE using Oracle SOA

    Hi Gurus, We want to integrate Ariba system(Purchase Order opeartion) with JDEdwards using Oracle SOA Suite. Anybody has got any material or links which supports this activity? Any valuable inputs/suggestions on this will be appreciated. Thanks in Ad