How to get a Sum of rows, when i use the property max. rows p. page ?

Hi all.
I've got a query and get a lot of rows (amounts) back.
Now i want to have max. 21 rows per page.
So, first i used the property "max. rows p. page"=21.
But i want a have Sum-Field p.page too, which shows the sum of the amount p. page at a >fixed place (bottom, left) at the page.
this didnt work well....
Because when i have 30 rows, then the sum will shown at the second page (because the sum-field its after the repeating frame).
...Now i forgot the property and placed a function and two placeholder in the query like this:
Function:
:cp_row:=:cp_row +1;
if (mod (:cp_row,21)=0)) then :CP_pagenr:=:CP_pagenr+1;
Placeholders: cp_row, cp_pagenr
Now i want to use :CP_pagenr to change the group - but Report Builder says: I cant... because placeholder are not allowed to change a group.
So.. perhaps anyone can give me a hint how i can do this ?
Thanks a lot...

hello.
that sound to me as you wanted a running total. check out the metalink knwoledge base and search for running total and you will find a note on how to do that.
regards,
the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • I have lost sound on my iPad in apps unless I use headphones ,does anyone know how to get sound back without them .I have used the mute volume on the bar at bottom of screen and the slider volume control there only shows when headphones are plugged in !

    I have lost sound on my iPad in apps unless I use headphones ,does anyone know how to get sound back without them .I have used the mute volume on the bar at bottom of screen and the slider volume control there only shows when headphones are plugged in !
    I also tried resetting settings all to no avail ...I looked up some advice and watched utube video advice on how to fix without success..
    The volume control button on side does not work ,I got the iPad last August and wonder if it is a fault that means I must return it for replacement from where it was purchased ?

    The Retrospect you used way back when is no longer around. The company was sold and that company produced a new version of Retrospect - Retrospect 8.x
    So, as you've been told, you would have to be running a Tiger system with an old version of Retrospect software (5.x or 6.x - you would need to know) assuming you can find the software.
    As best I can remember you cannot extract files from a Retrospect backup except using the software since Retrospect did not normally make a file by file backup rather it created an archive of the files in the backup. I'm assuming that the EMC/Retrospect people have told you that old Retrospect backups are not accessible by Retrospect 8.x?

  • I seem to be getting a slightly blurred image when I use the iPhoto tools

    When I use the edit to adjust my photos the initial photo starts out slightly blurry. has anyone else noticed this? after closing out the edit the picture sharpes up back to normal.

    Are you referring to iPhoto on your Mac?  If so what version of iPhoto and system are you running?
    OT

  • How to get credit for a Charge when not got the itrms

    How to get a credit note when charged from the credit card even not received the goods I.e bought keys for Farmville 2  with 17.99 but did not get the keys.

    If you've been charged but haven't received the items then try the 'report a problem' link to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I'm unable to access my yahoo email account using updated firefox browser, i keep getting error page when I use the mail link on yahoo pages

    Since updating Firefox browser, i am unable to gain access to my yahoo email account. I can access the email with Interent Explorer with no trouble. Whenever I click on a mail link on the yahoo sites to check my mail, I get rerouted to an error page ..... "Sorry, we can't find "ca.mg4.mail.yahoo.com/dc/launch?.gx=1". Please check the spelling of the web address." is what is said at top of page whenever I click on any mail links.

    This is how I fixed it on my new iPhone 5S. Using the standard yahoo setting on my phone.
    You will have to access  "managing your app passwords" on your account profile for yahoo. Generate password for your app. For example: "My iPhone 5S'
    Go to your Iphone and set up your yahoo mail account on your phone the normal way and you have to use the generated password.  instead of the yahoo account password.
    source:
    http://virtualizeme.net/iphone-5-yahoo-mail-server-unavailable-fix/
    I hope this helps,
    cheers

  • What do I get interference from my iphone when Im using  the landphone

    Recently Im getting alot of interference form my iphone when I use my land line - why would this be?

    Assuming you're talking about a cordless phone, possibly because it's using the same frequency range as your wifi network, or just because it's a poor quality cordless phone...

  • I am trying to reinstall Flash CS4 professional as the action script is not working but now I am getting an error: 2 message when I use the original CD to try and reinstall

    I can't get the original disk to work on a reinstall.  I get the message
    AdobeColorCommonSetRGB
    Error:
    Error 2.
    I teach a class using this program on Macintosh computers running 10.9.5 and the action script is not working.  It will work on any program designed using the 10.8 but if you design any animation on 10.9.5 the action script will not work for the buttons

    You would have to manually delete the color profiles in question... Run the cleaner tool and see if it gets you started.
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

  • How to: Get a list of mail users by using the Exchange Management Shell

    Hello every one, quick question: When I run this code below for VB, how will I see the results of the program? Is there anyway I can make the results appear in a message box?
    Function GetUsersUsingBasicAuth( _
        ByVal LiveIDConnectionUri
    As String, ByVal ScehmaUri
    As String, _
        ByVal Credentials
    As PSCredential, ByVal
    Count As Integer)
    As Collection(Of PSObject)
        Dim ConnectionInfo
    As WSManConnectionInfo = _
            New WSManConnectionInfo(New Uri(LiveIDConnectionUri), ScehmaUri, Credentials)
        ConnectionInfo.AuthenticationMechanism = AuthenticationMechanism.Basic
        Dim RemoteRunspace
    As Runspace
        RemoteRunspace = RunspaceFactory.CreateRunspace(ConnectionInfo)
        Return GetUserInformation(Count, RemoteRunspace)
      End Function
    Function GetUserInformation(ByVal
    Count As
    Integer, ByVal RemoteRunspace
    As Runspace) As Collection(Of PSObject)
        Dim RemotePowerShell
    As PowerShell = PowerShell.Create
        RemotePowerShell.AddCommand("Get-Users")
        RemotePowerShell.AddParameter("ResultSize",
    Count)
        ' Open the remote runspace on the server.
        RemoteRunspace.Open()
        ' Associate the runspace with the Exchange Management Shell.
        RemotePowerShell.Runspace = RemoteRunspace
        ' Invoke the Exchange Management Shell to run the command.
        Return RemotePowerShell.Invoke
    End Function

    All you need to do is enumerate through the Collection returned eg
    Dim commandResults As Collection(Of PSObject)
    commandResults = RemotePowerShell.Invoke()
    For Each obj As PSObject In commandResults
    MessageBox.Show(obj.Properties("DisplayName").Value.ToString())
    Next
    Cheers
    Glen

  • Firefox stops working when I use the password manager on certain pages

    Hey.
    When I visit certain pages, Firefox will consistently crash. One of these pages for example is:
    betabrand.com
    The moment the password manager window jumps up, the window hangs and Firefox stops. It also happens randomly on other pages including
    gmail.com
    Sometimes, though not always, a script error will appear that says that googletag has stopped working. I don't know what that is and have tried debugging, stopping the script and just continuing. No real effect. Firefox still crashes after trying each in turn.
    Firefox will also crash if I try to access the options window.
    I have tried:
    1. uninstalling firefox and reinstalling fresh. No result.
    2. disabling all addons (addons I use are: addblock plus 2.6.5 - Clean Links 2.6.1.0 - Myibidder 1.3.7 and Web Of Trust 20131118). Firefox will function without crashing once I do this but I cannot identify whcih addon is causing the problem because it functions well on each occassion when I cycle through and disable them one by one.
    My system specs are:
    i7 @ 3.4g
    4gig ram
    Win7 32
    FF crashed while terying to install the troubleshooter addon.
    Thanks for any help.

    Do you have an ad blocker, firewall, or antivirus installed that may be blocking the google tag?
    [http://www.google.com/tagmanager/]
    We're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste that into the "Post a Reply" box. (Please don't take a screenshot of your crashes, just copy and paste the ID's. The below image is just an example of what your Firefox screen should look like)
    [[Image:aboutcrashesFx29|width=520]]
    <br><br>
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

  • When i downloaded the lion front row dissapeared how do i get it back?

    when i downloaded the lion front row dissapeared how do i get it back?

    after I downloaded Mac Lion I lost...: Apple Support Communities
    How do I restore front row application?: Apple Support Communities

  • When I use the shortcut to open a new window in safari (command N), I get a 404 error message from Google. How do I change where 'Command N' routes to?

    When I use the shortcut to open a new window in safari (command N) on my Macbook Pro, I get a 404 error message from Google. How do I change where 'Command N' routes to? 

    It's not necessary to change the Command N keystroke..
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • I share a macbook with my other half and we both use it for our iphones. When syncing using the new software I now have all of her and my contacts on my phone.  I don't want her contacts! How do I get rid?

    I share a macbook with my other half and we both use it for our iphones. When syncing using the new software I now have all of her and my contacts on my phone.  I don't want her contacts! How do I get rid?

    Hi,
    You have 2 solutions:
    1 - You can use 2 differents icloud account
    2 - You use the same account but you don't sync yours contacts.
    You configure that in  Settings > icloud
    You activate or desactivate what you want.
    Have a nice day.

  • How to get a Tree Node Value when a Tree is Expanded

    My reqiurement is when i Expand a Tree i need the Expanded tree Node Value. For Example Consider Parent as a Root Node of a Tree, and Consider its two Children Child1 and Child2.
    When + Parent Expanded
    I will Get the Output as --Parent
    - Child1
    - Child2
    so As when i expand the Tree i must Get the String Value Parent.

    duplicate
    How to get a Tree Node Value when a Tree is Expanded

  • How can you get your ipod touch open when you forgot the password and its disabled and not connected to wifi

    How can you get your iPod touch open when you forgot the password and its disabled and not connected to the Internet Connection and you don't want to reset it.

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Forgot passcode or device disabled
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:                                                             
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:                         
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • I hit Forget Network and now cannot get back onto my wireless home network. All of my other computers and iphones are fine.  How do I get the network back?  It shows in my list of networks but when I use the password and try to join it says not connected.

    I hit Forget Network and now cannot get back onto my wireless home network. All of my other computers and iphones are fine.  How do I get the network back?  It shows in my list of networks but when I use the password and try to join it says not connected.

    See if the iPad will accept the password after you restart it. It's worth a try.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    You could also try a reset as well.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

Maybe you are looking for