Can't not display the table control in the report

Hello frnds,
I m create a module pool pgm using saptechnical  'Demo on using Table Control', 
execute a report bush buttons are displayed but
can't Dispaly the table ctrl in the report using screen paiter
any help me, plz.
Thanks in advance.

Hi Kumar,
Check thsi Program demo_sel_screen_with_tabstrip.
and also a program on Subscreens in ABAPDOCU
You need to combine both then only this is possible in Report PRograms
Cheerz
Ram

Similar Messages

  • How to display a table control in a report

    hi
    how to display a table control in a report

    create a screen in your report.
    Call that screen in your report.
    While designing your screen, use Table control creation wizard to create table control on that screen.
    http://www.planetsap.com/online_pgm_main_page.htm

  • Data not displaying  the report (Help me out Urgent)

    Hi Folks,
    When i am executing the query and web reports for the date 27/11/2007 & 28/11/2007 am not getting the data its saying "No applicable data found"
    But i can see the data  in the  ODS for those dates.
    Report is working fine till 26/11/2007.
    But when the user is trying to check the reports for the above mentioned dates its not displaying.
    Even in checked it the RSRT as well but the same case over there the data is not displaying.
    Its bit urgent as its month end user wants to see the reports.
    Any help or any clue will be great helpfull and appreciated.
    Urs,
    RK
    *****Points Committed

    HI Suchitra,
    <i>First check out how many records are there in the ODS as on 27th and 28th</i>
    There are totally 750 & 427 records on 27th and 28th.
    <i>At the time of executing the query,are using giving any variable entries?</i>
    Yes we are using variables entires like PO Date & PO number we usually check  the reports giving the date in  PO Date variable,
    Any other clue please?
    Urs,
    RK.

  • From the Web application does not display the report...

    Hello,
    I have a Web application in VS 2010 (NET 4.0) running reports in VS 2003 (NET 1.1) and CR XI. What should I consider for the reports to run well? When setting up the basics of the folder where the reports are in IIS 7.5, item I keep in the Application Pool: NET 1.1, but when in the same IIS server I click on Browse *: 80, I generated the following error: HTTP Error 500.19 - Internal Server Error
    The requested page can not be accessed Because the related configuration data for the page is invalid.
    I can do, thanks.

    Reports are made in VS 2003 (. NET 1.1) and CR XI using a framework. This framework is placed in the web server (Windows 2008 Server R2) and called from VS 2010.
    Sorry, I'm still having problem understanding this.
    Only CRVS2010 will work with VS2010. The reports can be created in any version of CR you want, but to load the reports in VS2010, you need CRVS2010, create a project in VS2010, then deploy the project and the CRVS2010 runtime(?).
    E.g.;
    1) Create report using CR XI
    2) Install CRVS2010 on a computer that has VS2010
    3) Create a project using CRVS2010 in VS 2010 - can use any framework you want
    4) Deploy VS2010 project
    5) Install CRVS2010 runtime
    - Ludek

  • Portal favorites not displaying the iview.

    Hi Team,
    We have a home role with a welcome page which is the first role to be displayed to every user logged in to portal.
    Now we have enabled the option "Add to Portal favorites" to the portal objects. So when a report (BI / Bo report) is added to the portal favorites we are able to see the report added to the portal favorites iview. But when we try to access the report directly from portal favorites the link is navigating to the exact report path but not displaying the report instead it is displaying the welcome page of the HOME role.
    When i try to add Identity management iview of the User admin to the portal favorites  and try to aceess it from Portal favorites iview, it navigates to the identity management page but the welcome page is displayed instead of the identity management iview.
    Can you please let me know a fix for this.
    regards
    Bharat

    Hi Team,
    Any ideas on this issue will be very helpful
    regards
    Bharat

  • Strange scenario,Oracle can not display the data in mysql correctly

    I use Heterogeneous Service+ODBC to achieve "oracle access mysql"(any other method?),and now i find Oracle can not display the data in mysql correctly:
    -------mysql------------
    mysql> create table tst(id int,name varchar(10));
    Query OK, 0 rows affected (0.00 sec)
    mysql> insert into tst values(1,'a');
    Query OK, 1 row affected (0.00 sec)
    mysql> select * from tst;
    ------------+
    | id | name |
    ------------+
    | 1 | a |
    ------------+
    1 row in set (0.00 sec)
    mysql> show create table tst\G
    *************************** 1. row ***************************
    Table: tst
    Create Table: CREATE TABLE `tst` (
    `id` int(11) DEFAULT NULL,
    `name` varchar(10) DEFAULT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8
    1 row in set (0.00 sec)
    -------------oracle ------------------
    SQL> select count(*) from "tst"@mysql;
    COUNT(*)
    49
    SQL> select * from "tst"@mysql;
    id
    1
    SQL> desc "tst"@mysql;
    Name Null? Type
    id NUMBER(10)

    You can make the following query on the result page:
    "select * from the_table where movietitle = ? and cinema = ?"
    then you set movietitle and cinema to those which the user selected. If the resultset contains more than 0 rows, that means the movie is available.
    Below is the sample code, it assumes you have a connection to the database:
    PreparedStatement stat = myConnection.prepareStatement("select * from the_table where movietitle = ? and cinema = ?");
    stat.setString(1, usersMovieTitleSelection);
    stat.setString(2, usersCinemaSelection);
    ResultSet res = stat.executeQuery();
    if (res.next()) {
    out.print("The movie is available");
    } else {
    out.print("The movie is not available");
    }Now just add that to your JSP page. Enjoy ! =)

  • How to control the display of table control

    hi,
    If I dont find any entry in the internal table to be displayed in table control then I should not display the blank table in the screen.
    I tried using if not itab[] is initial in PBO but there(PBO) 'if' is not recognised and it gives syntax error.
    Even if I tried to put the code of table control 'loop at itab[] into wa_tab contrl....'this part in a module and there to put the If condition it gives error to put where after wa_tab.
    Thanks,
    mohan

    hi,
    As i told i had put the if part in the module but then it is the error with syntax check of table control as shown below
    PBO
    module pbo_100.
    loop at itab into wa with contril Tc cursor tc-lines.
    endloop
    pai
    module pai_100
    but here if i create a new module in PBO say module check_table and put the code for table control as
    if not itab is initial
    loop at itab into wa with contril Tc cursor tc-lines.
    endloop
    endif.
    then here error comed with syntax of loop at itab into wa has to be 'where' condition.
    So the problem is i dont want to display the table control in 1st but after some input on the screen then only the table control is to be displayed .
    Let me know if this is clear.
    thanks,
    mohan

  • IE can not can not display the website

    start -> all Programs -> oracle Home -> Database Control - ORCL
    when I click on ORCL  to open the GUI
    i am getting a internet error http:/localhost:1158/em
    IE can not can not display the web site How can I get the GUI to open
    Please advise

    In version 4.2 on the controller SSLv2 is disabled by default. IE by default doesn't do SSLv3. Either enable SSLv2 on the controller or SSLv3 on the client.

  • Why teststand can not display the ASCII character which number up to 128?

    Hello All,
            I have encountered a problem on an application for ASCII character,why teststand can not display the ASCII character which number up to 128?
           For example:an expression  Local.xx=Chr(164),
           xx-->string,I can not get the correct string.
           Have any idea for this?
    OS:WinXP,Teststand2012 SP1.
           Thanks a lot.
    Solved!
    Go to Solution.

    dug9000 wrote:
    [...]On Windows 7 at least, the code page setting for the operating system is located in the "Region and Language" control panel in the "Administrative" tab where it says "Language for non-Unicode programs".
    Hope this helps,
    -Doug
    Ah, that explains why i see "European Set"....
    One question, Doug: Obviously, you can select only the localization there. Is this PostScript Characters for all languages? Or is it possible to switch to something like true types, e.g. "Wingdings"? (I know, bad example, but i hope you get the point)
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • JEditorPane can not display the applet contained in a html

    We know that class JEditorPane can be used to display Html pages. but it has limitation. When a Html page contains Applet, it can not display the applet! Does anyone know if there's any solution for this problem?

    Hi, i do the 'CREATE_TEXT', after the PO created,   the PO created correctly except the Long Text.
    THE CODE:
    *********************1*********************
        CALL FUNCTION 'BAPI_PRODORD_CREATE'
          EXPORTING
            orderdata    = wa_po
          IMPORTING
            return       = rt
            order_number = aufnr
            order_type   = otype.
    Then i got a AUFNR,
    **********************2**********************
    CONCATENATE sy-mandt aufnr INTO t_name.
          CALL FUNCTION 'CREATE_TEXT'
            EXPORTING
              fid         = 'KOPF'
              flanguage   = 'E'
              fname       = t_name
              fobject     = 'AUFK'
              save_direct = 'X'
              fformat     = '*'
            TABLES
              flines      = it_text
            EXCEPTIONS
              no_init     = 1
              no_save     = 2
              OTHERS      = 3.
    and SY-SUBRC is 0.
    the long text also generated, but can not displayed on the CO03

  • While Installing this error is coming This Program can not display the pag

    When I Try to Install SAP B1 8.8 on Win server 2008.
    I am receiving this message.
    This Program can not display the page
    The website is encountering Problem
    There might be a typing error in the address
    At the time of Installation which site we need to access.
    My Internet is working.
    Still i am facing this Problem please suggest me what should I do.

    HI Ram ,
    Internet is not required while Installation .
    Go through :
    Re: SAP Business Installation
    Thanks
    Ashish

  • Layout - This Program can not display the webpage

    Hi Experts,
    I am trying to create adobe forms in Webdynpro ABAP, for that I created a Webdynpro component and then view in it and created the required attributes and nodes and the pdfsource as xstring type.
    When I go to Layout tab it showing "This Program can not display the webpage" and in route element container I created an element and gave as of Interactive forms but the system is not creating any interface nor going into adobe live cycle designer.
    Is it the problem with the Live Cycle Designer or what exactly I have to do now.
    Please help me out.
    Thanks,
    Praveen

    Hi.,
    This seems that u didnt maintained host entries.,
    Click Run -> enter drivers -> goto etc folder -> double click on hosts file -> open with note pad.
    there u need to enter the host entries., like .. 192.....<server_address> <tab> <domain> <tab> <host>
    ask ur basis team., they will configure that..,
    hope this helps u.,
    reply if u need some more clarifications.,
    Thanks & Regards
    Kiran

  • IE8 can not display the radio button in B1iP

    Hi,
    I installed B1i and finished the configuration in B1i. But when assigning systems in B1iP, my IE8 can not display the radio button. Does anyone know how to solve it?
    Dawson Lu

    Hi Eddy,
    Thanks a lot for your proposal.
    Yes the explorer may have some wrong settings. I will check it again or reinstall it.
    Best Regards,
    Dawson

  • Pagelet is not displaying the content

    Hi All, I am facing an issue where in the pagelets content is not loading into the page.
    We have upgraded from the tools 8.49.23 to 8.52.09. After that when I am checking the pagelets its not displaying the content. But it displayes all my pagelets as a boxes. All pagelets are not in minimized mode.
    I have checked the code which load the page. Its component based pagelet. we are passing the URL to HTML which is using iFrame as given below.
    <iframe src="%Bind(:1)" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" width=%Bind(:2) height=%Bind(:3) style="overflow:hidden; width:100%;"> </iframe>
    %bind(:1) is the component url. I have test this URL independently and is showing the content. Not sure why is this not rendered inside the iframe pagelet?
    I am able to see the pagelet content using personlize preview pagelet option as well. Can anyone help me to understand Why it is not loading inside the pagelet?
    Edited by: 923121 on 17-Sep-2012 06:45
    Edited by: 923121 on 17-Sep-2012 22:23

    There seems to be a new configuration page that might be controlling the display of the Toolbar.
    Navigation: Main Menu > Enterprise Components > Component Configurations > Toolbar > Toolbar Definition
    See: HCSC_NOTIFICATION
    Not sure, if any of the data in these tables were accidentally deleted in your upgraded environment?

  • Table type not defined for table control "T_CONTROL" (Custom table)

    Hi All,
    I m facing a problem in ITS mobile service.
    The Table control designed by me in R/3 (Module pool program) is
    not getting displayed in ITS mobile page.
    It is giving me an error "Table type not defined for table control "T_CONTROL" (Custom table) ".
    Can you please let me how this issue can be resolved.
    With Regards,
    Mahesh

    CONTROLS: table_ctr TYPE TABLEVIEW USING SCREEN '0010'.
    try using this....
    Regards
    Vasu

Maybe you are looking for

  • How to implement XP Cisco VPN client. Please help!!!

    Hi, I am trying to configure remote access for XP desktops using CVPN client software and a Cisco 805 router with IOS IPSec capable( authentication should be local). The remote desktops are behind adsl router wich does nat translations but allow IPSe

  • My Windows PC doesn't detect my phone via USB

    Hi.   When I plug in my USB cord, I expect my PC to detect my phone.  Device Manager reports my phone as an "MTP USB Device."  Any advice on how I can get my PC to recognize my phone as a phone so I can access my information?  Thanks.

  • Apple recycling program

    does that program they offer apply to the ipod touch? because i have an old ipod mini lying around thought id put it towards that and get a %10 discount, does any one know if it matters if the ipod is broken?

  • I've got a G4 powerbook 12" with a broken hardisk.

    I've got a G4 powerbook that needs to have the hardisk changed, where can I send it to have this done?

  • Encore CS5 insists on transcoding .m4v

    Kind of stuck here. Trying to author a Blu-ray and I encoded a large video file out of Premiere CS5 with Media Encoder CS5 using H.264 Blu-ray. I always do this and then bring the clips into Encore and it never tries to transcode them but for this pa