Currency in report taken from regional setting and not infocube

Dear All,
I am facing very strange issue. I am using BEx analyzer 7.0
I executed a report in Windows 2000, Excel 2003. The values are displayed correctly with currency which is in cube irrespective of the currency set in regional option in control panel.
We are doing testing on windows vista and excel 2007 as we will upgrade to SAP GUI 7.10 and windows vista. I executed the report and the result values are matching but the currency is differant. The currency is taken from the regional settings in control panel. If I go to regional setting and change the currency, the report which is open in BEx analyzer changes the currency.
We are facing this strange issue for only queries on 1 infocube. Other queries on another infocubes/multicubes are working fine.
Has anyone faced the same issue. Please provide some pointers/solutions for above issue.
Regards,
Niraj

Hi Shalu
The Library 0FL has 4 currencies... i.e.
HSL  - Local Currency  
TSL   - Transaction Curre
KSL  - Second Currency 
OSL  - Third Currency  
Go to GRR2 (Report form of your report), and double click on any column... You choose Key Figures in the Columns in a areport painter report... there you would have chosen any one of these currencies...
Right click on the column and Copy it and paste it... Now change the Key Figure of the copied column to the one you desire...
This should give you values in both currency...
To identify which form you have used in GRR2 - Execute your report and go to Extras Menu > Technical Information.. In the pop up window that opens, double click on field "Report".
Regards
Ajay M

Similar Messages

  • How do I remove one failing hard drive from raid set and replace with new one

    Last Friday apparently one of my raid drives started failing.
    As I mentioned on this forum I started getting continous beeping.
    I was finally able to get the raid working at a degraded level.  I ordered a replacement hard drive which is arriving today.
    (In the meantime I made twice daily backups of my work.....)
    Below was the message I got from the browser based raid software:
    Blahblah 09    1000.2GB   RaidSet Member SamSung HD103SJ
    Blahblah 10    1000.2GB     Free                 SamSung HD103SJ
    Blahblah 11    1000.2GB   RaidSet Member SamSung HD103SJ
    Blahblah 12    1000.2GB   RaidSet Member SamSung HD103SJ
    (See this earlier thread if you wish!)
    http://forums.adobe.com/thread/727867?tstart=0
    At one point when I did the checked the browser interface I saw the message Failed and Degraded
    As I said, I was able to work over the weekend on the degraded system.
    This morning I got the beeping again and did the rescue and now I am running a "full raid" without the notice that one raid was "Free".
    In any case, the new hard drive is arriving today.
    What steps should I take to incorporate the new drive into the raid system.
    I have one OS drive
    and 4 tb raid drives.   One needs to be replaced with the new one that I am getting today.
    Thanks
    Rowby

    Harm,
    Regarding your comment:
    Re: How do I remove one failing hard drive from raid set and replace with new one
    Please tell me how to read the serial number from an individual drive rather easily, without un-installing them:
    If you select the proper drive to change out, you only need to remove one drive and look at its serial number...
    Step 1: Identify bad drive serial number using Areca's tools
    Step 2: Turn off the computer
    Step 3: Remove what you think is the bad drive based on following your numbered cable method, marked hot-swap bays, whatever
    Step 4: Verify that the serial number matches the "bad drive" serial number from step 1; if it does great, proceed; if it does not match, go back to step 3
    Step 5: Change out the CORRECT drive - that's the bottom line for this whole procedure
    Cheers,
    Jim

  • Discoverer report - Output from Discoverer plus is not the same as Discoverer desktop

    As a part of Upgrade project we are migrating the discoverer reports from 11i (11.5.10.2) to R12 (12.1.3) .After migrating to R12, for a custom discoverer report the output given by discoverer desktop is correct (24 rows for a scenario). But the report output from Discoverer plus does not show the credit transactions (2 rows). The output from Discoverer plus shows only 22 rows (24 - 2), which is incorrect. The query is the same in Discoverer desktop and Discoverer plus.
    Please let me know why these transactions that are appearing when the report is run from discoverer desktop are not appearing in discoverer plus. Is there any setup in discoverer plus for this?
    Regards,
    Brajesh

    Pretty hard to answer a question like this.  Best bet would be to copy the existing discoverer plus book and start removing conditions, fields, etc until those two rows from desktop show up and see if you can work it out. 

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • HT201317 My photos taken from my iPhone are not appearing in my iCloud account

    My photos taken from my iPhone are not appearing in my iCloud account home page. In fact there isn't even a photo icon on my iCloud homepage. In the settings section of my iphone, I have the Photo Stream turned to "on" within the iCloud setting so i'm not sure what the problem is. Any thoughts?

    Everything is fine, because there is no web application for photos at the moment. These are the options to view your Photo Stream:
    -On your iPhone, iPad or iPod touch, your photos will appear in the Photos app in the Photo Stream album.
    -On your Mac, they appear in the Photo Stream view in iPhoto or Aperture.
    -On a PC, your photos download to the Photo Stream download folder. By default, this folder is located at C:\Users\Apple\Pictures\Photo Stream\My Photo Stream. You can change this location by visiting Photo Stream Options in the iCloud Control Panel for Windows.
    -On Apple TV, your photos will appear in the Photo Stream view under Internet in the main Apple TV menu after you sign in with your iCloud account.

  • ER Contribution should not Deduct from EE SAL and not Display in Payslip.

    Hi Experts,
    I  have Pension ER contribution Wage type:
    1. That should not deduct from Employee SAL
    2. Should not display in Payslip.
    3. Amount store in RT.
    What changes i should do in V_T512W_D table
    Appreciate your early response.
    Regards
    Raj

    Hi,
    We are maintaining the EE & ER contribution.
    EE is working fine with all the validation & deducting from employee every month.
    When we are handling ER contribution that amount is getting deducted from EE sal.
    So we want to restrict ER contribution Deducting from employee sal and not to display in Payslip.
    Figuring out how can we handle this thru Processing, Cumulating or Evaluation class.
    Kindly advise
    Regards
    Raj

  • How to delete email from iPhone ONLY and not from server?

    Hi. I have a Yahoo! POP mail account.. Can anyone advise me how to setup my iPhone so it ONLY deletes email from the iPhone and NOT the server. So, after I read an email on the iPhone and delete it, the email remains in the INBOX on the server? If not, I will send a feedback to Apple. BTW - I can dl and send email just fine. Thank you.

    ampullae,
    When you setup Yahoo on the iPhone it defaults to IMAP because Yahoo offers free IMAP Push for iPhone users, as discussed in this article:
    http://docs.info.apple.com/article.html?artnum=305882
    If you add your Yahoo account as "other" it will be setup as POP.
    With IMAP messages are stored on the server, and messages created in one email client, such as the iPhone, show up in the sent mailbox on both. In addition messages moved to a different folder on the iPhone, will be in a different folder when you access your Yahoo mail via a web browser or another IMAP client. Likewise message you delete, will also be synchronized and deleted.
    Hope this helps,
    Nathan C.

  • When I send a text to another phone, it shows up on the other phone as coming from email address and not from phone number.

    I just came over from Sprint 4 days ago and had my number ported over. When I send a text to another number, it shows up on the other phone as coming from email address and not my phone number. For example, if the recipient of the text has me in the contacts as "Tom", the text comes to them displaying my email address instead of "Tom".

        cfm007,
    Welcome to our family. We want you to be able to enjoy all the services we provide and we definitely need to address this. Do you receive/make calls without problems? Are you able to receive messages with your contacts' number? Are you using iMessages? If so, go to Settings>Messages>Send&Receive>only your phone number should be enabled.
    AdaS_VZW
    Follow us on Twitter at @VZWSupport 

  • I tried to reset my Iphone 5 from the phone and not a computer.  I have had a blank screen with the apple logo and a full progress bar for over an hour.  I cant turn my phone off because the button on top is not working.

    I tried to reset my iphone 5 from the phone and not a computer.  I have had a blank screen with the apple logo and a full progress bar.  I can not get my phone to restart.  What can I do?

    Sorry i meant iOs5 to ios 5.0.1

  • I have lost my contact from iphone 5 and not able to retrieve the data, however  it reflects old contacts are reflected with Whats app messages

    i have lost my contact from iphone 5 and not able to retrieve the data, however  it reflects old contacts are reflected with Whats app messages

    WWhat are you syncing your contacts with? A supported application on the computer or cloud service? They should still be there.

  • Why is the stub generated from the implementation and not the interface?

    Why is the stub generated from the implementation and not the interface?

    Because if a remote server object implements multiple remote interfaces, its stub must implement all the same remote interfaces. The only way to know which interfaces to implement is to examine the server object class.

  • Can't connect to my iCloud account - not from my Mac's, not from my Phone and not from my iPad. Any known problems right now/Eric

    can't connect to my iCloud account - not from my Mac's, not from my Phone and not from my iPad. Worked earlier today, but not now. Any known problems right now/Eric

    Seems to be a major problem, according to MacRumours. Just have to wait, I guess...

  • Why can I print from my iPhone and not my iPad? I have been able to do it in the past and have tried a hard reset but it can no longer find the printer.

    Why can I print from my iPhone and not my iPad? I have been able to do it in the past. I have tried a hard reset but it still cannot find the printer.

    In addition to rebooting the router and the iPad, I would reset the printer as well. Unplug the printer from power and do the same with the router. Leave the router unplugged for about 30 seconds. Plug the router in first and let it totally start up, plug the printer in again, and then reboot/reset the iPad.
    Reboot 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 if it appears on the screen - let go of the buttons. Let the iPad start up.
    If that doesn't work, you can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. Your WiFi passwords, location services, device preferences all have to be re-entered. You will not lose any data or media whatsoever.

  • How do I get my messages when sent from my computer to be sent from my number and not email?

    When I send a message from my computer, the person I'm sending it to receives it from my email and not my phone number. How can I change that so that it is always sent from my number?

    Let's back up a step.
    Do you have an iPhone?
    http://support.apple.com/kb/HT5538
    Matt

  • How do I delete an account from my Mac and not change the itouch?

    how do I delete an account from my Mac and not change the itouch?

    What does this mean: "I don' t have an image"?
    If you are in the Mail app yo can just delect the message and select delete. See chapter 12 of the users guide
    iPod touch User Guide iOS 6

Maybe you are looking for

  • Why can i not obtain the same zoom levels in googlemaps as i do on chrome

    I use both Firefox and google chrome browsers for varying reasons..when i use googlemaps in Firefox it will only let me zoom in to a level of 18 before i get a default message about not being able to zoom in to a deeper level However.....on the very

  • Epson All-in-One can no longer scan.

    I own two different Epson All-in-One printers that worked perfectly fine for Wi-Fi scanning.  Now, they do not appear anywhere as a scanner.  I have ensured all software and drivers are current.

  • XML parser memory usage

    I try to proove the advantage of SAX (and StAX) parser, i.e. the memory usage over time is very low and quite constant over time while parsing a large XML file. DOM APIs create a DOM that is stored in the memory and therefore the memory usage is at l

  • 833 of my songs i purchased are gone off of itunes

    833 of my songs I purchased are not to be found on iTunes they are just gone

  • New firmware for Canon 5D Mark 3 and 1DX

    Looking to see the improvement/update to these 2 cameras. http://www.usa.canon.com/cusa/professional/products/professional_cameras/digital_slr_cameras/eos_5d_... http://www.usa.canon.com/cusa/professional/products/professional_cameras/digital_slr_cam