RSUM : how to reset the sum ?

Hello,
I created a colum, based on the following formula : RSUM(sales), that I want to compare to another colums : RSUM(Target).
Then, I want to compare the values and their evolutions month by month. Therefore, I display the following data :
- Company
- Salesman
- RSUM(Sales)
- RSUM(Target)
For the first salesman, it works. But then, the sum doesn't reset, and the next salesman starts with a wrong number.
I haven't found any solutions to force the reset of the RSUM salesman by salesman. I saw an option in pivot table (Show as running Sum). It works for the number, but not for the graph !
Is there a solution for this problem ?
Thanks

hello
I also have an issue with this running sum. The only difference is that inside the report we use a column selector.
So defining the column fixed with the rsum (x by y) is not possible (as far as I know).
Does that mean that I have to define the measure in the RPD as RSUM over all lowest levels of the different dimensions and that OBI will generate the correct query if I select only 2 or 3 of the 12 dimensions?
Or are there any other methods to handle this?
Koen Verheyen

Similar Messages

  • The HP C4480 all in one series PRINTER that I got free with my i-Mac is printing TINY print despite that my computer is set at 13 font Helvetica. How to reset the printer to normal print?

    The HP C4480 all in one series PRINTER that I got free with my i-Mac is printing TINY print despite that my computer is set at 13 font Helvetica. How to reset the printer to normal print?

    Is the Paper Size: set to US Letter and Scale: set to 100%
    Dennis

  • Does anyone know how to reset the fan on a MacBook Pro 13-inch (Late 2011) to it's factory setting speed (Maybe Terminal may help?)

    I have a late-2011 13-inch MacBook Pro running OS X Yosemite. (Standard configuration).
    My problem is that I downloaded a fan control application and it worked perfectly, but it started to get annoying so I deleted it.
    Does anyone know how to reset the fan speed back to factory settings (Maybe a command in terminal?)

    Hello damo1177,
    It should help to reset your system's SMC and NVRAM.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    About NVRAM and PRAM
    http://support.apple.com/kb/HT1379
    Cheers,
    Allen

  • How to reset the password in macbook Pro? This is not related to apple id

    Hi,
    I gave my macbook pro for service. Initially there was no password set up in the system. However the service guys have put some password to install the applications. (This is not related to apple id and apple store apps). Can you please help how to reset the password?
    Regards,
    Arjun K M

    Welcome to Apple Support Communities
    As you have OS X Mountain Lion, try resetting the password from Recovery > http://discussions.apple.com/docs/DOC-4101
    It looks like OS X was reinstalled. After resetting the password, you will be able to log in and use your MacBook Pro

  • How to reset the iPad - the Location Services doesn't seem to work?

    How to reset the iPad - the Location Services doesn't seem to work?
    I can not get NFL Game Pass or Siri to work???

    Well you can plug it into itunes and under summary tab hit RESTORE. This should fix any software issues that you may be experiencing. About gamepass, I dont know, I dont have it. Siri is not on the IPAD2. Only on the 3rd generation Ipad, so you wont have it(going by ipad2 under your name).

  • How to Reset the EIM \ CIM System "sa" Password Procedure

    All.
    I have posted a document, "How to Reset the EIM \ CIM System "sa" Password Procedure" on this CSC site to assist you w\ the EIM "sa"user password reset procedure.
    I am also posting the procedure and word document attachment here.
    Let me know how helpful the procedure is.
    Bernard
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman";
    mso-ansi-language:#0400;
    mso-fareast-language:#0400;
    mso-bidi-language:#0400;}
    Resetting The CIM \ EIM System “sa” Password Procedure
    Key: ‘ ‘ = Two single quotes.
    The following contain the query for blanking out the SA password for Partition 0 thru the backend.
    1. Go to SQL Server Management Studio and change the database to master database. USE “eGMasterDB”
    2. a. To verify user_name, and select user_id“save the results for backup.
        b. “SELECT user_id, user_name, password, case_insensitive_password FROM egpl_user WHERE user_id = 1”.
    Note: Be sure to save query and results, so that it can be provided for troubleshooting, if there is a problem.
    3. a. For Blanking out the SA password. UPDATE egpl_user WITH (ROWLOCK) SET password = ‘ ‘, case_insensitive_password = ‘ ‘ WHERE user_id = 1
    4. Verify the PW columns are now clear, by re-running the select cmd. “SELECT user_id, user_name, password, case_insensitive_password FROM egpl_user WHERE user_id = 1”.
    Then to successfully access and change CIM \ EIM “sa” User Account. (Partition 0)
    4. Go to login.  //<EIM server ip address>/system/
    5. Login with “sa” as the user name, no password.
    6. Navigate to Administration > Partition: System > Users, and highlight sa user under “List: Users”.
    7. Highlight the “Password” row, on the “General” tab, under “Properties: sa”.
    8. Select the box to the right of row and it will ask if you want to change the password.
    9. Select yes, enter new password.
    10. Save.

    It's great to have these types of procedures published on CSC!  Thanks, Bernard!
    -Paulo

  • How to reset the response status and response header

    Dear Masters
    Actually we are using NTLM Authentication process to get the system login id for our web application. The problem which I am getting is after running the NTLM Authentication Code I am not able to call the action class. It is telling 400 Server error bad request. I am using Struts Dispatch Action Class. In Dispatch Action I will be passing a name (eg. method) as a parameter in struts-config.xml file and using that parameter I will be calling the respective method in the Action class. The problem which I am facing is after running the authentication code I am not able to fire the action class. It is telling the error in the console as "parameter named method is not found". Actually in NTLM Authentication code they are setiing the response status to www-authenticate,NTLM. If I reset the response status back to the normal form I think i will be able to fire the action class. Please give me a suggestion on how to reset the response status and response header back to the normal form. Any solution to this is appreciated. Please respond your reply as soon as possible. Thanks in advance.
    Regards
    Ramesh

    Hi,
    I think, a servlet filter is what you need. Please check the following URLs on how to go about creating a filter.
    http://dev2dev.bea.com/pub/a/2005/05/decorators.html
    http://www.onjava.com/pub/a/onjava/2003/11/19/filters.html
    http://www.onjava.com/pub/a/onjava/2004/03/03/filters.html?page=1
    Cheers,
    vidyut

  • How to reset the military usage value in GTS Business partner

    Hello Experts,
    Does anyone know how to reset the Military usage value='2' to blank on the Business partner within GTS?
    I tried putting a blank there, clicking on the accept entries button followed by  saving the Business partner.
    It does not seem to work this way.
    Does anyone know if it's SAP bug for not having blank as one of the allowable values for the usage except when it's that way while newly created?
    The GTS implementation details are as follows:
    Any help with regard to this will be much appreciated......
    Thanks,
    Prashant.

    Prashant,
    As I already informed you, it is not possible to re-set the indicator to <blank>.
    From the program code, I can see that the usage indicator is only transferred from the feeder system during the creation of a customer partner.  The value in GTS is set either to '1' or '2' during creation, and cannot be changed by any subsequent data transfer from the feeder system.
    I think that logic is related to the fact that usage records may be created for multiple Legal Regulations, and those records may then be changed individually by the user in GTS.  On that basis, it would not be reasonable to over-write the values by re-transferring the customer from the feeder system.
    Regards,
    Dave

  • My ipad2 is disabled and my power button is not working, how to reset the passcode?

    My ipad2 is disabled and my power button is not working, how to reset the passcode?

    Hi, there is no fix for this unfortunately. However you can plug your iPad into iTunes and providing you have made a backup, you can restore from it
    you say its disabled, what does the message on the screen say?

  • How to reset the default window size

    Hi!
    I played around with the different layouts of Adobe Connect Pro and somehow got a real chaos of window sizes and window positions when changing the resolution as well. How can I reset the layout to the default layout settings (window size, window position, which window should appear)? At this moment I cannot move a windows because it's too big to move or resize it.
    Is there a possibility to undo these changes?
    Thank you!
    Best regards,
    Thomas

    Does anyone know how to reset the meeting layout during a running meeting?

  • HT2101 I can't find the keyboard by using iMessage, but I can by using email or whatsapp? How I reset the keyboard on iMessage?

    I can't find the keyboard by using iMessage, but I can by using email or whatsapp? How I reset the keyboard on iMessage?

    Did you tap in the box at the bottom of iMessage?
    If you did and no keyboard is showing: Do a reset
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data
    If that didn't helped, double tap Home button, delete the Message app and reset again.

  • How to reset the router?

    I tryed to secure the router with the easy-link program and i want to reset the whole thing.Also if anyone know how to reset the netowrk setup from the control panel that would be great too.

    What router are you using?
    To reset your router to factory defaults, use the following procedure:
    1) Power down all computers, the router, and the modem, and unplug them from the wall.
    2) Disconnect all wires from the router.
    3) Power up the router and allow it to fully boot (1-2 minutes).
    4) Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5) Power down the router.
    6) Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7) Power up the router and allow it to fully boot (1-2 minutes).
    8) Power up the computer (if the computer has a wireless card, make sure it is off).
    9) Try to ping the router. To do this, click the "Start" button > All Programs > Accessories > Command Prompt. A black DOS box will appear. Enter the following: "ping 192.168.1.1" (no quotes), and hit the Enter key. You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out." If you see "Reply from ...", your computer has found your router.
    10) Open your browser and point it to 192.168.1.1. This will take you to your router's login page. Leave the user name blank (note: some routers have a user name of "admin" ), and in the password field, enter "admin" (with no quotes). This will take you to your router setup page. Note the version number of your firmware (usually listed near upper right corner of screen). Exit your browser.
    If you get this far without problems, try the setup disk (or setup the router manually, if you prefer), and see if you can get your router setup and working.
    If you cannot get "Reply from ..." in step 9 above, your router is dead.
    If you get a reply in step 9, but cannot complete step 10, then either your router is dead or the firmware is corrupt. In this case, use the Linksys tftp.exe program to try to reload your router with the latest firmware. After reloading the firmware, repeat the above procedure starting with step 1.
    If you need additional help, please state your ISP, the make and model of your modem, your router's firmware version, and the results of steps 9 and 10. Also, if you get any error messages, copy them exactly and report back.
    Please let me know how things turn out for you.

  • HOw to reset the buffers

    Hi Firends
    When i am in T-code ST02 all buffers and swap space is overflow how to reset the buffers without restart the instance
    Regards
    Vishal

    Hi!
    Write the following string into your sap transaction field: /$sync
    This will reset all buffers.
    Regards
    Tamá

  • How to reset the data when the session lost?

    When I use response.sendRedirect("http://localhost:82/main.jsp")
    the session lost, because the URL before redirect is using SSL,
    "https://localhost:81/index.jsp", they use the different port,
    so the session lost, what should i do to prevent this? And how
    to reset the data?

    Create a HashMap and store it as an attribute of the servlet context. In the first servlet assign the user a key and store all session data in the HashMap under that key (use a vector, collection or user defined class).
    In the response.sendRedirect call add the key to the url:
    response.sendRedirect(url + "?key=" + userKey);
    In the second servlet get the key (request.getParameter("key")), retrieve the session data from the HashMap in the servletcontext and store in an httpsession.
    Remember to delete the entry from the HashMap so it doesn't become overly large.

  • How to reset the JSF Portlet session state in weblogic portal 10.3

    Hi All,
    We are implementing our application with the jsf1.2 with 10.3.0 portal framework.
    in a tab i placed my jsf portlet, it will navigate up to 4 pages. We do have some other tabs too in our application. So when i navigate to other tabs and when i comeback to the jsf portlet tab i am resetting the portlet state to first page by onDeactivation portal event.
    But the problem when the user within the tab and navigate to pages if he clicks again the tab it is not redirecting to start page.
    I know we do have refresh action in our pageflows .. but how to reset the jsf portlet to start page when it is not deactivating. Please do help me..
    Thanks in advance...
    Edited by: Siddu4u on Oct 10, 2011 8:33 PM

    Hello,
    This documentation should help you to use the import tool in the Portal Admin Console:
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14245/deployment.htm#i1047336
    Kevin

Maybe you are looking for

  • Quotation marks display as &quot in web pages, I'm using Unicode UTF-8 character encoding.

    On many web pages, where a quotation mark character should appear, instead the page displays the text &quot. I believe this happens with other punctuation characters as well such as apostrophes although the text displayed in these other cases is diff

  • Re-syncs same 4000 items every time I open Itunes....

    I am having this issue every time I open itunes. There are about 4000 items that sync every time I open itunes. They are the same songs and podcasts. Why won't these items just stay on the ATV? Also, I have songs in my itunes library that I transfere

  • Synching my calendar to transfer the data

    I don't synch regularly and I performed a synch with Windows mobile software, which it said was succesful.  I can't figure out where my calendar file is from my Palm  is saved, can anyone help me figure that out?  Obviously I'm not very tech savvy. 

  • Logs for Cluster Synchronization Service daemon

    ORA-29746: Cluster Synchronization Service is being shut down. Cause: The administrator has shut down the Cluster Synchronization Service daemon. This error message is intended to be informative to users on the status of the service. Action: Check th

  • Illustrator CS2 - can't open ANY .ai files

    I am receiving the following error message when opening any Illustrator .ai files.    I can create one, close it and attempt to re-open and receive this message.  I am using Illustrator CS2. Can't open the illustration.   The illustration does not ha