All Rows not displaying

Hi
i have two regions. Region 1 is check box region where you check the columns and region2 displays report of checked columns. Region two is displayed when submit button is pressed in region1
Now I have report is set up with 15 rows per page so when I click on next page, it region 2 does not appear.
Can somebody help me
Thanks
Sunil

That what I am doing.
Here's the code to prepare the sql statement
DECLARE
p_str VARCHAR2(2000);
p_col_head varchar2(300);
l_selected HTMLDB_APPLICATION_GLOBAL.VC_ARR2;
p_flg CHAR(1);
p_spcl_instr char(200);
BEGIN
if :P4_CHK IS NOT NULL THEN
l_selected := HTMLDB_UTIL.STRING_TO_TABLE(:P4_CHK);
P_FLG := 'N';
FOR i IN 1..l_selected.count
loop
SELECT COLUMN_NAME, SPCL_INSTR INTO p_col_head, p_spcl_instr FROm DISPLAY_COLUMNS WHERE TRIM (COLUMN_ID) = TRIM(l_selected(i)) AND OBJECT_NAME = 'UALDBA_V';
if i = 1 then
p_str := 'SELECT ' || l_selected(i) || ' "' || p_col_head || '" ';
else
if p_spcl_instr is not null then
p_str := p_str || ', ' || p_spcl_instr || ' "' || p_col_head || '" ';
else
p_str := p_str || ', ' || l_selected(i) || ' "' || p_col_head || '" ';
end if;
end if;
P_FLG := 'Y';
end loop;
if P_FLG = 'Y' then
p_str := p_str || ' FROM UALDBA_V';
end if;
ELSE
P_FLG := 'N';
FOR CV_REC in (SELECT * FROM DISPLAY_COLUMNS WHERE DISPLAY_FLG = 'Y' AND OBJECT_NAME = 'UALDBA_V' ORDER By HIER_ID )
loop
if CV_REC.HIER_ID = 1 then
p_str := 'SELECT ' || cv_rec.COLUMN_ID || ' "' || cv_rec.COLUMN_NAME || '" ';
else
if cv_rec.spcl_instr is not null then
p_str := p_str || ', ' || cv_rec.spcl_instr || ' "' || cv_rec.COLUMN_NAME || '" ';
else
p_str := p_str || ', ' || cv_rec.COLUMN_ID || ' "' || cv_rec.COLUMN_NAME || '" ';
end if;
end if;
P_FLG := 'Y';
end loop;
if P_FLG = 'Y' then
p_str := p_str || ' FROM UALDBA_V';
end if;
END IF;
return p_str;
END;
And this does return rows but on moving to next or previuos page, I have to submit it again

Similar Messages

  • Empty report with pagination,  rows not displayed

    Dear HTML DB Team,
    We have in our reports the next error: An empty report with pagination appears , no rows not displayed
    The test case to reproduce the error:
    1. Create "SQL report" with next report attributes in "Layout and Pagination"
         a. Row ranges 1-15 16-30 in select list (with pagination)
    b. Number of Rows : 15
    c. Number of Rows (Item): empty
    d. Max Row Count: empty
    2. Fill the table on which the report is based with 17 rows
    3. Go to the 2nd page of the report , pagination rows 16-17 of 17
    4. Remove 2 rows from the table, refresh report
    5, The pagination shows now 1 - 15 of 15 rows
    - no rows displayed
    - no "previous button" ( only )
    - no way to get the rows displayed, except logging out and in again
    Any suggestions?
    Erik

    Hello,
    i encountered the same problem while developing in HTMLDB.
    In application builder, i select application Application 106, then click on items, then click next ( the application has 22 global items). Now i want to take a look at the global items in application 105 (there are only 5). In the menu i click Builder - Application 106, select application 105 from Available Applications, click Go and Items. It shows no rows, but says that is displaying rows 1-5, and offers a Next button. No way to see/modify the items unless make a new session or go back to Application 106, Click Previous to see the first page of global items and then again switch to Appication 105 or click to the next button and then manually set pg_min_row=1 in URL.
    One more question - is this forum the right place to report bug suspicions, or is there some other special place for that?
    Best regards,
    Andres

  • How to preselect all rows before displaying ALV report

    I would like to select all rows before sending ALV Grid Display. User then can unselect couple of rows for further processing. How do I do that ?. Im using Method grid1->SET_TABLE_FOR_FIRST_DISPLAY for ALV Report Display. Any help appreciated.

    Ok,
    I've started the editor and check my code. I made few small mistakes (like with this exporting/importing), here's the sample - correctly working - code:
    DATA: it_selected TYPE lvc_t_row,
          wa_selected TYPE lvc_s_row,
          wa_sflight TYPE sflight,
          ltp_layout TYPE lvc_s_layo.
         SELECT *
           FROM sflight
           INTO TABLE gi_sflight.
    ltp_layout-stylefname = 'CELLTAB'.
    ltp_layout-sel_mode = 'A'.
    LOOP AT gi_sflight INTO wa_sflight.
          wa_selected-index = sy-tabix.
          APPEND wa_selected TO it_selected.
    ENDLOOP.
    *   * Load data into the grid and display them
         CALL METHOD go_grid->set_table_for_first_display
           EXPORTING i_structure_name = 'SFLIGHT'
                     is_layout            = ltp_layout
                     i_save = 'A'
           CHANGING  it_outtab        = gi_sflight.
    CALL METHOD go_grid->set_selected_rows
          EXPORTING
            it_index_rows = it_selected.
    This time it is 100% correct.
    Edited by: Marcin Cudo on Apr 11, 2010 2:13 AM

  • Front Row not displaying all Album Art

    Hi, I recently bought a Macbook Pro and imported all the music I had to it. I started downloading all the album arts for all my albums, and finally placed them all in order. They look perfect in iTunes in Coverflow.
    Then, when I started Front Row, I noticed that not all of my songs displayed an Album Art, only some of them. Does anyone know how to solve this problem?

    Similar discussion here with a possible fix:
    http://discussions.apple.com/thread.jspa?threadID=1201950&tstart=15
    Message was edited by: Sith Happens

  • Not all rows are displayed in OBIEE answers

    Hi,
    When I include a dimension column(PRODUCT) along with my fact column(SALES AMT), I am getting only one PRODUCT row displayed.
    If I select just the PRODUCT column without any FACT column, I am getting the list of all PRODUCT(25 rows).
    I used the query generated by OBIEE, and ran it in my database and I am getting all product listing and the sales amount. (25 rows).
    I am assuming my problem is in my RPD. But where in my RPD should I look to debug this issue?
    Thank you.
    Edited by: ssk1974 on Jan 11, 2011 1:09 PM

    This is probably correct behavior - you probably only have one product existing in your fact table? If you want to see all the lists of products along with $0 for the facts, you'd have to do an outer join between the dimension and the fact.
    Of course, if your fact table does have other products in, then there's some other problem - maybe dim joined to fact on wrong column name or something.
    Hope this helps,
    Scott

  • Some, but not all, albums not displayed after Yosemite/iPhoto 9.6 upgrade

    After upgrading to Yosemite and iPhoto 9.6, photos from  some, but not all, albums are missing. All albums from the previous version are listed in the Library, but 12 of 15 are showing "(0)" with no contents.
    Is recovery possible?
    iMac 21.5in (late 2009), OS X 10.10.2
    3.06 GHz Intel Core 2 Duo
    4 GB Ram
    OS X 10.10.2
    iPhoto 9.6 (910.29)

    Your best solution is to restore a backup copy of the library made just prior to the Yosemite and iPhoto upgrades.
    Otherwise try the following:
    1 - launch iPhoto with the Command+Option keys held down to open the First Aid window. Be sure to follow the circled recommendation in the screenshot.
    2 - run Option #4, Rebuild Database.

  • All Pictures not displaying some pictures

    When I choose All Pictures to view all the pics on my media card only the pics in the default folder show up.  Any picture in a sub-folder I created does not show the thumbnail or the picture if I try to open it.  Yet if I go to the actual Picture Folders I can see them there just fine.  I reformatted the card, copied all the pics to my computer, organized them, removed any thumbs.db files and copied back down using Blackberry Desktop Media Manager by Roxio and it still has the same issue.  help?
    Patrick

    Also, try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe!

  • All offering not displaying in Learning Path

    Hi,
    We have created a course which contains 3 offerings (with different delivery modes), each offering have 1 class.
    When we attach this course to a learning path and an employee subscribes to this learning path, only one offering is getting displayed to employee.
    Can we show all offerings under a course in a learning path.
    Regards
    Manuj

    Hi, Manuj.
    Your Learners should be able to see all Offerings that have Classes that are currently active (have no end date or an end date in the future). 
    Here are three things to check:
    The Learner you are testing with has the appropriate Learner Access defined if the Restricted check box is selected for the Classes that belong to the Offerings
    The Classes that you've created under the three Offerings are currently active
    You are within time period set for the Enrollment Dates listed for each of the active Classes
    Anne
    [email protected]
    www.synergycode.com
    877-487-9637 ext. 87

  • All songs not displaying

    I am using itunes 7.02 on my PC. My laptop has itunes 6.05. When I do a power search in the music store for example Johnny Mathis on my PC (itunes 7.02) I see only 4 songs. When i searh for Johnny Mathis on my laptop (itunes 6.05) I see many many songs. What can I do for itunes 7.02 so that I can see more songs. Also the billboard does not diaply on itunes 7.02, HELP PLEASE!

    See: Some songs don't don't show under artist on my iPod.
    From what I understand (thanks to forum member PT for this), once you add a second album name for that artist even for a single song, ALL the rest of the songs should now show up under that artist, even those without album names.

  • All Keywords Not Displaying during Search

    I have 25,000 photos in iPhoto on my Mac Pro. When I click on Search on the bottom of the screen and then click to search by Keyword, I only get the second half of the alphabet to show up with keywords so I can't click on the first half of my keywords to search. In other words, I have more keywords than the screen will show. There doesn't seem to be a scroll bar and I've enlarged the keyword screen as much as I can, already having the large monitor. Am I doing something wrong here or do the Apple designers just assume there is a limited number of keywords that you can use in iPhoto? Appreciate any suggestions.

    It's not you, it's them.
    the Apple designers just assume there is a limited number of keywords that you can use in iPhoto
    No, they just underestimated the number that Users might have.
    My workaround is to use Keyword Manager which is not yet officially updated for iPhoto 09, but you can get a beta on the forums of their website.
    Regards
    TD

  • Front Row not displaying shared libraries

    On my 13" MBP I can't get any shared libraries to show up under Sources. I've got it narrowed down to my specific account because on my fiance's 13" MB they do show up. Same if I create a new user on my computer they show up as well. I've disabled firewall and WaterRoof (unix firewall) to no avail. I've searched the internet over and while this seems to be a fairly common problem I've found no answers. I'm guessing some .plist somewhere is bad. I've deleted the FrontRow folder in Application Support under my user and no luck there.
    For some background I'm running a MacMini with iTunes sharing enabled. Again a new account on my computer or my fiance's MB can access this source no problems. Anyone have suggestions on where I can focus on this problem? I checked Console and Front Row is tossing up no errors for Front Row. I'd really like to get this working. Any one got ideas? Thanks.

    Thanks for the suggestion. I did enable sharing and looking for sharing on both machines. I also have disabled the OS X firewall and the unix firewalls on both machines. I also uninstalled Flip4Mac and Perian on both machines. Still doesn't work. And again it does work OK if I create a new account on my MBP and also works on my fiance's MB with no modifications. Something is set up somewhere on my specific user in OS X on my machine. I'm at a loss what that could be.
    Sean

  • Data is not Displaying after particular Row

    In one table, data is displaying up to two rows.
    Example:
    Data displayed as below
    A 100
    B 200
    Grand total 300
    C 255
    Grand Total 255
    till first Grand total data is displaying in Excel.
    Remaining two rows not displaying.
    With one flag I separated below 2 rows.
    Please suggest.
    Edited by: JP Rao on Oct 31, 2012 8:43 AM

    XML publisher version : 5.6.2
    Excel is the output format.
    Edited by: JP Rao on Nov 1, 2012 12:50 AM

  • Pages not displaying properly in Publisher instances as we activated the page from Author

    HI All,
    Pages not displaying properly in Publisher instances as we activated the page from Author. In author it is working well but in Pulisher it is showing first 2 lines of the page and then showing error as
    Apache sling/2.2 Hot Spot ****** Sun OS error
    Please help me on this.IS this issue with the templates or components are we using?

    Ok, then let's go the long way and try to reduce the number of possible root causes:
    1) Is your problem reproducible on this publish? (I suppose it is)
    2) Is it reproducible on other publishs as well, which have received the same page with the same application?
    3) Can you reproduce it on other replicated pages as well?
    4) When you upload a page to such an affected publish via a content package, does this page render correctly?
    5) Does this problem appear on other environments as well?
    6) Do you use dispatcher when you get this result? Or do you get it when you request the page directly of CQ5?
    7) What's the HTTP statuscode when you render this page? You can see it in the request.log of CQ5.
    If you change logging via Felix Console, you don't need to restart the instance.
    kind regards,
    Jörg

  • OLE Objects are not displayed properly-overlap characters and empty page

    I'm using CR4E 12 Runtime libraries to load and view reports that are created in CR designer  v10. Some of the OLE Objects (not all) are not displayed properly.
    1) A full page contains terms and conditions as ole object is not at all displayed and just shown as black image.
    2) Some data in a table (OLE Object) shown as overlapped characters.
    Any body know the reason and is there any workaround to solve this issue?
    Thankyou very much for your time.

    Your problem seems to be with the character encoding you are using for your text.  A quick google search for ColdFusion character encoding should turn up the answer.  In case you are interested in learning more:
    http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=ColdFusion_Documentation&file=00001201.htm
    Hope that helps!
    - Michael

  • MIGO not displaying GOITEM-SGTXT for new posting

    Hi All,
    MIGO not displaying GOITEM-SGTXT for new posting
    last year postings SGTXT  is visible,
    while checking in customer exits there is no no code.
    I want to make it visible GOITEM-SGTXT.
    Plz help.
    Thanks
    Saket

    Hi guru's,
    I have similar issue with MIGO Material Doc display,
    The screen field GOITEM-SGTXT on the 'Where' tab is not displaying for current year ,
    Previous years the Text field is displaying with the data.
    GOITEM-SGTXT is getting the data from ML18N ,  ESSR-TXZ01 as the text is not entering through MIGO.
    I checked the customer exit and the BADI's for the MIGO , but not activated for manipulating the
    GOITEM-SGTXT.
    Please give me an idea what makes this issue.
    System Details:
    ECC 5.0
    SAP_APPL - 5.0     Logistics.
    SAP_ABA -  6.40   Cross-Application Component
    Thank you

Maybe you are looking for

  • Using iPAD 4G verizon hotspot via the USB cable to a windows pc

    Has anyone ever done or knows anyone that has done a successful internet tethering via usb cable from a pc running windows vista to an ipad 4g running verizon cellular, (with a 3G or 4G LTE connection)? I have tried many times but if nobody has ever

  • Firefox 33 HTML select elements do not display correctly

    HTML form <select> elements do not display options correctly in Firefox 33. For example: <select id="field_4" class="mainForm" name="field_4"> <option value=""></option> <option value="submitted"></option> <option value="pending"></option> <option va

  • Scrap from vendor Reconsilation

    Dear all , Here i am performimg scrap transfer posting from Vendor. MB1B -  542  mvmnt , here it is not against the PO as system is not taking the same againt PO , but against vendor code. Now can i reconsile with the same , if yes pl guide with proc

  • Question on using Virtual PC with Access

    Right now I'm using 2 systems at my office, Linux SuSE and XP, both on different machines. I just ordered a PowerBook G4 and will be upgrading it to 2GB memory when it comes in. The PB is to replace my SuSE box and I'm wondering if I will need keep m

  • Can someone explain the difference in HDS & RMTP

    I am needing someone to explain the difference in HDS (live streaming & vod) video compared to RMTP (live streaming & vod). My end goal is to have video formats for ALL devices Android/iPhone/iPad/BlackBerry/Apple Mac and Windows to view.