Table control is not displaying

Hi All,
Is ther any thing wrong with the below code:
PROCESS BEFORE OUTPUT.
  LOOP AT it_zmonths_data WITH CONTROL tabcontrol_1000 CURSOR
                              tabcontrol_1000-current_line.
    MODULE status_1000.
  ENDLOOP.
PROCESS AFTER INPUT.
  MODULE user_command_1000.
  LOOP AT it_zmonths_data.
  ENDLOOP.
MODULE status_1000 OUTPUT.
  SET PF-STATUS 'MENU_1000'.
SET TITLEBAR 'xxx'.
  IF NOT it_months_data[] IS INITIAL.
    CLEAR:it_months_data.
    LOOP AT it_months_data.
      zmonths_data = it_months_data.
      APPEND zmonths_data.
      CLEAR zmonths_data.
    ENDLOOP.
  ENDIF.
ENDMODULE.                 " STATUS_1000  OUTPUT
MODULE user_command_1000 INPUT.
  CASE sy-ucomm.
    WHEN 'DISP'.
      break hfrmm037.
      PERFORM validate_period.
      PERFORM get_month_days_weeks.
      PERFORM get_data_from_custom_tables.
      PERFORM get_data_for_months.
      PERFORM z1000_include.
     break hfrmm037.
      IF NOT it_months_data[] IS INITIAL.
        DATA:lines TYPE sy-tabix.
        DESCRIBE TABLE it_months_data LINES lines.
      ENDIF.
      tabcontrol_1000-lines = lines.
    WHEN 'EXIT'.
      LEAVE PROGRAM.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_1000  INPUT
And the error is:
  This error is connected to the processing of an internal table with the
  field or variable "IT_ZMONTHS_DATA", and was triggered within in the program.
Please advice.
Thanks a lot.

it's my mistake. The table which I have defined at the screen level is the structure instead of database table or internal table.

Similar Messages

  • How to add new field to table control data not displayed

    hi
    I have added some nwe fields to already existing table control added three new fields...
    though the recoreds are inserted in teh table properly with the three new fields user id data and time fields
    but on display only the data is not shown in these three columns though the data is coming in internal table...but not to the screen output
    pls suggest where the problme may be
    nishant

    First try the small button Configuration on top right of the table control, as displayed when you run the program. Hit 'Administrator' and see if the fields are checked as invisible. Uncheck them, activate and save.
    If the fields are not in that list at all, then check if the table control is initialized for the screen you use. For example
    CONTROLS: tc_ent_lines TYPE TABLEVIEW USING SCREEN '0100'.
    but you copied your screen and use the same table control in the new screen 0200. Then all you have to do is
    REFRESH CONTROL 'TC_ENT_LINES' FROM SCREEN '0200'.
    before you show the screen.

  • Oracle Table Values are not displayed when tried to display with Essbase

    Hi,
    I was trying to create a report with Oracle RDB Table and Essbase by following the steps given in "Federating Essbase and Relational Data Sources in Oracle Business Intelligence Suite Enterprise Edition Plus" document at the location http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/fed_data/fed_data.html.
    I am able to see the members from the Essbase cubes and I can also see the Oracle Table values, if they are displayed individually (i.e. different reports) but when I try to get one report with Essbase values with Oracle table records then Oracle table records are not displayed and when see the query log I don't see the query for Oracle table but I see obviously MDX queries for the essbase.
    Please help.
    Regards,
    Paresh

    Hi,
    Smitha, you can defnetly use dynamic table in interactive form. I had similar problem and I acheived like follwing:Basically you have to bind the table .
    If you want to have fixed number of rows in the interactive form, then in wddoinit method bind the internal table to ur table node. for exmaple: if u want 2 rows in the form loop times . So by default when you open the form you will get two rows for the table.
    **************BIND THE ITAB ****************************
    DO 2 TIMES.
    APPEND LW_LFBK TO LT_LFBK.
    CLEAR LW_LFBK.
    ENDDO.
    CALL METHOD lo_nd_t_lfbk->bind_table
    EXPORTING
    new_items = LT_LFBK.
    If you want to have dynmic table then take a submit button in the form instead of normal button,
    in onaction submit write a loop every time you click that new submit button it should add a new row.
    use above coding in onactionsubmit instead of doinit.
    Thats it.
    Regards,
    Ravi

  • Module Pool - Table Control - Data not getting displayed in Control

    Hi,
    I have a table contol in my module pool program. In my processing I am filling an internal table & then in my PBO I am linking the internal table to table control. The issue is that even though the internal table is getting filled correctly (found through debugging), the data is not getting populated in table control. Nothing is populated on screen. I am writing part of code below
    Declaration:
    Types: begin of ty_control,
            SELECTED TYPE C,
            TEXT TYPE DPR_CAUSE_T-TEXT,
          end of ty_control.
    CONTROLS :  TBL_CONT TYPE TABLEVIEW USING SCREEN '9001'.
    DATA:       lt_table_cont type TABLE OF ty_control with header line.
    Fields in TBL_CONT:
       TBL_CONT-SELECTED
      TBL_CONT-TEXT
    PBO Flow Logic:
      MODULE STATUS_9001.
    MODULE fill_data.
      LOOP AT lt_table_cont WITH CONTROL TBL_CONT cursor TBL_CONT-top_line.
      ENDLOOP.
    PAI Flow Logic:
    Loop at lt_table_cont.
       MODULE UPDATE_DATA.
    endloop.
    MODULE USER_COMMAND_9001.
    PLZ let me know what might be the problem. I have been trying to figure out but cant.
    Thanks.

    Hi Sonali,
               When ever you need to do anything with the table control, i mean if u want to display data in table control or you want to validate the data entered in table control Should be done within Loop and Endloop.(PBO or PAI's which ever is appropriate)
    Here the data is not bieng displayed in ur table control because you have not used the MODULE fill_data  between
    LOOP AT lt_table_cont WITH CONTROL TBL_CONT cursor TBL_CONT-top_line.
    ENDLOOP.
    so do it like this
    LOOP AT lt_table_cont WITH CONTROL TBL_CONT cursor TBL_CONT-top_line.
    MODULE fill_data 
    ENDLOOP.
    this will solve your problem.
    Regards,
    Syed

  • Nested Internal tables with cl_gui_alv_grid - not displaying records

    Hi,
    I wrote a program using nested internal tables with cl_gui_alv_grid class
    At runtime, when I select dropdown on one of the cells (RESWK - driver to the nested table), it does not bring the related record and display it
    Does cl_gu_alv_grid support nested internal tables?
    Or which class to use
    Appreciate reply at the latest
    Thanks
    Rajeev
    Edited by: Thomas Zloch on Feb 7, 2011 4:11 PM - priority reduced

    Hi Rajeev,
    Maybe checking out this documnetation will answer your question:
    [ALV Grid Control (BC-SRV-ALV)|http://help.sap.com/saphelp_erp2004/helpdata/EN/bf/3bd1369f2d280ee10000009b38f889/frameset.htm]
    To my knowledge ALV does not support deep structures.
    Kind regards,
    Robert

  • New columns in the table control do not appear

    Hi,
    We have a requirement to add two fields(columns) in a table control  for a transaction upon clicking Create button and those two fields should be editable. We have added the two fields in the table control. But, they do not appear in the transaction ( If I delete an existing column, then I am able see the new column).  Have checked everywhere, but not sure if I am missing something here. There is no hide statement used.
    Appreciate help on this.
    Thanks,
    Pavan

    Hi Pavan,
    What I understood is you are adding fields to the table control dynamically.\
    For that you have to use field-symbols to add fields to the work area dynamically.
    ( If this is not your actual requirement share your code with me I will try to solve it. )
    Regards,
    Swaroop

  • Table record is not displayed correctly..

    In Windows and Linux environment we deployed the same code.
    In Windows environment, I had a application with one jspx page. we had a table and one insert button inside panel collection, when i click on the insert button it gets pop up and gets values for the required field. When i submit it, the row getting displayed immediately inside the table.
    But in Linux environment, when i insert first record its not displayed immediately. When i insert second record, first record is displayed and second record with blank value. When i click on first record or when i click query by example the second record is also getting displayed.
    Can any one help me in this regard?
    Regards,
    Srividya

    You can help us help you by:
    a). Not bumping your thread after 3 minutes
    b). Looking into and providing the information (version numbers, what is different between the 2 environments, etc) that Arunkumar asked for
    c). Explaining more about your environment. Are the windows/linux environments you are talking about running JDev, running WLS, or running as the client (browser)?
    A suggestion: just randomly changing the properties on the table is not the best way to look for a solution
    John

  • Flex 4 Spark controls text not displaying correctly on Solaris 10

    For some reason Spark controls won't render text correctly on our sparc Solaris 10 worstation.  As you can see the Cancel button and the "HELLO" label are mx controls.  The rest are spark controls and only display a square with an x inside, Any ideas?
    I've tried with both "_sans" and "_typewriter" font families.

    It's supposed to look like this:
    I'm not using unicode at all.  I initially tried to use the default font (not specifying any)  Then i tried using the device fonts "_sans" and "_typewriter" but i get the same problem.  It works fine on windows.  The weird thing is it only happens on Solaris 10 and only on Spark controls.  I am using Flash Player 10r45_2 if that makes any difference.

  • Table control itab not getting updated.

    Hi,
    I have a table control created with the help of the wizard.
    There are initailly no entries in the table and the user enters it during execution.
    However the entries do not get updated in the internal table.
    The modify statement below fails giving sy-subrc value 4.
    MODIFY gt_bank_det_new
        FROM gwa_bank_det_new
        INDEX zbp_bank_dt_new-current_line.
    Can you suggest what could be going wrong. There are no type mismatches and the table is a standard one.
    Thanks in advance.
    Arindam.

    Hi
    in PBO
    Loop at itab with control tc.
    endloop.
    In PAI,
    loop at gt_bank_det_new.
    module  modify_tab.
    endloop.
    in Program
    module modify_tab
    describe table  itab lines tc-lines.
    if tc-lines <= tc-current_line.
    MODIFY itab FROM wa INDEX tc-current_line.
    else.
    append wa to itba.
    endif.
    endmodule.
    Cheers
    Ramchander Rao.K

  • Application Server Control Page not displayed

    Hi,
    I have installed Oracle Database XE,SOA suite with JDK1.4 and OBIEE advanced installation. I'm able to open the Presentation services and BI Publisher but when i tried to open the Application Server Control the page is not displayed. My Apps Server is up and running.
    Can anyone render help on what error it might be?
    Thanks.......

    I am using the assigned HTTP port. In my case I choose the port pool during rapid install that assigned 8001 to the HTTP listener.

  • Af:table Scroll bars not displayed in IE11 for large number of rows

    Hi. I'm using JDeveloper 11.1.2.4.0.
    The requirements of our application are to display a table potentially displaying very large numbers of rows (sometimes in excess 3 million). While the user does not need to scroll through this many rows, the QBE facility allows drill-down into specific information in the rowset. We moved up to JDeveloper 11.1.2.4.0 primarily so IE11 could be used instead of IE8 to overcome input latency in ADF forms.
    However, it seems that IE11 does not enable the vertical or horizontal scroll bars for the af:table component when the table contains greater than (approx) 650,000 rows. This is not the case when the Chrome browser is used. Nor was this the case on IE8 previously (using JDev 11.1.2.1.0).
    When the table is filtered using the QBE (to a subset < 650,000 rows), the scroll bars are displayed correctly.
    In the code the af:table component is surrounded by an af:panelCollection component which is itself surrounded by an af:panelStretchLayout component.
    Does anyone have any suggestions as to how this behaviour can be corrected? Is it purely a browser problem, or might there be a programmatic workaround in ADF?
    Thanks for your help.

    Thanks for your response. That's no longer an option for us though...
    Some further investigation into the generated HTML has yielded the following information...
    The missing scroll bars appear to be as a consequence of the setting of a style for the horizontal and vertical scroll bars (referenced as vscroller and hscroller in the HTML).  The height of the scrollbar appears to be computed by multiplying the estimated number of rows in the iterator on which the table is based by 16 to give a scrollbar size proportional to the amount of data in the table, although it is not obvious why that should be done for the horizontal scroller.  If this number is greater than or equal to 10737424 pixels then the scroll bars do not display in IE11.
    It would seem better to be setting this height to a sensible limiting number of pixels for a large number of rows?
    Alternatively, is it possible to find where this calculation is taking place and override its behaviour?
    Thanks.

  • Office Control does not display word document

    HI all,
    I followed the example code to display a word document in the office Control UI, but the display remains blank when I push the button to 'show document'.
    I do not have MS Office installed on the server so I have a wordpad named example.doc on the C drive. Can I read the data from wordpad and display it on the Office Control?
    Thanks
    Jay.

    > Thanks all,
    > I have Office 2003 installed on the client but not on
    > the server. The bytes[] array gets loaded with the
    > string '[B@10e770f', but the display stays empty.
    >
    > Jay
    Hi Jay,
    I need to use this feature as well. Did you get it to work. Can you display and edit a Microsoft Word document from within a browser page. It would be good to know that you have been successful.
    Jesse

  • CUxAC 8.6 Call Control Icons not displayed

    Anyone came across a new install of CUxAC 8.6, were the call control icons are not showing at all. If so, how can you get them to show? The icons im speaking about are the few icons between the F7 and F8 area.

    It has been resolved for me. When looking around I noticed that I did not have the option to select toolbars under the view section. So I just did a uninstall/reinstall of the CUxAC software and it came back online properly with the toolbar>Call Control toolbar options available now.
    Maybe a bad install or the senstivity of the software, not exactly sure.

  • Control Costs not Displayed in Process Order Cost Reports

    Hi
    After Variance calculation and settlement of Process Orders also COntrol COst appearing as Zero, is there any step I am missing or any configuration needs to be adjusted?
    Thanks in Advance
    Regards
    Venkat

    Hi,
    I checked in IDES system as well, there also using standard settings control costs are not getting updated on the process orders. 
    I couldn't makeout how the control costs fields get updated in the process order cost reports
    Regards
    Venkat

  • Parts of menu, content of table and tree not displayed

    Hello,
    often I use a certain application running on Java 1.5.0_05 - without any problems - on Windows XP. Recently I used this application on another PC (same application version, same Java version, same OS). Suddenly some menu items disappeared, instead of them I only saw some hyphens. A table content suddenly appeared empty, although it was filled with a lot of records. A tree disappeared partly and only some black squares were seen at the table nodes. If I click on a part of the view, sometimes all the disappeared elements suddenly were visible again, but only for short time. Afterwards they disappeared again.
    What may be the reason for this strange behaviour?
    How can this problem be avoided/resolved (by a users point of view, not a developper's)?
    Thanks for all good hints.
    Thomas Wiedmann

    @SaikiranDaripelli
    this link may useful Fanks comment there see
    Create Dynamic Radio Group

Maybe you are looking for

  • Excise invoice part I entry got cancelled automatically

    Dear Gurus, My client has raised a account assigned PO (K) and maintained the material as Asset. while doing GR, he captured excise invoice. while posting normal invoice, he could not able to post because of "part 1 entry got cancelled". now, it is n

  • Change color of portal tab strip

    Hi. In EP versión nw04s sp 16 there is a bug in the theme editor, is not posible to modify the tab color in the standard portal tabstrip. The note 1150293 said that it should modify some css files, i do it but the tabs of standard tabstrip control do

  • LSMW Read Data behaving differently in production and in ECC

    Hi All, I have writte a LSMW for CJ12 longtext and it is working fine in development but in production it giving error message at 13th step as BDC_INSERT, Transaction code .. is invalid and when i try to simulate the issue i found that in Read Data s

  • Retrieve client ip address from LC process

    Hi, does anyone know is there any way to retrieve the client ip address when a flex client calls the amf endpoint of a livecycle process? This is on ADEP and unfortunately we can't do a flex call javascript on the client side to retrieve the ip addre

  • Edge Transport

    Hello every one.. :) I'm just new to learning  the technology of exchange server 2013 and i wanted to ask... is it enough to run only two roles (mailbox & client access) so that i can send/receive emails from/to the internet?? or its a MUST to have a