Show currency unit in extra column

Hi Gurus,
i got a key figure in query with different currency units loaded. After drill down to company i can see different currency units in data fields.
For example
Keyfigure
100 USD
200 EUR
400 YTL
i want to split this key figure.
What i want is two colums - one with value und one with currency.
For example
Keyfigure1
100 
200
400
Keyfigure2
USD
EUR
YTL
We have no SPS14 here - otherwise i would enable tabular view in query designer and put characteristic "currency" next to the key figure.
Any ideas how to reach this?
Regards,
Adem

Hi.
whats ur exact requirement. I think in BI7 we have solution for this
in report level its not possible in BW.
if u want we can do in modelling level for that include one char infoobject in cube in update rules map this object with 0currency,  build one new formula use NODIM function to avoid units, drag that char infoobject into column,
but its not the perfect solution lets wait for experts answers.
thanks,
pavan

Similar Messages

  • Can not extract currency/unit from cell/column

    In analysis for excel i have a column called Amount which is in diffrent currencies, now i want to extract only currencies in a diffrent column not the numerical figures,tried lot of things on excel to pick currency but unable to do that formulaes in excel can not read currencies it is kind of inbuilt format. Is there any way by which i can pick currrencies from a column?
    e.g.
    AMOUNT
    12EUR
    32AUS
    43SEK
    I want two  columns:
    Amount   Curr
    12            EUR
    32            AUS
    43            SEK
    Thanks.
    Prateek

    Hi Prateek,
    I'm wondering which type your "Amount" key figure has? Did you save the value and the unit in one?
    Usually every key figure in BW has an assignment of a unit or currency characteristic, e.g. 0UNIT or 0CURRENCY. See: https://help.sap.com/saphelp_nw04/helpdata/en/57/f2dc37f0f12313e10000009b38f8cf/content.htm
    When you use your currency Infoobject as free characteristic in your query you can do a drill-down for it and e.g. apply a filter on any of the available currencies.
    I guess this would be the only working solution.
    Regards, Martin

  • Currency UNIT at row level

    Hi Experts,
    I am using BI 7 and my reports are showing Currency Unit for key figures at the top (in row header only)
    Whereas I want them to be shown with the Key figure Values.
    Current View                             Desired
    plant    Sales                         plant     Sales
              USD                                           
    US01     100                            US01     100 USD                
    US02     50                             US02     50  USD
    Is there any setting where I can achieve the above feature.
    Appreciate your help.
    Best Regards,
    Pratap Sone

    Hi Pratap,
        Please refer the following link for query properties.
    [Currency and Unit Display in Business Explorer|http://help.sap.com/saphelp_nw70/helpdata/en/08/81b98895e911d4b2ca0050da4c74dc/content.htm]
    In that there is a setting mentioned for displaying the unit in the header.
    Please check and I hope this helps.
    Regards.

  • How to show value and unit in different columns

    Hi All,
    I need ABAP help for the below requirement in BI7.0
    Data source contains  the field Amount in local currency (Data source is flat file of CSV format)
    Amount in local currency
           1000  INR
           2000  INR
           1000  GBP
           2000  EUR
    I have to get this value in target like below( value and unit should be in different columns)
    Amount in local currency              0currency
           1000                                           INR
           2000                                           INR
           1000                                           GBP
           2000                                           EUR
    Can any one help me how to declare the data type for  Amount in local currency and how to show this value in two columns in the target.
    Thanks,
    kishore.

    TYPES:BEGIN OF ty_stru,
      s1 TYPE string,
    END OF ty_stru,
    BEGIN OF ty_stru1,
      s2 TYPE string,
      s3 TYPE string,
      END OF ty_stru1.
    DATA:itab TYPE TABLE OF ty_stru,
          wa LIKE LINE OF itab.
    DATA:itab1 TYPE TABLE OF ty_stru1,
         wa1 LIKE LINE OF itab1.
    START-OF-SELECTION.
    "--Input--
    In input 1000 and USD having space
      wa-s1 = '1000 USD'.
       APPEND wa TO itab.
      wa-s1 = '1000 INR'.
       APPEND wa TO itab.
      wa-s1 = '1000 EUR'.
      APPEND wa TO itab.
    "--Input--
      LOOP AT itab INTO wa.
    SPLIT wa-s1 AT space INTO  wa1-s2 wa1-s3.*------> split command
    APPEND  wa1 TO itab1.*---------------->splited value store into another internal table
      ENDLOOP.
    "--Display--
      LOOP AT itab1 inTO wa1.
        WRITE: wa1-s2,
               wa1-s3.
      ENDLOOP.
    "--Display--
    Output:
    1000 USD
    1000 INR
    1000 EUR
    This is simple prgram for split a string into two different string based on space
    regards
    Dharma
    Edited by: dharma raj on Aug 19, 2009 2:01 PM

  • Using SAP Tokens & showing extra columns to choose

    I have a Crystal Report where I have a SAP token parameter to select a budget scenario to run the report based on.
    My token is selecting the 3 columns I need to display inorder to select the correct scenario - AbsID, Name & FinancYear.
    Budget@Select AbsID, Name,FinancYear  from OBGS order by 3
    When I preview in SAP my drop down box only gives me AbsID and name - which is of course a list diplaying "Main Budget" repeated for the number of financial year I have in the database.
    As these Main Budgets can (and have) been created in any order, it is impossible toexpect the users to select the correct budget from the displayed data.
    As there is no direct join from OBGS to OFPR on financial year, I can't work out how to either display the additional column in the choose from list, or filter my selection statement so it will only give scenarios that relate to the financial year for the period I have selected
    Any sensible suggestions welomed!

    Hi Julie,
    Remember that combo box controls in SAP can only display two values, a code and description, or in the case of report tokens the first two columns you specify in the token query. Seeing as you need the third column to distinguish between the first two sets of values a combo box is no use to you on it's own.
    The following is off the top of my head and untested but what about either replacing the combo box with a CFL that shows as many columns as you need (and by nice coincidence the first column in that table is the value you want selected, AbsID), OR, created two report parameters the first displays the Financial Year and the second displays the AbsID and Name values for the selected FinYr?
    Remember I'm writing this free hand so you'll need to test to make sure it's ok.
    Replace Cbo with CFL
    Budget@Select * From OBGS order by 3
    This should display a CFL where you can add any extra columns needed from the form settings.
    Two Cbo Parameters
    FinYr@ SELECT F_RefDate FROM OFPR
    Budget@Select AbsID, Name from OBGS WHERE FinancYear = ('FinYr@') order by 3
    So you can reference one parameter name inside another to limit the results displayed by the second parameter.
    One of the above or some variation should get you what you need.
    Regards,
    Andrew.

  • SAP Report Painter - How to show currency key in header

    I've created a new report painter report against table Faglflext. Basic key figures are extracting Local Currency (HSL). This generic report will be used for various company codes that have different local currencies. In the report header I've specified a General Text Variable with Variable name currency but no data is displayed. The data in the columns are however correct based on company code selection.
    Please advise how I can show currency type in header.
    Thanks

    Hi Sonja
    You have chosen HSL in the column definition which means to display the values in comp code currency
    If I have understood your requirement correct, you want to display the currency of the company code in the Header text or some where as a text, based on the company code given in selection parameter
    Thats really not possible!!
    However, one smart thing you can do is to
    1. Go to GRR2
    2. Choose your report and Menu Extras > Report Text > Title page or Header
    3. Enter a Text saying that
    "This report displays the values in comp code currency... Currency of comp code 1 is USD, comp code 2 is SGD, Comp code 3 is GBP, etc"
    Hence, the users would come to know the currency in which it is executed
    Regards
    Ajay M

  • Display currency  unit  field in FM reuse_alv_grid_display

    Hi friends,
    I am using ALV list, I want to display the currency field as a column in the list , also the '$' sign should get displayed in the amount field .
    I have used the logic given in the SAP help, but i am unable to display the currency unit.
    can anybody help me out .
    Thanks in advance for the suggestions.

    Hi Poonam,
       I think you cannot have the $ sign in the same amount field if you have declared it as a TYPE CURR field.
    YOu can have an extra field, immediately after the Amount Field which has a value '$' in it.
    If you want to have the dollar sign in the field itself, then concatenate the amount field and '$' sign into a common field and build a field catalog for that field.
    But there is an inherent disadvantage with this approach that you will not be able to have utilities like totals, subtotals etc.
    Welcome to SDN..:)
    Regards,
    Ravi
    Message was edited by: Ravi Kanth Talagana

  • Currency units not displayed

    Hi all,
    I have query, in rows i have g/l account  and in columns i have actuals total in group currency and actuals total in local currency of spain, local currency of france local currency australia etc. The thing is when i execute the query it showing the values of local currencies correctly but it not showing the currency uints. I have scaling factor to 1000 and I don't have much complexities,
    Is there any particular option to show the units.
    Any help is appreciated.
    Thanks,
    P

    Hi Bhanu,
    Thanks for the reply , the user are insisting that they require the scaling factor and the units to be displayed. But anyways, I have been given another problems to look around as there was a new bex consultant has been hired. Thanks for the tip of dividing by 1000.
    Thanks,
    Prasad.

  • Currency unit in Report painter

    Hi,
    I met a problem when i maintain a report using report panter. Table FAGLFLEXT is used for the library, and I want to using currency translation function. I use Basic key figure "HSL local currency" and CC_HSL translation local currency for the report. But when i run the report, there is a problem, system tell me that can not find the unit of source currency, so can not translated to target currency. The data of local currency can be displayed.
    i set the format of the local currency column, find that even i click "print the unit", there is no currency unit of the data, so I think there is some problem.
    What is the problem? thank you!

    Hi Amir,
    Thank you for your answer.
    I changed the key figue to "Crcy Transltn TransCrcy (Act.)" as told, and run the report again, but still have problem.
    No valid exchange rate for currency translation from  to USD
    Message no. GR640
    Diagnosis
    The system could not find a valid exchange rate for the currency translation.
    System Response
    The system could not translate into the target currency.
    Procedure
    Check the target currency, the exchange rate date and the exchange rate type.
    I am sure i have maintain the exchange rate type and related rate.
    The setting of "Define Currencies of leading Ledger" is "1 Translation taking transaction currency as a basis".
    I think the problem is that the system cannot find the unit of the currency, so the error massage display as "No valid exchange rate for currency translation from  to USD". If can find the unit of currency, i thought the message should be like "No valid exchange rate for currency translation from EUR to USD".
    If the unit can be found, I think after set the format of the column "print the unit", in the report the unit can be displayed. But in my system, can not display the unit.
    What do you think about this? thanks in advance.

  • Improper display with Currency/Unit in drilldown

    Hi ,
    There are 2 KFs in the query , 2nd KF is one level down (i.e inside the triangle of first KF) .
    KF's are :
    Net value
    Net val in doc currency
    when i drill down on Currency/unit it just drills down by statistics currency (i.e for first KF) it doesn't display other currencies for KF Net val in doc currency .
    But when i bring the 2nd KF to same level as first KF (i.e outside triangle) it works properly .
    Can any one tell me the reason if you had a similar case .
    I think it's some front end problem ?
    Thanks
    Gururaj

    Gururaj,
    I think that it is normal behaviour.
    When you drill down by currency, the 1st KF is drilled down. For example, after drill down you have several rows (columns) with particular statistics currencies.
    The currency shown in each particular row (column) acts like a filter for subordinate nodes.
    If your doc currency doesn't equal to statistics currency, nothing will be shown.
    Best regards,
    Eugene

  • How to show the units separately in BEx reporting

    My Bex reporting shows the units along with keyfigures. Say 15.45Kgs. i would like to show the units separately in a column. Pl tell me how to do it.

    Hi,
    you can do it. follow the below steps.
    1) create a calculated key figure by assigning the function NODIM to the base key figure (NODIM<base key figure).
    2) Drag and drop the unit info-object ( the unit info-object that is used in the key figure definition) in the rows section.
    3) Hide the base key figure.
    Hope it helps.
    Thanks
    Soumya

  • Showing Zero Unit Price/Row Total

    Hi,
    We currently allow posting rows for item sales with zero unit price. I am having trouble showing the unit price and row total as "$0.00" instead of a blank field with PLD. Both of these fields are system variables (80 and 84), neither field is linked to itself, and neither field has the 'Suppress zeros' box checked. Any possible solution to this? Thank you.

    Hi there,
    You could try using a formula type field and multiplying your system variable field by 1.
    - Say for example your Unit Price field has a Unique ID of F_100.
    - Create a new line Formula field and set its value to Round(F_100*1,2).
    - This will display your zero value unit price as 0.00.
    - Note that I'm only using Round() to display zeros after the decimal place, otherwise the zero value unit price would appear as 0. So change the number of decimals as required.
    - Unfortunately this removes the currency code display from the value so you will need to re-display it if required, you can do this using a database type field and selecting the Price Currency field.
    Do the same for row total. Hope that helps.
    Regards,
    Andrew.

  • Extra column in CS12

    Hi!
    I would like to show a new column from material master in the list generated in transaction CS12.
    I have checked these links but I cannot solve my problem:
    user exit for CS11, CS12, CS13 (BOM ALV browser)
    Add Extra Columns into Multi-Level Explode BOM (List Report)  - CS12
    Regards,
    Imanol Dehesa

    The problem started when I added my cycle count to the data file. I'm getting a cycle count but it seems like it's in the form of x,y. The data looks like this.  ,1,1.2,1.2,1.2,1.2
                                                          ,1,1.2,1.2,1.2,1.2
    This represents the first cycle. The numbers looks good, other than that leading "comma", like there's a phantom value there.
    Attachments:
    snip1.png ‏30 KB

  • How to display Currency Unit beside value in BEx Report?

    Hi,
    I have 2 separate Amounts in the columns area. Their respective currencies exist as Characteristics in Unit dimension. How do I display the amount along with currency unit beside it?
    As of now my Report looks like....
    Amount 1              Amount 2
    2000                     3000
    I would like to display it as......
    Amount1           CUR                Amount2          CUR
    2000                 EUR                 3000               USD
    Thanks,
    SD
    Edited by: Sebastian D'Souza on Jan 16, 2009 11:40 AM

    Hi Sebastian,
    Yes it can be possible to get the currency unit along with currency in ur report.
    To do this, first of all u need to have the currency unit in ur flat file or else in ur data.
    If u have so, here are the steps to do that.
    1.Double click ur amount info object under 'currency/unit of measure tab' , in the unit/currency field just give as 0currency.
    2.And then activate ur info object.
    3.In Transformations u will find another field '0currency', just map it to the amount field.
    and then do the process as usally loading data to target, and the execute the report.
    u will be able to see currency unit filed also.
    hope this helps u.
    Thanks,
    Sai Chand.

  • Currency Unit Problem

    Hi all,
    I have a problem to display amount of different currency unit in a single column. i want to display report amount based on account no
    on that i have some canadian account and US account. amount unit for canadian currency is CAD and for US it is USD. user wants to display amount and there unit side by side. the problem is in the subtotal or overall result is comming as * due to CAD and USD. i cant use NDIM function as user wants to display amount and currency unit together.
    can any one suggest how can i solve this issue.
    samit

    one more option would be:
    Create two restricted KeyFigures. One  for USD and one for CAD .So that you could see all USD amounts in one column and all CAD amounts in different column..Hide base keyfigure.Now you will not get * for subtotals and Overall result and amount and currency unit will be displayed together
    Message was edited by: Murali

Maybe you are looking for

  • New in ABAP

    Hello Everybody what is the difference between pack and floating point datatypes, i ABAP Objects book, there is mentioned that if you are concious about accuracy then use pack datatype, otherwise use floating point. i write a program data p1 type p.

  • I have lost all my ringtones, and music...HELP ME!

    I recently bought 4 songs, and 1 ringtone from the iTunes Store on my iPhone 3GS. I went to plug my iPhone in my computer so I can transfer my music from my iPhone to my computer. When none of my music files transfered I got a little worried so I loo

  • Check in MIGO for the excise tab

    Hello Guru's, We are trying to put the check for the Sub Transaction type in MIGO. As we capture and post Excise in MIGO itself. We have tried but none of the Excise CIN exits are firing in the MIGO transaction. Can anyone please suggest any BADI or

  • Unexpected error.(WIJ 20002) in webi in infoview

    hi all,    When ever I am runnig a WebI report it used to run for some time and after that gives an error message that "Unexpected error. If you cannot reconnect to the server, close Web Intelligence and start again. (WIJ 20002)" https:/server/Analyt

  • No way to set ringtones for whatsapp

    How can i set a ringtone for whatsapp. I just get a short vibrate so miss all calls. There is no option in settings. Solved! Go to Solution.