Currency F4 only shows info provider value instead of all values

Hi Guys,
I have a BI query in which the currency object is restricted with a variable.
I executed the query.
In the intial variable selection screen, i clicked on F4.
This variable only shows me the value from Info Provider.
But instead of that, i want to fetch all the currencies in the F4 help.
I have tried Query Filter Execution set to Master data but that too doesnt help.
Please please can someone help in it.
Regards,
Charu

Hi All,
Here are the steps i did for the currency conversion.
1. Created the conversion type.
2. Exchange rate type -> M
3. Selected Dynamic exchange rate
4. In the currency tab selected source currency from data records.
5. Target currency i selected Target currency from variable.
6. Variable is the one created on the 0CURRENCY object.
7. Time reference is the exact day and 0CALDAY is selected in it.
8. In the query, created a calculated key figure and assigned this conversion type to the CKF.
9. I have just dragged the 0CURRENCY in the row.
10. For currency in the Advanced tab in query i selected master data option for the filter.
When the query executes, it asks for the value of this variable.
When i select the F4, it should show me all the currency values, but it shows me only INR. In the search if i give EUR manually then it takes EUR but doesnt show me in the list.
Is there any step that i have missed out pls.
Regards,
Charu
Edited by: Charu Pandey on Jun 18, 2009 6:02 PM

Similar Messages

  • SharePoint PPS Analytic Chart Drill Down Dimension showing all values instead of corresponding value.

    Hi,
    I have Performance Point Analytic Chart.
    I am doing drill down the bar with one of dimension. System showing all the dimension values instead of correspond values.
    Unwanted dimensions are showing like blank in the chart.
    How to over come this.
    Thanks & Regards
    Poomani Sankaran

    Hi Poomani,
    According to your description, my understanding is that you want the drill down to show only the required dimensions.
    Here is an article about this issue, please check if it is useful:
    http://denglishbi.wordpress.com/2012/03/28/using-perspectives-with-performancepoint-services/
    In addition, as this issue is related to SSAS, I suggest you create a new thread on SQL forum, more experts will assist you with this issue.
    SQL forum:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/home?category=sqlserver
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to show fixed values instead of field values in ALV cell.

    Hi colleagues,
    I have a ALV object of type CL_GUI_ALV_GRID.
    I have associted a table with it which has a field called refresh type which is of type char1.
    My program works fine.
    But the problem is,
    The refresh_type field has fixed values in its value range.
    On display of ALV i want to show the associated fixed value instead of actual value in table content.
    I donno the way to do it.
    Please help me.
    -Trupti

    Another way to do this would be to define a conversion exit function for use in the report.
    You can copy a SAP-provided function group like ALFA as a template, but you may need untyped importing/exporting parameters. Name the new functions as CONVERSION_EXIT_Zxxx_OUTPUT and CONVERSION_EXIT_Zxxx_INPUT where Zxxx is some string you choose.
    In this case the input to the ...OUTPUT function will be the code value from the database and the output value will be the corresponding text. So the code of the function CONVERSION_EXIT_Zxxx_OUTPUT will do the conversion suggested in steps 2 & 3 of Marcin's response above.
    Here is an example based on the SFLIGHT model to enhance example report BCALV_GRID_DEMO.
    First the conversion function:  (I used 'zalv' as my identifying string for the conversion.)
    function conversion_exit_zalv_output.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(INPUT)
    *"  EXPORTING
    *"     VALUE(OUTPUT)
      field-symbols:
        <output> type c,
        <carrid> type c.
      assign input  to <carrid> casting.
      assign output to <output> casting.
      select single carrname from  scarr into <output>  " convert code to text
             where  carrid  = <carrid>.
    endfunction.
    In a copy of program BCALV_GRID_DEMO, make changes in the module pbo.
    module pbo output.
      set pf-status 'MAIN100'.
      if g_custom_container is initial.
        create object g_custom_container
          exporting
            container_name = g_container.
        create object grid1
          exporting
            i_parent = g_custom_container.
    * " changes start here
        data: gs_fcat type lvc_s_fcat,
              gt_fcat type lvc_t_fcat.
        tables: dd03l.
        select * from dd03l where tabname = 'SFLIGHT'. " fill field catalog
          if dd03l-fieldname = 'CARRID'.
            gs_fcat-inttype = dd03l-inttype.
            gs_fcat-outputlen = 20.
            gs_fcat-coltext = 'Carrier'.
            gs_fcat-seltext = 'Carrier'.
            gs_fcat-edit_mask = '==ZALV'. " == with the string you used to name the functions
          else.
            clear gs_fcat.
            gs_fcat-ref_table = dd03l-tabname.
          endif.
          gs_fcat-fieldname = dd03l-fieldname.
          append gs_fcat to gt_fcat.
        endselect.
    * " changes end here
        call method grid1->set_table_for_first_display
          exporting
            i_structure_name = 'SFLIGHT'
          changing
            it_fieldcatalog  = gt_fcat
            it_outtab        = gt_sflight.
      endif.
    endmodule.                    "PBO OUTPUT
    If you run this amended program, you see appropriate carrier texts in the ALV grid, where the original program had the IATA codes.
    This approach makes sense if, for example, the same translation is also required elsewhere, as the function can easily be reused.
    best wishes
    Ed

  • TS1702 Star seek pro-sky week only shows info for last week in May

    StarSeek Pro. Skyweek only shows info from May

    That would be a question for the app's developer. Contact info should be available from the relevent page in the App Store.

  • PP CS5, importing mp4's I only get 1 audio channel instead of all 4...?

    PC,
    PP CS5, importing mp4's I only get 1 audio channel instead of all 4...? I put the clips in Vegas & all 4 channels appear. What can I do? Going insane!!!
    Steve

    It's pretty simple... when you know how
    Get ffmbc - FFMedia Broadcast .   This is a customized build of FFmpeg that is more geared toward   broadcast formats and applications. The latest "official" release (0.5)   will work.
    Open the archive and find the "ffmbc.exe" file in  the "bin" folder. Drop it into the folder with the MP4s--or if you know  how to set up a custom path, you could do that too.
    Create a new  text file called something like "mp42mxf-4mono.bat" making sure that you can  see file extensions; you need to have the .BAT extension. Make this file  in the same folder as the MP4s and FFmbc.
    Paste the following into the batch file:@ECHO OFF
    for %%a in (*.mp4) do ffmbc -i "%%a" -vcodec copy -acodec pcm_s16le -f mxf -y "%%~na".mxf -acodec pcm_s16le -newaudio -acodec pcm_s16le -newaudio -acodec pcm_s16le -newaudio
    Save it--again making sure it has a .BAT  extension--and then double-click it to run it. It will rewrap all of the  MP4s as MXF files that will import into Premiere. It will also retain the original four mono tracks as four mono tracks in the destination MXF.
    That's all there is to it. Save that script, and you can recycle it whenever you get a batch of these types of problematic files in. Note that it's a completely lossless rewrapping, and should only take a few moments (or minutes, if you have a lot of footage, I suppose). Let me know how that goes.

  • Data Object Fields on MI Client 7.1: Null value instead of empty value

    Hi,
    We are migrating an application from Mobile 7.0 to 7.1 and we don´t know if our Data Objects are missing some configuration, but when a field is sent to MI Client with empty (blank) value, we get this field in the application with a null value instead of an empty value.
    This same application works fine in Mobile 7.0 and when a field with empty value is sent to MI Client, a empty value is get by the application.
    Has anyone any idea?
    Thanks.

    Hi,
    SAP has solved the issue. They told us to add the following parameter in defaults.properties:
    com.sap.tc.mobile.bc.string.trim=false
    Thanks.

  • How to receive a valid value instead of " null " value

    Hi people,
    I'm making this SELECT statement:
    SELECT I.id_cd, I.cantor_cd, I.titulo_cd, I.videoclip_cd, SUM(T.vezes_cd) as
    VEZES, MAX(T.dt_cd) as DATA from t_indicetmp I LEFT JOIN t_tocado T ON
    I.id_cd=T.id_cd
    GROUP BY I.id_cd, I.cantor_cd, I.titulo_cd, I.videoclip_cd ORDER BY
    SUM(T.vezes_cd) DESC
    So, I got this result
    id_cd.........cantor_cd.........titulo_cd.........videoclip_cd.........vezes.........data
    3...............cantor1.............titulo1............S........................9................09/03
    1...............cantor2.............titulo2............N........................8................09/03
    2...............cantor5.............titulo5............n........................<null>.........<null>
    The question is, is there a way to receive for example "0" instead of "<null>" value?
    It's happening because there's no registry for the id_cd=2 in the "t_tocado" table.
    thank's very much,

    The question is, is there a way to receive for example "0" instead of "<null>" value?1) NVL function
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions88a.htm#91645
    2) DECODE function
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions33a.htm#1017439
    3) CASE statement
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/expressions5a.htm#1033394
    Rgds.

  • Report Result showing # and limited vlaues instead of complete values

    Hello,
    I have a strange problem. I am working in BW 2.0B and loading data into 2 cubes (IS and PLAN). Over these cubes, I have a Multicube and my report is built on this multicube. The columns in the Report result show me strange values. For example the field Disposition shows # whereas after checking the cube contents there are more than 100 numeric values. Another field Material number shows few values (hardly 4 records) whereas after checking cube contents, there are lot more values present. What could this be due to? Pls help.
    Thanks & <removed by moderator>,
    SD
    Edited by: Siegfried Szameitat on Jan 12, 2009 2:09 PM

    hi siggi,
    no. i have not used any restriction at all. I created a test report and placed only disposition in it. but it shows me just 1 record in the result.
    do i need to make some changes on the multicube?

  • [solved] mplayer - don't play, only show info?

    I'm trying to get maplyer mplayer/mencoder to just show me what streams are available in a file. There's a lot of useful info reported when I start a file simply typing mplayer file name but I can't find the option to a) display specific info and b) not to start playing the file. Any help?
    Last edited by chochem (2008-09-22 18:36:53)

    Oh, okay. Here's starting an OGM file with two audio tracks and one embedded subititle stream:
    [mads@BENWAY Miyazaki]$ mplayer princess\ mononoke.ogm
    MPlayer 1.0rc2-4.3.1 (C) 2000-2007 MPlayer Team
    CPU: Intel(R) Pentium(R) M processor 2.00GHz (Family: 6, Model: 13, Stepping: 6)
    CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
    Compiled with runtime CPU detection.
    115 audio & 237 video codecs
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    Playing princess mononoke.ogm.
    [Ogg] stream 0: video (FOURCC XVID), -vid 0
    [Ogg] stream 1: audio (Vorbis), -aid 0
    [Ogg] stream 2: audio (Vorbis), -aid 1
    [Ogg] stream 3: subtitles (SRT-like text subtitles), -sid 0
    Ogg file format detected.
    VIDEO: [XVID] 640x336 12bpp 25.000 fps 0.0 kbps ( 0.0 kbyte/s)
    Clip info:
    Name: Princess Mononoke
    Software: Made with BeSweet v1.5b28
    Encoder URL: http://DSPguru.doom9.org
    Language: English[eng]
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
    [Ogg] Language for -sid 0 is '-slang "English[eng]"'
    Demuxer info Language changed to English[eng]
    AUDIO: 48000 Hz, 2 ch, s16le, 120.0 kbit/7.81% (ratio: 15000->192000)
    Selected audio codec: [ffvorbis] afm: ffmpeg (FFmpeg Vorbis decoder)
    ==========================================================================
    AO: [oss] 48000Hz 2ch s16le (2 bytes per sample)
    Starting playback...
    VDec: vo config request - 640 x 336 (preferred colorspace: Planar YV12)
    VDec: using Planar YV12 as output csp (no 0)
    Movie-Aspect is 1.90:1 - prescaling to correct movie aspect.
    VO: [xv] 640x336 => 640x336 Planar YV12
    A: 2.0 V: 2.0 A-V: -0.000 ct: -0.028 52/ 52 3% 0% 0.4% 0 0 99%
    Exiting... (Quit)
    There isn't really a problem with the playback and all I Have to do is stop it, go back over the output and add "-aid 1" and "-sid 0" as arguments and everything plays nciely. It 's just that I'd like to script it for ease of use.

  • HT1725 I told Itunes to download the entire season of a show.  How do I change it to just download one of two shows at a time instead of all of them?

    When I purchases a season of a tv show, I clicked the box that said to download all the episodes.  My internet plan doesn't have that enough on it to allow me to download all the episodes now.  How do I change what I told Itunes so it will only download an episode or two?

    I see, yes, non-HD  Itunes TV show
    See here:
    This movie requires QuickTime, which is not supported by this version of iTunes
    http://support.apple.com/kb/TS3771

  • Pop-up list manager displaying "return value" instead of "display value"

    Hello,
    I'm using a list manager based on pop-up LOV. When I click on an item on the pop-up window, the window is closed and the return value is displayed in the page list. I would like to have (as expected) the display value otherwise a user who accesses the detail of a record can just see codes (no meaning) and can't understand nothing. The return values should be used just for database storage as expected in a database application environment.
    The behaviour should be like the one of "POPUP Key LOV (display descriptions, return key values)"...where in the textbox I can see the description but I send the key to the database.
    I could use a multislect list too (which allows to display descriptions instead of codes) but in this case another problem arises: if I have lots of items the user has to scroll the list to see which items have been selected.
    Any other solution to allow a user to see (and print) the content of "multiple" fields (descriptions, not codes)?
    I'm using Application Express 2.1.0.00.39
    Thanks a lot for your help.
    Eugenio

    Anyone? Which is the best practice in these cases? Is it not possible to get the value selected displayed in a proper manner when using a "select multiple" fields?
    Thanks for your help.
    Eugenio

  • I have accidentally deleted the proloquotogo app with all it's data. It was on my iCloud backup list so can I know restore all the settings for this app from a previous iCloud backup? I now only have the basic pages instead of all the programmed pages.

    I have accidentally deleted my proloquotogo app with all it's programmed data. Is it possible to restore from iCloud as it was listed in managing storage. Where does this backup go to? I have reinstalled the app but I only have the basic pages. Help please. Thanks

    Essentially it would mean another Internet connection yes, however it's your local network that I am wondering about and whether it could be the problem.

  • Why does the Alexa Tool only show "private"? (No rankings at all.)

    Hello,
    Since the last update the Alexa Ranking Tool is not showing any rankings for any site. It constantly shows "private".
    I've tried everything recommended and checked every setting but I can't find the problem.
    Regards,
    Lizzi.

    Hello cor-el,
    Thank you for your reply.
    I've checked all those things and the settings are all fine. The tools menu displays the "Start Private Browsing". As I understand it that means I'm not in private browsing mode.
    I've done a complete system cleanup and rebooted a couple of times but it still says private. Update says I have the latest version of Firefox.
    I'm wondering if I should revert back to the previous version and see if the tool works again but I don't know how to do that.
    Regards,
    Lizzi.

  • When I find a word or phrase it will only find a limited amount instead of all, why?

    When I am searching I find what I want and try to find the next and it tells me it doesn't exist.  However, I can see it two sentences down.  Why wont it find all instances?

    Can you select the item you are searching for? If its a scan in might not be found.

  • I need one parameter value to return all values in SSRS

    when clicking on last label , I need data associated with all counties to retrieved , it is working fine when clicking on particular country but I can't figure it out how to do this is with multiple value  
    in my SQL code I am trying to do this 
    where country in(@country)

    There is no need to specify "All countries" in SSRS if you want to select all the countries if you want to render the report. Just pass all the available values and in the "General" tab select
    Allow multiple values which gives you the option to choose all the countries or also one or more countries... Don't forget to specify the "IN" operator in your query... it's a must...
    Good luck :) .. visit www.sqlsaga.com for more t-sql code snippets and BI related how to articles..

Maybe you are looking for

  • Xpath result nodes not returned in document order

    An XPath expression over a mixed text element does not return the result nodes in document order (see example below). I am using dbxml 2.3.0. let $x := <a>this <i>is</i> <b>mixed</b> text</a> return $x/node()} dbxml> query {let $x := <a>this <i>is</i

  • FB4.7 SDK vs. AIR 3.4 SDK

    It seems that 4.6.0 SDK provided with Flash builder 4.7 is incosistent with AIR 3.4 SDK available for download: under 4.6.0 SDK available in FB 4.7 - I can build my project nicely, no warnings, no errors, unit tests runs - when I compare this sdk to

  • Ques re: bright white washed out look

    I recently got my first iSight and when I hook it up and look at the video picture in iChat, I can see a decent quality picture when I point it out my window to the street in front of my house. I recently am trying a software security program called

  • Add work contacts to my personal icloud address book

    I'm am currently using my icloud address book with my private email address and the contacts in that listing are friends and family.  I would like to add my work contacts from my office outlook to my icloud (but keeping them seperate).  Currently my

  • Internet stops with PPTP VPN connections to ASUS RT-N66U VPN Router

    I have a client with a small office network that has a few people working remotely from Windows 7 and 8 PCs. As an inexpensive solution the client opted to use a VPN router (ASUS RT-N66U) that supports PPTP so remote users could access the shared fi