Text view with price and currency sign

Hello,
I have a textview in an table showing the netprice. The datatype is CURR. I would like to show the currency sign in the same textview, e.g. 1,87€. Is this possible and how?
regards
stefan

Hi Stefan,
Declare another attribute in your table (say final_price) of type string. For all the elements in your node, concatenate the price and currency and fill in the values for final_price. Now, let your text view display final_price.
For example, this is how your data should look in the node
price-curr-final_price
100---€----100€
24----€----24€
Hope this helps.
Regards,
Neha

Similar Messages

  • Totals text and currency sign in alv grid

    Hi!
    How to display totals text and currency sign in the totals part of the alv grid??
    Ex.
                  5    6
                  4    9
                  5    2
    Totals: $14 $17

    Hi,
    For Currency :
    https://forums.sdn.sap.com/click.jspa?searchID=11871008&messageID=3564279
    https://forums.sdn.sap.com/click.jspa?searchID=11871008&messageID=1019294
    For Total_text
    Maybe you will find something in examples SALV_OBJECTS.
    it's a package in the systems above 6.4 with new ALV. There are nice examples. Main package is SALV.
    https://forums.sdn.sap.com/click.jspa?searchID=11871273&messageID=3935361
    Regards,
    Shiva Kumar

  • Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?

    Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?
    If not, then to me that is a huge retrograde step

    No, the old album list view is not an option in iTunes 11...
    You can restore much of the look & feel of the previous version with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    If you still feel the need to roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • DB View with Sales and Finance Data

    Team,
    Is there a DB view with Sales and Finance data?
    -Cust No.
    -PO#
    -Invoice
    -Clearing Doc
    -Ship From
    -Unit Price
    Etc.
    Thanks
    Naved

    hi   there is  a  maximum  level of      view 
    BKPF_BSID_AEDAT  ....
    if you want you can create a with view with  you own selection  in the seSE11 ..
    go for the database  view  .....  because  it wil  give you the data  @ database level
    Girish

  • Create View  with Force and No Force

    Can Anyone Tell me how to create view with force and no force i have very little idea about this

    This is the syntax.
    CREATE [OR REPLACE] FORCE VIEW view
    [(alias[, alias]...)]
    AS subquery
    [WITH CHECK OPTION [CONSTRAINT constraint]]
    [WITH READ ONLY [CONSTRAINT constraint]];You can see interesting threads about this topic here.
    Re: Creating view forcibly
    Creating View forcefully
    Cheers
    Sarma.

  • Can't not text pictures with 4s and other texts dont always go thru WHY?

    Can't not text pictures with 4s and other texts dont always go thru WHY?

    Need more information...  Is it that you don't know how to add a picture to a text?  You know and have tried but gotten an error message?  Got no message, but the receiver does not get the text?  Are you sending as iMessage or SMS, or MMS?

  • If I buy a ipad mini with cellular, and not sign up for cellular service, can I use the onboard GPS, or does it depend on the cell signal since it is aGPS

    If I buy a ipad mini with cellular, and not sign up for cellular service, can I use the onboard GPS, or does it depend on the cell signal since it is aGPS?

    Right. But as I understand it, the aGPS is a function that speeds location using cell signals, but isn't necessary for the GPS signal. I can buy a plugin device that is a real GPS that I can use with my iPad mini. However, I would need an app for maps. I was wondering if anyone had used one of these.

  • Create folder view with files and tasks

    Good day to you,
    we want to support our software development procces with Vibe. What we are doing is, we make changes to the source code and protocol corresponding things in certain files.
    We think in so called "releases" and every release consists of tasks and a list of changes. This list is held in an excel file, so I would like to create a folder view, which consists of tasks and files.
    So far I could create a custom folder view with attachments at the top and a task list at the bottom, based on the task family.
    The problem is, the attachment view as a standard folder view does not allow colleborative editing of attached files. You can only view and download attached files, but not open them via Office addin. Therefore you can not lock or version files, which is mandatory for collaborative work.
    I would like to mix the file folder view with it's possibilities with a task folder view.
    Any ideas?
    Warm regards
    bitschnau

    There's no out of the box way to achieve what you're looking for.
    Two solutions:
    1. Your users would need to open the entry first and then click on the "edit this file" link.
    2. You could code your own folder view or landing page element and build what you need.
    HTH
    Cheers
    Erik
    PS: Feel free to contact me offlist if you need professional support.

  • Materialized View  with Joins and Possibilities of Partitioning

    Hi,
    We have a materialized view which has a data to query around 12 gb. The query goes some thing like
    this.
      Select a.c1,a.c2,b.c1,b.c2,c.c1,c.c2
      from a,b,c
      where a.c1=b.c1
      --and the where condition goes on...
      --i.e Basically joining 3 different tables with complex join conditions but without any group functions and subqueries.
       Now i have few questions here.
    Firstly as the Mview is created with joins we will have to create separate logs for each tables and we have did the same. The logs are created with rowid and sequence for better performance during refresh.
    Question No 1
    Is this is a best approach for materializing a query with complex join conditions. Or Is it better to make 3 different materialized views for each 3 tables and join those 3 MViews and write a query for my report. I ask this question just to make sure the refresh time is brought down by this method. But as such as we have created 3 different logs for 3 tables the refresh must be happening separately.
    Question No 2
    Data is likely to grow faster and faster on this. So we have a idea of making this a partitioned Mview. Can the Pro's advice me on this and suggest me the right practice for the same and help me to correct links from where i can pick a example and continue from there.
    Question No 3
    How to find whether the materialized view has refreshed on a fast mode or complete mode after the last refresh.
    Apart from querying and checking the rowid which i feel is quiet cumbersome for a mview with a data volume like what we have. By default when i see the info in TOAD for this Mview it shows Refresh Mode as "Force". But how to ascertain this.
    Thanks in anticipation for a good round of discussion

    Hi,
    We have a materialized view which has a data to query around 12 gb. The query goes some thing like
    this.
      Select a.c1,a.c2,b.c1,b.c2,c.c1,c.c2
      from a,b,c
      where a.c1=b.c1
      --and the where condition goes on...
      --i.e Basically joining 3 different tables with complex join conditions but without any group functions and subqueries.
       Now i have few questions here.
    Firstly as the Mview is created with joins we will have to create separate logs for each tables and we have did the same. The logs are created with rowid and sequence for better performance during refresh.
    Question No 1
    Is this is a best approach for materializing a query with complex join conditions. Or Is it better to make 3 different materialized views for each 3 tables and join those 3 MViews and write a query for my report. I ask this question just to make sure the refresh time is brought down by this method. But as such as we have created 3 different logs for 3 tables the refresh must be happening separately.
    Question No 2
    Data is likely to grow faster and faster on this. So we have a idea of making this a partitioned Mview. Can the Pro's advice me on this and suggest me the right practice for the same and help me to correct links from where i can pick a example and continue from there.
    Question No 3
    How to find whether the materialized view has refreshed on a fast mode or complete mode after the last refresh.
    Apart from querying and checking the rowid which i feel is quiet cumbersome for a mview with a data volume like what we have. By default when i see the info in TOAD for this Mview it shows Refresh Mode as "Force". But how to ascertain this.
    Thanks in anticipation for a good round of discussion

  • How to create materialized  view with parameter and index ?

    Hi all,
    i am using oracle 11g.
    i want to create  parameter materialized view  with two parameter (STORED_VALUE, LOV_NAME) with  an index .
    i have below view
    CREATE OR REPLACE FORCE VIEW SR_MY_TEST(DISPLAYED_VALUE, STORED_VALUE, LOV_NAME) AS
      SELECT  DISPLAYED_VALUE , LOVVALUE.STORED_VALUE , lovname.lov_name
               FROM (SELECT T.LOV_VALUE_ID,
          T.LOV_ID,
          T.ORG_ENTITY_ID,
          T.STORED_VALUE,
          T.DISPLAYED_VALUE,
          T.ENTERPRISE_ID
         FROM MS_QS_LIST_OF_VALUES_T T) lovvalue, ms_qs_lov_names lovname
              WHERE lovvalue.lov_id = lovname.lov_id
                AND lovvalue.org_entity_id = 1
                and LOVVALUE.ENTERPRISE_ID = 100000
                AND LOVNAME.ENTERPRISE_ID = 100000;
    i want to create index on   STORED_VALUE, LOV_NAME
    Thanks
    Damby

    No.AFAIK, there's nothing called as "parameterized MV".
    Materialized View store data like tables (and not like Views). So, does it make sense when you say - "table with parameters" ?
    Could you please explain your business requirement?
    What is the purpose behind those 2 parameters?

  • Need a fast image viewer with slideshow and autorotating

    Hello everyone,
    I'm currently recycling an old computer as a digital photo frame. It runs LXDE.
    This computer is also used as a server on which we store our photographs.
    I need a fast picture viewer, with the following features:
    - fast processing
    - good rendering
    - image autorotation based on EXIF data
    - random slideshow with recursive browsing
    - GUI is preferred, or I need to find a way to add entries in PCManFM's right-click menu (any guidance is welcome)
    - ability to play video would be nice but is not mandatory
    I've tried many image viewers available in repos and AUR. So far only 2 of them are suitable in terms of speed: feh and qiv. But they are CLI-based (no big deal if I find a way to customize PCManFM file associations), and they do not support image autorotating based on EXIF (support has recently been implemented in qiv, but Arch's package is outdated).
    Please tell me if you know about a program that'd fit my needs.
    TIA.
    Last edited by brazzmonkey (2009-03-16 08:13:34)

    Inxsible wrote:
    rson451 wrote:
    Inxsible wrote:I would be interested in your search as well, because I currently use mirage and feh to set my wallpapers...but I am looking for something lighter than mirage, but one which can do rotation as well, so I dont have to connect my HDD to the windows machine, just to set some pictures right.
    Offtopic, but did you know feh has a right click menu?  Rotation is in this menu.
    Oh yes, I do know the right click. but I guess I never looked hard enough for the rotation as I do it very infrequently. Thanks for the tip.
    How would I set feh, so that when I double click a image file, feh would start up and show that image? If I can get that (and I haven't tried that yet), I guess I can get rid of mirage then.
    That's not an feh config, that's a config for whatever file manager you are using.  I'm not sure of the options you'd need to pass feh because I always run it on the command line.

  • I used to have the google toolbar with Translate and Currency conv. Now it is gone. Why?

    In the last version of this browser, I had a toolbar from Google that had Translate and Currency Converter. Now it's gone. Also when I opened a new tab, it would show lots of mini pages that I regularly visit, now that's gone. Where is this stuff and why can't the program just stay the same and work?

    The Google Toolbar '''7.1.20110512W''' version works in Firefox 5.0 by using the Compatibility Reporter extension, I tried it myself due to the large number of postings about GTB problems. <br />
    https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/

  • Format numbers with commas and dollar signs

    I've searched documentation and I do not see how to add a $ (dollar sign) to a number and how to add a comma after 3 digits.
    for example  $32,000.00
    Thanks in advance

    Hello ..
    In PLD is this possible, but also about the issue of setting up your database. If you set the currency as $ Dollar then you will see it as such in print. The same with the insert.
    If the dollar had another name, then you can concatenate a text field indicating $ with a formula field to extract the coin value you wish to view.
    Hope this helps
    Yours sincerely,

  • Epub to be created and viewed with computer and ipad

    Now that Pages can work with video, we at the school would like to create content to promote the ipad while still being able to view it on a computer ereader. I've tried with Adobe which only handles SWF and with the Firefox add on EPubReader. I'm not sure if it me or if it can be done at all. Has anyone had success? The files read the video perfectly on the iPad but only the text and poster frame on the computer. Suggestion?

    I'm not sure if it me or if it can be done at all. Has anyone had success? The files read the video perfectly on the iPad but only the text and poster frame on the computer. Suggestion?
    Basically it is a "hit or miss" proposition. It all depends on which reader/application is being used. Some don't support embedded audio and/or video files at all. Others may have limited support but only for specific formats. You will likely have to warn users that such content is not supported by all readers. One alternative for wider viewing might be to include hyperlinks to a web page containing the media. However, this too would not be a universal solution as it requires active internet access which may or may not be available to all users.

  • Accordian panel with plus and minus signs to indicate state of panel

    I want the text to show [+] next to the title of the panel when it is collapsed and [-] when it is expanded
    just like http://www.reddit.com/r/indesign/comments/1jewqq/custom_kerning_applied_to_a_single_charac ter/
    the comments on this page can be expanded or collapsed by clicking the plus or minus sign
    how do i do this?

    I've started filling the accordion with my content and the
    cookie works fine. But I see some things I'd like to have changed
    if possible?
    a) When I load the page all accordion panels flips open at
    the same time and they stay open until the page has loaded. It's
    probably not visible in the demo because it's only a few bytes to
    load there. After the page has loaded the cookied panel stays open
    and the rest of the panels close. Is it possible to hide the
    loading of the panels somehow? This is kinda messy right now.
    b) I'd like to use the cookie to control the panels but only
    during the current session. When a new session occurs I'd like to
    start with all panels closed a) (or use the script that states
    default panel). The standard accordion use a small script to set
    the default open panel. I tried modifying this script but it looks
    like the accordion is following the laws of the cookie and is now
    ignoring this script.
    Panel 4 set to be default (0, 1, 2, 3):
    <script type="text/javascript">
    var Accordion1 = new
    Spry.Widget.Accordion.prototype("Accordion3");
    </script>

Maybe you are looking for

  • PCI-7344 not found in MAX 3.1.1 after installing NI-Motion 7.0

    Hi, I updated my PCI-7344 + LabView 7.0 system with the newest NI-Motion 7.0. After the update the card was not anymore detected in MAX. There was a "broken" device PCI-7344 under NI Motion Devices, which status said something like "This device has b

  • Cant sync iphone with itunes wifi

    Im trying to sync my iphone wirelessly with itunes. I dont even have the option on itunes to allow wifi sync when my phones plugged in. All my products are up to date. Help ?

  • Calling Crystal from SAP ABAP / BSP

    Can anybody tell me how to call a Crystal Report (RPT on the BO XI Server) from a BSP? How do you access the RPT on the BOBJ XI Server? THANKS!

  • GetSnapShot() does NOT work?

    Dear all, we are trying to implement a photo taking program by J2ME. This program controls camera of the testing mobile phone and users can press a command item to capture photos. It works really well on Nokia 7210 , but NOT on Motorola E680i at all.

  • ITunes 7 keeps skipping, can I get iTunes 6 back?

    Hello. I have had iTunes 7 for a few months, but it keeps skipping when I am trying to do somthing else on the internet, like load a new page, or if I'm scolling fast. Is there a way to get iTunes 6 back, or can this be fixed? Thanks.