2 Repeating Frames based on the same group

I have this report which contains 3 groups, I have the requirement to break the 2nd group so that I create a 'footer' based on the 2nd group.
I have created 2 repeating frames (one which holds the account number, payment terms, currency) and the 2nd repeating frame based on the same group which contains the bank details
My report looks like this:
(1st Group)
Customer xxxxx
Address xxxxx
(2nd Group)
Account No xxxxx
Payment Terms xxxxx
Currency xxx
(3rd Group -repeating)
Trans id xxx
amount xxx
(2nd Group)
Bank Details xxxxxxxxxx <--will only have one per account
I had originally designed the report using 2 identical frame structure.
e.g.
Main
Repeating Group Customer
Repeating Group Account
Repeating Group Transactions
Footer
Repeating Group Customer
Repeating Group Account
This format worked when the Main group did not go over a page. The 2 Account Groups were coordinated.
When the Main group extended to more than one page, the 2 Account Groups did not match.
The jest of what I am trying to do is a footer of the bank details be printed at the bottom of the page always.
Any suggestions would be greatly appreciated!!!

I didn't realise that this was such a difficult problem to solve. The requirements are quite simple (I thought)
1) Query
3) Groups
a) Company
b) Accounts
c) Transactions
My report needs to look like this:
{page 1}
COMPANY XXXXX
ACCOUNT: 123
Invoice ID Amount
aaaaaaaaaa 111.11
bbbbbbbb 111.11
Sub Total 222.22
--> To be printed at a predefined space on the physical page on each page. bold Bank Details for Account 123: xxxx bold
{page 2}
COMPANY XXXXX
ACCOUNT: 456
Invoice ID Amount
aaa 10
bbb 20
ccc 30
ddd 40
....<as many records that will force a second page
--> but..this still needs to print!!!To be printed at a predefined space on the physical page on each page. bold Bank Details for Account 456: xxxx bold
{page 3}
zzz 100
Sub Total 1000
--> To be printed at a predefined space on the physical page on each page. bold Bank Details for Account 456: xxxx bold
Say the next records in the query are for
COMPANY XXXXX, ACCOUNT 789 with one detail record.
COMPANY XXXXX, ACCOUNT 321 with multiple details records which will force a second page.
What is happening at the moment is that the 2 repeating frames based on the Account Group,
the first 2 pages will print out correctly, however, because the 2nd account goes over 2 pages and how I have this set the structure of the report (see above post), the bottom Account Group thinks that the account number is now 789 when in fact the top account group is still on 456
I really hope that this is clearer.
I am working on Reports 10g on a 10g database
I have tried to create a ref cursor & separate the query to bring back bank details. but with no luck.
A person had suggested that I create a separate frame and hold the bank details, which is fine. but as I previously stated, those bank details need to print on every page at a specific area on the physical page.
If this might be of use:
Repeating Frame Group Customer, Vertical & Horizontal elasticity Fixed
Repeating Frame Group Account, Vertical Elasticity: Variable & Horizontal - Fixed
Repeating Frame Group Transations, Vertical Elasticity: Expand & Horizontal - Fixed

Similar Messages

  • Can we assign two repeating frames to have the same source(group)?

    hi all,
    can we assign two repeating frames to have the same source(group)?..pls reply soon... bye..

    You can assign the same source group to two repeating frames.
    For more information on repeating frames, refer to the Oracle Reports Building Reports manual available on OTN: http://www.oracle.com/technology/documentation/devsuite.html

  • How can I edit multiple clips with different frame rates on the same timeline

    how can I edit multiple clips with different frame rates on the same timeline

    You do not want to edit material from different frame rates on one timeline. You CAN do this, but it is a very bad idea - and this is why.
    Once you establish the sequence frame rate - lets say it is PAL material at 25fps, any material that you drop into the sequence other than 25 fps will have to be changed to play at 25 fps. If the material you add is NTSC (29.97), FCP will DROP 5 frames per sec to bring the frame rate down to 25 fps. Which 5 get thrown away? Every 6th one. This yields a funky cadence that becomes even more complex as as there are also interlaced fields (DV/NTSC is an interlaced format). Oh, and by the way, the image sizes are different as well. DV/PAL has 576 lines of resolution and DV/NTSC has 480. FCP has to scale up the NTSC to fit the PAL frame.
    You do not want FCP adjusting these things on the fly. You want to do a thoughtful (and time consuming) conversion so that you end up with all your material in one format with the best possible image from the conversion process. Compressor can do an adequate job with Frame Controls turned on. The Natress Standards Conversion FCP plugin is another way to go. A third option is to find a post house that can do the conversion for you using a hardware based process.
    The good news is, once everything is in the same format, editing it will be painless and the output process very quick.
    Whatever frame rate/ image size you select, I'd suggest using ProRes for the codec. It is 4:2:2 color and will withstand color correction and composting with much more grace than any variant of DV based codecs.
    Have fun.
    x

  • Two LOVs in same UIX page based on the same table

    Hi group,
    Recently I ran into a problem with a UIX page that has two LOVs based on the same database table. In Emp and Job terminology, here's what I tried to do.
    Suppose we have use the Employees and Jobs tables from the HR scheme with one small modification. Add a column called PREFERRED_JOB_ID of type VARCHAR2(10) which is exactly the same as JOB_ID. Hypothetically speaking, this column will be used to allow Employees to select their preferred job in case they want to change their jobs.
    Next, create business components in JDeveloper based on the Employees and Jobs table. In order to be able to generate the LOVs for Job and PreferredJob create two ViewObjects, one called JobsLookupView and one called PreferredJobsLookupView. These both need to be based upon the same Jobs EntityObject. Also include the Jobs EntityObject twice in the EmployeesView ViewObject and give one the alias PreferredJobs. Include the JobTitle attributes of Jobs and PreferredJobs in EmployeesView so they can contain the JobTitles selected in our future LOVs.
    Next create a ViewController project if it's not already there and enable JHeadstart on it. Create an Application Structure File and create the lookups for the two LOVs. When I run the application I see this happening:
    When I click the flashlight icon next to the PreferredJob LOV and select a job, the PreferredJob field is selected in the UIX page but no job title appears. When I next first select the Job LOV and select a new job and then select the PreferredJob LOV again and select a different job, the job that was selected in the Job LOV is now also entered in the PreferredJob field. When I make sure the PreferredJob field isn't required (remove the required="yes" property on the messageLovInput entry for PreferredJobTitle and remove the PreferredJobTitle field from the addRequiredRowItems list in the UIX page) I can save the changes I made in the Employees.uix page. The same JobId is stored in the database for Job and PreferredJob.
    This behaviour is probably due to cacheing issues because both LOVs and the EmployeesView ViewObject use one EntityObject for four values in three ViewObjects.
    So I then modified my model a bit. I created a new EntityObject called PreferredJobs based on the JOBS table. I modified the EmployeesView ViewObject to use this EntityObject for the PreferredJobTitle attribute and modified the PreferredJobsLookupView to use this EntityObject.
    I needed to modify a few things as well in the Application Structure File (which were prompts and whether or not the attribute should be visible in a table) and after regenerating I made sure the PreferredJob attribute isn't required in the UIX page. When I then run the application again, I never see the JobTitle I select in any LOV allthough the PreferredJob field is selected when I select a Job in the PreferredJob LOV. The correct JobId now is stored in the database though.
    Has anyone ever encoutered this behaviour? Would anyone know how to get two LOVs based on the same table in one UIX page?
    Thanks in advance,
    Wouter van Reeven
    AMIS

    OK I figured it out. When I added the second Lookup ViewObject (PreferredJobs) no additional Association was created. Therefore, ADF BC wasn't able to figure out which field to update. When I added the Association between the PreferredJobs Lookup ViewObject and the Employees ViewObject everything started working ok.
    I then recreated my inital situation: one EntityObject for Jobs and one for Employees, now with two Associations between them. After modifying the Employees ViewObject and making sure the Jobs EntityObject was referred twice and via the corresponding Association, everything started working ok.
    Greets, Wouter
    AMIS

  • How to hide iviews based on the user groups?

    Hi,
    I have a custom role with workset, page and iviews.
    The page has 5 iviews.
    User group1 can see 5 iviews in the page.
    Now user group2 wants see only 3 iviews in the page (same role).
    Without creating another role for user group2, How can I hide the iviews based on the user group?
    Is this possible?
    Thanks
    Sundar

    Hi Sundar,
    I guess to achieve this, you have to set the permissions at iView level.
    For this, go to System Admin -> Permissions -> Portal Permissions. Now navigate to your iView using the folder structure, do right-click on the iView and click on Open Permissions.
    Search for the particular group and add that and assign the privileges accordingly. You can remove Everyone group from the iView .
    Hope this will solve your problem.
    Regards,
    Saurabh Mathur

  • Multiple repeating SubForms binding to the same data node

    Having multiple repeating SubForms binding to the same data node : In our documents, many times we need to display information from same table in multiple locations. For example, if document displays information of Insureds on one page and information of drivers on another page, we need to create a LiveCycle document with two SubForms. Each SubForm needs to have a repeating binding to CommonInsured element in XSD.  LiveCycle Designer is not able to handle such case. We cannot have two subforms bound to the same node, ONLY in a case where repeating option is selected for data binding.
    The only way I have found out is the following Javascript
    //Get the data node from XML. You will find the code for this function in //JavaHelperFunctions library.
    // InsuredDataRepeatingSubForm is a second subform.
    //You need to manually add instances to this subform at the
    //runtime and Insured data to each instance.
    var insuArray = JavaHelperFunctions.getInsureds();
        var i=0;
        for( i=0; i<insuArray.length; i++)
           if (i>0)
    var thesubform = this.InsuredDataRepeatingSubForm.instanceManager.addInstance(i);
                  thesubform.InsuredName.rawValue = insuArray[i].fullName.value;
           else
                   this.InsuredDataRepeatingSubForm.InsuredName.rawValue = insuArray[i].fullName.value;
    Is there any way I can achieve directly using bindings since we are trying to minimize javascript that changes the layout of the form?
    Thanks in advance!

    Unfortunately not. I've spent countless hours/days trying to do the same thing. You have to use code. The form consumes all the data it can into the repeating elements until there is none left and it is not reused.
    Here's a function I wrote just for that purpose. Feel free to use it:
    function loadData(source,target){
    target.setInstances(source.count);//set the target's subform instances to match the source's
    for (var a=0;a<source.count;a++){//loop through each subform instance
      var sourceSubform=source.resolveNode(source.name.substr(1)).all.item(a);
      var targetSubform=target.resolveNode(target.name.substr(1)).all.item(a);
      for (var b=0;b<sourceSubform.nodes.length;b++){//loop through the children of each
       if (sourceSubform.nodes.item(b).className=="field" && targetSubform.resolveNode(sourceSubform.nodes.item(b).name)!=null)//check for matching fields
        if (typeof(targetSubform.resolveNode(sourceSubform.nodes.item(b).name).value.exData)=="undefined" ||
         typeof(targetSubform.resolveNode(sourceSubform.nodes.item(b).name).value.exData.body)=="undefined")
         targetSubform.resolveNode(sourceSubform.nodes.item(b).name).rawValue=sourceSubform.nodes.item(b).rawValue;
        else
         targetSubform.resolveNode(sourceSubform.nodes.item(b).name).value.exData.loadXML(sourceSubform.nodes.item(b).value.exData.saveXML(),1,1);
       if (sourceSubform.nodes.item(b).className=="instanceManager" && targetSubform.resolveNode(sourceSubform.nodes.item(b).name)!=null)//check for matching subforms
        loadData(sourceSubform.nodes.item(b),targetSubform.resolveNode(sourceSubform.nodes.item(b).name));
    Just make sure the source and target subform hierarchies are identifal, same name and all. It will recurse down the tree and transfer source fields (rich text and plain) to their sister targets.
    Kyle

  • How can i select some row from multiple row in the same group of data

    I want to select some row from multiple row in the same group of data.
    ColumnA        
    Column B
    1                  OK
    1                   NG
    2                   NG
    2                          NG
    3                          OK
    3                          OK
    I want the row of group of
    ColumnA if  ColumnB contain even 'NG'
    row , select only one row which  Column B = 'NG'
    the result i want = 
    ColumnA         Column B
    1                         NG
    2                   NG
    3                          OK
    Thank you

    That's some awful explanation, but I think this is what you were driving at:
    DECLARE @forumTable TABLE (a INT, b CHAR(2))
    INSERT INTO @forumTable (a, b)
    VALUES
    (1, 'OK'),(1, 'NG'),
    (2, 'NG'),(2, 'NG'),
    (3, 'OK'),(3, 'OK')
    SELECT f.a, MIN(COALESCE(f2.b,f.b)) AS b
    FROM @forumTable f
    LEFT OUTER JOIN @forumTable f2
    ON f.a = f2.a
    AND f.b <> f2.b
    GROUP BY f.a

  • HT5463 Why is there not an option to allow texts from the same group of allowed callers in do not disturb mode? Seems like a no-brainer!

    Why is there not an option to allow texts from the same group of allowed callers in do not disturb mode? Seems like a no-brainer!

    www.apple.com/feedback

  • Query Performance Issue based on the same Multiprovider

    Hi All,
    I am facing a performance issue with one of the BEx Query 1 based on a particular Multiprovider.
    I have done all the kind of testing and came o a conclusion that the OLAP: Data Transfer time for the query is the max at around 820 Secs.
    The surprising part is another Query 2 based on the same multiprovider runs absolutely fine without any hassles with OLAP : Data Transfer time with merely 3 Sec.
    Another, surprise is that Query 2 has even more Restricted Key Figures and Calculated Key Figures but it runs smoothly.
    Both the queries use cache memory.
    Please suggest a solution to this.
    Thanks.

    Hi Rupesh,
    There is no much difference between the 2 queries.
    Query 1 - which has performance issue has the same filters as that of Query 2 - which is working fine.
    The only difference is that the selection of Fiscal Week is in the Default Values Pane for Query 2 whereas its in Characteristics Restrictions in Query 1. I doubt whether this setting will have any effect on the performance.
    Both restriction i.e Fiscal Week restriction is based on Customer exit and the rows include Hierarchy for both the queries.
    I assume creating aggregates on hierarchy for the Cube can be a solution.

  • HT1349 I just purchased an Iphone and love it except I'm surprised and annoyed that there is no way to create a group within contacts.  I coach a youth basketball team and routinely want to fire off a mass email or text to the same group. Am I missing som

    I just purchased an Iphone and love it except I'm surprised and annoyed that there is no way to create a group within contacts.  I coach a youth basketball team and routinely want to fire off a mass email or text to the same group. Am I missing something?

    When I click on my contacts icon on my phone there is a Groups choice in the upper left hand corner. Make sure you are in All Contacts and not a specific person.

  • How to send a group email, always to the same group?

    I am trying to send a group message on my Mail app on all devices , iMac and ipone, I have created a group on contacts but it only gives me the names and then I would have to choose each email.  I would like to send an email to the same group of emails, maybe just by tapoping the group name on my Mail app, Is this possible?  Thanks..

    You can't send an email from the Mail app to an address book group, I'm afraid. You will need an app to do that.
    Our MailShot Pro app is unique in helping you create special contacts in your address book that you can use directly from Mail and other compatible apps, as though the feature was built in. You can easily import an address book group into a MailShot group.
    A free version is also available to try, limited to smaller group sizes.
    Peter
    Soluble Apps
    Disclosure: as the developer of MailShot Pro, I may receive a benefit from its sale.

  • Make field in Material master mandatory based on the material group

    Hello all,
    I need to make the field "post to inspection flag" mandatory based on the material group while creating the Material master.
    I found options for making the field mandatory based on Material type,Industry sector and plant NOT based on the material group.
    Could anyone please provide suggestions on setting up the field as mandatory based on material group while creating material master
    Thanks,
    Sre

    Hi Sre,
    You can make Material Group field as Mandatory while Creating Material Master.
    SPRO>Log General>Material Master>Field Selection>Maintain Field Selection for Data Screens
    Select Screen # 48
    In the Field selection (Field Ref.) of (MARA - MAKTL) screen , Change the settings from Optional to Required Entry for T Codes MM01, MM02 or you can select the Material Type ;
    Please note this  by choosing this selection the fields of Profit Center and  Division will also become Mandatory.
    Hope this helps,
    Best regards
    Amit Bakshi

  • Two iterators based on the same view issue

    Hi
    I'm using jdev11.1.1.2
    My requirement is to have a view object as a form on the page (with next, previous, create/delete buttons)
    and to have a popup with the same view object as a readonly table (only for taking a look at a table representation of the view)
    So we have iterator A , that the form is based on it, and Iterator B that the table is based on it- both iterators based on the same view object.
    My problem is that if I popup the table and enter some filter there (my table is filterable) this filter is applied to the form also. I wont these two iterrators not to interfere with one another.
    What is the bast way to do that ?
    Thanks
    a.gruev

    Since you have same view object changes in 1 iterrator will also change the other.
    You would need 2 view objects to do that.

  • How to group some objects  and  duplicate it and then enlarge the same group using javascript ??

    Hi everyone,
    I need to write a javascript which will group some object on running the script and then duplcate the same group.After duplicating it will enlarge the same group upto some extend.The object will be generally inside the textframes.We have to group them and then make a duplcate of the group on the same page.Please tell me the javascript code to do the same.
    Thanks and regards,
    Sanat

    Thanks a lot jongware..now its selecting the objects correctly but i m struck with adding the selected objects  to the group and duplicating the  same group.<br />I tried the follwing code but it didnot work.<br /><br />main();<br /><br />function main(){<br />     if (app.documents.length != 0){<br />          if (app.selection.length > 0){<br />               <br />               var myObjectList = new Array; <br />                        var myObjectList = new Array; <br />for (i=0; i<app.selection.length; i++) <br />     myObjectList.push (app.selection[i]); <br /><br />alert ("length of myObjectList is "+myObjectList.length);<br /><br />var myGroup =app.documents.groups.add(myObjectList); <br /><br />var myGroup1=myGroup.duplicate(myObjectList1,myObjectList1);<br /><br />                    }<br />               }<br />          }<br />     <br />I know i m asking silly questions but i m a begginer to this scripting and want to learn more.Please guide me with the proper code to do so.<br /><br />Thanks,<br />Sanat

  • Why are on the first web page buttons are shaped and following pages don´t? All Pages are based on the same Masterpage.

    Hello,
    I´ve a Problem with Muse.
    Why are on the first web page buttons are shaped and following pages don´t? All Pages are based on the same Masterpage.
    Any ideas?
    Stefan

    I just republished the site, and it looks fine, energievollfit | über
    could you please try to republish the site again, and let me know .

Maybe you are looking for

  • OS 10.4.4, iLife 6 and Background images issue

    I upgraded my Mac from 10.4.3 to 10.4.4 (with Automatic Updates) and the same day purchased and installed the iLife 6.0 package (that updated the 5.x version that came with my Mac). A day or 2 later I decided to change the background photos on my dis

  • Acrobat 9 Pro with Windows 8

    I use Acrobat 9 Pro, and I just installed it on a new laptop with the Windows 8 OS.  I'm having 2 problems and hope someone can help:  a)  Acrobat stalls - perhaps 20-30 seconds - when I attempt to open or close a document, then it works fine for a f

  • Capturing dvd's

    What is the best way to go about capturing dvd footage?

  • Why does Safari crash?

    Why does Safari crash on my internal start-up disk and not on a booted SuperDuper external disk? Safari started behaving weird with very high CPU usage, then it refused to start up altogether, it doesn't even reach the safari icon when it crashes. Di

  • Soundbooth won't let me save!

    I have an 87 minute audio project (no video) open, that I have worked on for the past 2 days.  I am trying to save it, but I get a message that says "Forecast of the temporary and final space required to save the sound document indicate there will be