Repeating frame not appearing

Hi,
I have created a report.
I placed some labels and fields on the repeating frame. For that repeating frame i have assigned one group.
If the group (query ) results in records it is displaying fine. But when it results zero records the whole repeating frame is disappearing. Not even labels are appearing. What could be the problem.
If it results zero record it should display the lables and feilds with no data.
How can we do it?
thanks
Kalyan

Steve is correct on this one - that is the intended result. What you could do is this - create 2 exact layouts. Keep the first layout as it is, but for the second, just create a regular frame, and labels (no repeating frame).
Create a format trigger for the frame that references a placeholder column counting some element in your query (like # of employeees...etc). In the format trigger do this:
If :cp_count = 0 then
return (true);
else return(false);
end if;then if there was no data, your second frame would print with just the labels. Just an idea, but play around with it.

Similar Messages

  • Frame not appearing

    Hi,
    I have report which contains a Report header in the Header Section and a frame in the Main Section. This frame contains another frame containing column titles and a repeating frame containing the query columns. The query always returns one(1) logical page but the physical pages might be more than one(1) page . The problem is, for the first physical page the column headers gets printed but column headers does not get printed for the second page and there is a gap. Is there any solution to print the column headers in all the physical pages.
    Regards
    Bharath

    Steve is correct on this one - that is the intended result. What you could do is this - create 2 exact layouts. Keep the first layout as it is, but for the second, just create a regular frame, and labels (no repeating frame).
    Create a format trigger for the frame that references a placeholder column counting some element in your query (like # of employeees...etc). In the format trigger do this:
    If :cp_count = 0 then
    return (true);
    else return(false);
    end if;then if there was no data, your second frame would print with just the labels. Just an idea, but play around with it.

  • Repeating frame not visible when the query returns no rows

    I've developed a report whose output looks like this:
    Subinventory | Part Code |Part Description |Ordered Qty | Received Qty
    Mentone St | BATT | non serialised item | |
    Mentone St | SONY | spare parts MIN MAX | 30| 0
    In the above report
    subinventory, Part Code, Part description are in one repeating frame and Ordered and received qty are in other repeating frame.
    for a perticular part code there may not be ordered or received quantities. Means the seond query fetches no rows for the perticulat partcode. In that case report is showing null(blank) but I want to print ZERO there.
    If I use NVL in the query it'll effect only when the query fetches some rows.
    I've tried with formula columns. for example in the formula column
    IF :ordered_qty IS NULL THEN
    v_ordered_qty :=0;
    ELSE
    v_ordered_qty := :ordered_qty;
    END IF;
    return(v_ordered_qty);
    I've assigned this formula column as source to the Ordered Qty Filed. Then also its not working.
    Any help in this regards is highly apprecialted
    regards,
    Vij

    may be you can modify your code like below:
    SELECT i.subinventory, i.part_code, i.part_description, i.min_qty, i.max_qty,
           NVL (j.quantity, 0) ordered_qty,
           NVL (j.quantity_delivered, 0) received_qty
      FROM (SELECT DISTINCT c.secondary_inventory subinventory,
                            b.segment1 part_code, b.description part_description,
                            c.min_minmax_quantity min_qty,
                            c.max_minmax_quantity max_qty, b.inventory_item_id,
                            b.organization_id
                       FROM mtl_system_items_b b,
                            mtl_item_sub_inventories_all_v c
                      WHERE b.inventory_item_id = c.inventory_item_id
                        AND b.organization_id = c.organization_id
                        AND UPPER (c.secondary_inventory) =
                               NVL (UPPER (DECODE (:p_sub_inv,
                                                   'ALL', '',
                                                   :p_sub_inv
                                    UPPER (c.secondary_inventory)
                                   )) i,
           (SELECT   mtrl.inventory_item_id, mtrl.organization_id,
                     mtrl.to_subinventory_code,
                     NVL (SUM (mtrl.quantity), 0) quantity,
                     NVL (SUM (mtrl.quantity_delivered), 0) quantity_delivered
                FROM mtl_txn_request_lines mtrl, mtl_system_items_b msi
               WHERE mtrl.inventory_item_id = msi.inventory_item_id
                 AND mtrl.organization_id = msi.organization_id
                 AND mtrl.reference_type_code = 2
                 AND UPPER (mtrl.to_subinventory_code) =
                        NVL (UPPER (DECODE (:p_sub_inv, 'ALL', '', :p_sub_inv)),
                             UPPER (mtrl.to_subinventory_code)
                 AND TRUNC (mtrl.creation_date)
                        BETWEEN NVL (TRUNC (TO_DATE (:p_from_date,
                                                     'yyyy/mm/dd hh24:mi:ss'
                                     TRUNC (mtrl.creation_date)
                            AND NVL (TRUNC (TO_DATE (:p_to_date,
                                                     'yyyy/mm/dd hh24:mi:ss'
                                     TRUNC (mtrl.creation_date)
            GROUP BY mtrl.inventory_item_id,
                     mtrl.organization_id,
                     mtrl.to_subinventory_code) j
    WHERE i.inventory_item_id = j.inventory_item_id(+)
           AND i.organization_id = j.organization_id(+)

  • Repeating frame spacing Problem in Reports 6i

    I have a Matrix with Group report. Now I have two sections (one is matrix section, second is Grand totals section).
    After I run the report layout ,Matrix section data (repeating frame) is appearing at one spacing but the other repeating frame in Grand Totals - appears in the same page (below the Matrix data section) with different spacing and aligning.
    I’ve attached the output of the sample report. You can find the aligning/spacing problem between Matrix data (one repeating frame) and Grand Total data (another repeating frame)
    This is the problem, I have tried changing all the properties, but all in vain. I feel that the repeating frame in Grand Totals appears exactly at the same position as the first one.
    Please help...
    Ratnakar.

    Hi,
    There are no such limitations with Reports. If I understand properly, you run the Report twice, in each run, you are trying to execute different query, and you generate two dilimited Reports output files? This should work fine. Try out the latest Reports 6i patch-10 for this. You can even approach Oracle Support with your testcase. FYI, with Reports 6i patch-11, a new feature "dlimited data" is introduced which will give delimited output with a data dump i.e it would not be dependent upon the Reports layout. You can probably try out this new feature also.
    Thanks,
    Rohit Hi Rohit,
    Thanks for the information.
    well I am generating single output file on each run .
    the problem is somewhat funny.
    I have build query2 in data model after query1.
    query 1 is giving me correct output both in .PDF and delimiter version.
    But query2 is giving me 0 byte file for delimiter version although in .PDF it is running fine.
    When I took out query2 to another module it is running fine for both.
    I hope this make sense.
    Moreover if u still not clear about the problem and thinks that u can help me out please send me ur mail id so that I can send you the RDF copy.
    Thanks
    Mohit...

  • Rep-1338 Column mode not allowed on repeating frame

    I am new to Reports Builder (9i) and am having difficulties with the column mode option.
    I guess i have data in a repeating frame which i would like to appear as 3 columns.
    How do i go about doing this?
    Apologies for the lack of info as i am not sure what you guys need to help me out.
    Any pointers,hints or even answers are truly appreciated.
    Fec

    basically at the moment there is are 2 columns. Name and Address. It is grouped by name so the output will look something like this.
    Name: ¦ Address: ¦
    John Smith 1 This Street
    1 That Street
    4 That Street
    1 Over Street
    12 My Street
    80 Her Street
    I would like it to appear like this
    Name: ¦ Address: ¦
    John Smith 1 This Street 1 That Street 4 That Street
    1 Over Street 12 My Street 80 Her Street
    ie split the Address column into 3 columns and 2 rows

  • Parenet frame not letting me to modify inside repeating frames

    We have developed a oracle report which got 4 repeating frames, Now the parent frame is not letting me to select any of the frames/fields inside the frames. What could be the reason? Also Confine Mode is off. Still it is not letting me to select any of the frame/field/text, Please let me know the possible solution.Thanks!

    Use the object navigator to select items and frames. The reason may be that in the arrangement of the layout, the parent frame is in top, and as it cover the repeating ones, wherever You click, it gets selected. On the menu search for arrange and try seding it back until it's below all other frames.

  • Display of repeating frames is not proper--a litle urgent

    hi,
    I have a report run as a form-letter.Now i have two repeating frames, after i run the paper layout ,one repeating frame appears in the first page (as expected)but the other repeating frame appears in the second page[b] but a little lower that where it should apppear..this is the problem, I have tried changing all the properties, but all in vain.I feel that the second repeating frame appears exaclty at the same position as the first one.Please help...
    Thanx in advance

    Please review (How To Check The Version Of Windows And Excel Certified With Client Server ADI in My Oracle Support? [ID 1097965.1]) and make sure you are running a certified ADI version with Office Excel.
    Please see if these docs help.
    ADI Published FSG Values To Excel are Incorrectly formatted [ID 742261.1]
    Wrong Result In Adi Publishing Output To Web,Excel Fsg Report [ID 404242.1]
    Thanks,
    Husein

  • Repeating frame does not shift upwards !

    Hi , i have a simple report which is built in a parent-childern pattern .
    the layout consists of parent repeating frame and inside it a child repeating frame.
    the parent and the child frames has a print on the first of the enclosing object property set.
    in the first page the parent and the child frame are printed together well.
    the outcome in the second page should be 2 child frame printed one after the other since
    the parent frame is not printed and therfore should shift the first child frame upwards taking it's place
    and by that leaving space to print the one after it .
    instead only one child frame is printed in the same location as the previous one.
    i have tried every possible combination of values in all of the properties of each repeating frame ,
    including adding and removing regular frame that encloses the repeating frames .
    nothing help.
    it is a very important report and need help urgently.
    Please help.
    Thanks you.

    probably a bug in repors .
    i just resized the whole report and it worked .
    thank you for your replay.

  • [SOLVED] Report Repeating Frame Will Not Print More Than One Page of Data

    I have a layout which contains only 1 repeating frame, and is not contained in any other frames. The query that the group of this frame is based on returns 414 rows. The report is a character based report of 180x66. All of the fields in the repeating frame are all in a straight line on a single row.
    No matter what I do, the report ends at the bottom of the first page. If I put the frame at row 30, only 36 rows are printed. If I put the frame on the first row, it stops at 66. No mater what I do, it will not continue on the next page.
    Any ideas on what could be the problem here?
    Thanks,
    Kurz
    Edited by: Kurzweil4 on Oct 13, 2008 3:35 PM
    Print condition was set to All. Changing it to First solved the problem.

    Make sure the repeating frame is variable vertically and that all the frames that it encloses are variable.

  • Firefox repeatedly says "NOT RESPONDING"...I go into Tools, Options, UNCHECK Submit Crash Reports, but it ALWAYS appears CHECKED...WHAT GIVES???

    It doesn't usually CRASH completely, but repeatedly says NOT RESPONDING!!!...why doesn't the dam SUBMIT CRASH REPORT stay UNCHECKED when I repeatedly REMOVE it???

    qwerty007 wrote:
    Things have taken a turn for the worse! My system won't even boot up at now. I just get a grey screen with the apple logo. If I try restarting with the option key, it beeps and the fans whirl. I phoned an Apple servicer and they said sounds like a new hard disc is needed.
    Can you not even start up from your Tiger Install DVD? If so, try running Disk Utilities from the Utilities menu, click on "First Aid", select your boot volume, and then "Repair Disk" If it fixes anything, run it again until it says "The volume … appears to be OK".
    Note you should not use your 10.3 Install disk to fix a 10.4 system.
    Alternatively, if you can boot into Single User Mode, you could us fsck to attempt a repair of your disk:
    Using Disk Utility and fsck to resolve startup issues or perform disk maintenance.
    I can't believe my misfortune just from upgrading a couple of softwares, especially after I tried so hard to avoid having to upgrade, and then did my due diligence to unsure compatibility. DO I have any recourse to either of the resellers of the upgrades?
    I doubt it (but of course I don't know any US lawyers )

  • The same repeating frame ,but do not display in the same page

    i create a report,with the same repeating frame,some of its content show in one
    page,others in another page,why??
    how to solve this?

    hi,
    try this code.
    ls_fieldcat-fieldname = 'LIFNR'.
    ls_fieldcat-seltext_l = 'Vonder'.
      ls_fieldcat-key = 'X'.
      ls_fieldcat-fix_column = 'X'.
       ls_fieldcat-outputlen = 12.
      append ls_fieldcat to l_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         IT_FIELDCAT                        = l_fieldcat.  " Pass the fielc cat here
    it must work.... and check out thels_fieldcat-fieldname  again.. you have to give the correct fielname in uppercase inside ' '.
    thankyou.

  • How do i make a frame a enclosing a repeating frame appear only on the last page of a report?

    I have a frame that encloses a repeating frame. How so i make them print only on the last page?

    Assuming you have other content, you could:
    set the Print Object On property to be last page.
    anchor it to the main content that repeats on every page, so this frame only prints after the other one is done
    Assign a format trigger where you make it display only if current page is equal to total number of pages
    create a trailer and move the frame there

  • Heading for repeating frame (horizontal) to appear just once - How?

    Hi
    I have 3 queries that represent 3 different levels. Each level is displayed one above the other. Example
    Level 3: <field3 from query3>
    Level 2: <field2 from query2>
    Level 1: <field1 from query1>
    In the output The level labes are displayed as many times as the values in the fields. Example Level 2 is displayed twice if query 2 returns 2 rows.
    Level 2: <row1 from query2>Level 2: <row2 from query2>
    This is because I have field and label for Level within a repeating frame. Is there a way that I can suppress Levels being dispalyed multiple times and display just once in the beginning?
    I cant put the Labels outside of the repeating frame because the levels may vary (there may be 1 level or two or all 3 levels depending on input).

    Are these 3 queries independent of each other or linked with Data Link?
    If these are linked with each other, then try the following:
    Try using summary column (count) for each query and put a format trigger on the labels. If count is <> 1, hide the label.
    Hope this helps.

  • Make the contents of the repeating frame appear even if its empty

    Hi all,
    how can i make the contents of a repeating frame (like the labels) even if the query doesnt return anything ??
    Regards,
    Rafael

    Hello,
    Here is the Forms forum. You would have more chances to get an answer by posting on the Reports forum.
    FRancois

  • How to make the contents appear of a repeating frame even if its empty

    Hi all,
    how can i make the contents of a repeating frame (like the labels) even if the query doesnt return anything ??
    Regards,
    Rafael

    Move labels outside the repeating frame.

Maybe you are looking for

  • Use CONTEXT index on mview or use mview's rewrite directly

    Please let me explain what I mean in Subject. I have 9 tables. Each of these tables has about 40,000 rows and one table has 2 million rows. Using first approach, I can build a join-only materialized view on top of nine table's mview log. then query o

  • Single Sign-on with Multiple Servlets and JSPs

    I am in the midst of attempting to logically tie together a number of our           web applications under a single sign-on "umbrella". What we want is the           following: for any n applications a user may have access rights for up to n         

  • IMac no longer able to see HP wireless Printer

    My iMac, which I update regularly can no longer see my HP Photosmart 5510d wireless printer. OS X V10.9.5  2.7 Ghz Intel Core i5, 8 GB 1600 Mhz DDR3 It was working fine until a week or two ago and now it can't see it. I printed out my printer network

  • Hyper-V 2012 R2 - Fixed Size VHDX Have VMs Paused Due to Disk Space Shortage

    I am running Hyper-V Server 2012 R2 (Server Core).  I have an SSD boot drive and a 10 Tb Storage Space HDD (Double Pairty - RAID6) where all VMs are stored. I have one VM setup with an expanding VHDX file.  It is setup with thin provisioning for 2 Tb

  • SPA509G - Manage lines

    I'm having a problem witch a SPA509G, the UC560 has a PRI card, is possible to manage 2 incoming calls on the phone, but a third one is not allow, it's like there's no more lines free. How can I configurate the other bottons for allow more incoming c