Using Icon for status field.

Hi all, I have a status field with different status (Accepted, rejected, pending etc.) but Instead of using the words I want to use icons that represents the status.
how can I do that?
Any help will be appreciate it.
Thanks in advanced,
Fidel

Hi,
If you are using ALV Grid, then you can go through the following links.
<a href="http://www.sapfans.com/forums/viewtopic.php?t=24512">http://www.sapfans.com/forums/viewtopic.php?t=24512</a>
<a href="http://www.sapfans.com/forums/viewtopic.php?t=79424">http://www.sapfans.com/forums/viewtopic.php?t=79424</a>
Hope this helps.
Please reward some points.
Regards,
Amit Mishra

Similar Messages

  • Disable most recently used items for this field in CRM 2013

    Hi,
    I have checked "Disable most recently used items for this field " property option for lookup filed in CRM 2013. But it still displaying MRU items on the lookup filed. Can someone please help to fix this ?
    Regards,
    Thanga

    did you try to clean your browser cache? use a different browser?
    My blog: www.crmanswers.net -
    Rockstar 365 Profile

  • Icon for customer field (field group)

    Hello!
    We have a need to follow-up one indicator through a customer field thanks to icon (like severities).
    Do you know if it's possible to manage that with the field groups for customer field (I couldn't achieve that yet), or if we have to develop a dedicated webdynpro application for that?
    Thanks!
    Matthias

    Hi
    You need to use programs provided by SAP  to handle dynamic behaviour.
    The idea is to store your BDC data into a file. (If you are already reading
    from a file, you still may have to write to a file suitable for the
    program).
    The SAP standad program can be called using a SUBMIT.
    Here are two programs that you can try :
    For creation of Customers : RFBIDE00
    For creation of Vendors : RFBIKR00.
    Regards
    Neha

  • Using instruction for creating field catalog to archive object "MM_MATNR"

    Hi all,
    I need a using instruction for creating a new field catalog to archive object "MM_MATNR". I'd like to create a field catalog using some fields of tables mara, makt, mvke and marc.
    Thanks for your help!

    Hi,
    Go to following link;
    [Material Master Archiving|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90f75a80-867f-2d10-7aa6-ac164e43e89f?quicklink=index&overridelayout=true]

  • My business want to start using iPhones for our field techs is there a simple and inexpensive way to manage multiple phones?

    I am a service manager for a small HVAC company, we want to issue iPones for our field staff (15) people, is there a simple management software out there that is also cost effective, I have used an iPhone for years, but have no experience with enterprise management, so simple would be best. Thanks for any help you can give.

    If you are running MS Exchange for mail, you can use the Exchange management console to perform remote wipes.
    We have used Casper for mac desktop management to good effect, I believe they offer more advanced remote management for iphones.
    FWIW, we just used the Apple Iphone Configuration utility to build config profiles...
    http://support.apple.com/kb/DL852 (for windows, there is a mac ver avail)

  • Lookup Type For Status Field

    Hello!
    Please I need a direction to confirm that it is not recommended to add a lookup_code on the table FND_LOOKUP_VALUES, where the lookup_type is 'CODE_STATUS'.
    I also need to confirm that this lookup_type is really the one available for most of the tables with the field STATUS, as in the table Hz_Cust_Acct_Sites_All.
    There is a demand to add a new lookup_code in order to manage the STATUS, but that would kill the core searches, updates, ....
    So, the demand must be solved with a flexfield.
    I just need an OK to that, and if possible, any comment.
    if it helps, here the select query:
    select * from FND_LOOKUP_VALUES WHERE lookup_type LIKE 'CODE_STATUS%' ORDER BY 2,3
    Thanks!
    Edited by: 906847 on Jan 9, 2012 7:53 PM

    Got the answer from a SR today.
    It says that I was correct and that:
    "The statuses you will see are A and I and D (deleted if delete after merge ). Receivables only uses these three, and not any other.
    DQM searches only search for customers with status of I and A. "
    The query which lists these statuses is using the correct table (Fnd_Lookup_Values) and with the correct value for the lookup_type ('CODE_STATUS'). It doesn't mean it's the same query, but it's OK for a general notion of it.
    Edited by: thq on Jan 10, 2012 6:09 PM

  • How to use range for a field that is not in select options

    Dear All,
    I have a requirement to show Long Text of a G/L account , where G/L account is between a given range. But this field is not in select options. I have to show Long Text of this Account, if the field is in a given range. I have tried to use RANGE , but RANGE is not working here. Please help with some sample codes.
    Note: The range is too high so I cant use IN operator.
    Thanks ,
    Rosaline.

    Hi,
       Declare a range as :
    ranges : r_hkont for bseg-hkont.
    fill in the values
    r_hkont-sign = 'I'.
    r_hkont-option = 'BT'.
    r_hkont-low = '26000000'.
    r_hkont--high = '2999999'.
    append r_hkont.
    Select sgtxt from bseg into text
    where bseg-hkont in r_hkont.
    Regards,
    Srini.

  • Best way to use `checkupdates' for status line

    Hey there,
    I want to have the number of packages for which there exist updates to be indicated in the status bar of dwm. (At the moment I create my status bar via a shell script, not via a C program. Most importantly the script displays at the moment the number of new emails and the date/time.)
    This was my first attempt (other functions and custom colors stripped):
    #!/bin/bash
    pkg(){
    nbr="$(checkupdates | wc -l)"
    echo -en "$nbr"
    xsetroot -name "... $(pkg) | $(date "+%d. %b %H:%M")"
    After the script has been executed it will be launched again after a sleep of two seconds. Now I wonder if it is considered good practice to execute `checkupdates' every few seconds. I guess it is not. What could be the downsides? Problems when invoking pacman in order to update?
    The other way I thought of was to check for updates only every hour via cron and redirecting the number of package updates into a temporary file and reading that file in the status script. But this has a major downside: After updating with pacman, the number of packages to be updated doesn't change until next invocation of the cronjob...
    How would you handle such a notification?
    Edit: Sorry wrong forum. Please move the topic. :-(
    Last edited by ball (2013-08-08 17:48:55)

    #!/bin/bash
    let loops=0
    while true; do
    [[ $(($loops % 150)) -eq 0 ]] && pkg=$(checkupdates | wc -l)
    [[ $(($loops % 30)) -eq 0 ]] && email=...
    xsetroot -name "$pkg | $email"
    loops++
    sleep 2
    done
    This will run checkupdates every 150 times through the loop (every 5 minutes) and do the mail check every 30 (every minute), but print out the latest result from each every time through the loop.  Obviously, the mail part has to be filled in with whatever you use.  This is just to show how to only update at certain intervals rather than wasting processing on something that may not be that dynamic.
    EDIT: for regular use I suppose their should be a check on "loops" to avoid overflow.  At the last line of the loop, for example, add
    [[ $loops -eq 4500 ]] && let loops=0
    Last edited by Trilby (2013-08-08 18:24:58)

  • Alv output using oops for numc field

    Hi,
    iam displaying alv output using oops.
    one of output field data type numc and length 4.
    in field catalog  i set lzero = 'X'.
    now data is coming with leading zero. if data contains 0000  i want blank value in report output.
    i tried with no_zero = 'X'  blank values are display but leading zero are not display for other values.
    how can i change the code.
    Regards,
    Suresh.

    You will have to use data type char in your case.
    regards,
    Advait

  • Show only status indicator icon for Status List Web Part

    Is there anyway to show ONLY the traffic light status indicator option for the status indicator web part?

    Well heck! I didn't know you were being forced to suffer in Quirks Mode!
    Quirks Mode kicks in if a page doesn't have a <!DOCTYPE> tag as its first element, which might have happened if you have any custom master pages, or if you upgraded to SharePoint 2010 from 2007, reusing some of the default master pages.
    The fix appears to be to add a proper doc type declaration to the top of your masterpage (or to your standalone page, if it's been customized), before the opening <html> tag.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    For reference:
    http://blogs.msdn.com/b/alimaz/archive/2010/01/10/sharepoint-2010-ribbon-and-quirks-mode-issue.aspx
    http://blog.tylerholmes.com/2008/08/quirks-mode-strikes-again.html
    http://heathersolomon.com/blog/archive/2008/01/25/DOCTYPES-and-SharePoint.aspx

  • Can i just use icon for bookmarks

    I don't want the description of the bookmark just the icon is this possible as otherwise the toolbar is too long

    Do you mean the '''Bookmarks Toolbar?'''
    There are add-ons that can help. I use;
    '''[https://addons.mozilla.org/en-US/firefox/addon/multirow-bookmarks-toolbarplus/ Multirow Bookmarks Toolbar Plus]''' {web link}
    Display your Bookmarks Toolbar in more than one row!
    Be smart about hiding text and only showing favicons,
    displaying website info as tooltips. Auto hide the Bookmarks Toolbar.

  • How to use PIVOT for varchar field

    Have data (records) as such:
    Joe, Smith, PersonType1
    Joe, Smith, PersonType2
    Joe, Smith, PersonType3
    Joe, Smith, PersonType4
    Joe, Smith, PersonType5
    However need to present it within ONE row per/Person with the PersonType in columns within this same row:
    Joe, Smith, PersonType1, PersonType2, PersonType3, PersonType4, PersonType5
    Please how would I write my sql to get this results..
    Help greatly appreciated...
    Thanks
    Mijecarr

    Thank you very much for your assistance...
    Replaced your sample code with the "real" names as indicated below.  However when running the query get the following error - please any suggestion?:
    Msg 488, Level 16, State 1, Line 2
    Pivot grouping columns must be comparable. The type of column "Notes" is "text", which is not comparable.
    select
    LastName,[1]
    asContactType1,[2]
    asContactType2,[3]
    asContactType3,[4]
    asContactType4,[5]
    asContactType5
    from
    (select*,row_number()Over(PartitionbyLastName
    OrderbyLastName)rn
    fromContact)src 
    Pivot(max(UserText10)forrn
    in([1],[2],[3],[4],[5]))pvt
    Mijecarr

  • How to use offset for select-option parameter ?

    Hi experts
    could anybody please let me know how to use offset for select-option parameter. i can able to use offset for table fields, variabiles and all , but don't know how to use for parameters.
    following is my code
    SELECT-OPTIONS: s_prctr  FOR vbsegs-prctr OBLIGATORY.
    here "prctr"  length is 10.
    i'm using two tables  1. vbsegd-bupla
                                    2. vbsegs-prctr
    here prctr+6(4) = bupla.
    "Bupla" length is 4
    SELECT belnr gjahr bukrs bupla sgtxt buzei FROM vbsegd INTO CORRESPONDING FIELDS OF TABLE it_vbsegd FOR ALL ENTRIES IN it_vbkpf
                                                                 WHERE belnr = it_vbkpf-belnr
                                                                   AND gjahr = it_vbkpf-gjahr
                                                                   AND bukrs = it_vbkpf-bukrs
                                                                   AND bupla IN s_prctr.  
    the above statement is not working as prctr and bupla lenths are different. here i want to use offset.
    SELECT belnr gjahr bukrs prctr sgtxt buzei FROM vbsegs INTO CORRESPONDING FIELDS OF TABLE it_vbsegs FOR ALL ENTRIES IN it_vbkpf
                                                                WHERE belnr = it_vbkpf-belnr
                                                                  AND gjahr = it_vbkpf-gjahr
                                                                  AND bukrs = it_vbkpf-bukrs
                                                                  AND prctr IN s_prctr.
    this is working as prctr and s_prctr lengths are equal.
    could anybody please help me out in this.
    Thanks in advance.
    regards
    satish

    Below code will work for you.
    SELECT-OPTIONS: s_prctr  FOR vbsegs-prctr OBLIGATORY.
    RANGES: s_bupla FOR vbsegd-bupla.
    s_bupla[] = s_prctr[].
    DELETE ADJACENT DUPLICATES FROM s_bupla.
    SELECT belnr gjahr bukrs bupla sgtxt buzei FROM vbsegd INTO CORRESPONDING FIELDS OF TABLE it_vbsegd FOR ALL ENTRIES IN it_vbkpf
                                                                  WHERE belnr = it_vbkpf-belnr
                                                                    AND gjahr = it_vbkpf-gjahr
                                                                    AND bukrs = it_vbkpf-bukrs
                                                                    AND bupla IN s_bupla.

  • OVS for two fields in the same selct Option?

    Hi Experts,
    I am using select options in my view. I am using OVS for one field. I would like to use same OVS for another field in the same select option.
    I tried "case ovs_callback_object->context_attribute". Which return the field for which we press F4.
    But IT did not work here probably because this we can use only for context attributes fields.
    but But here I dont get the select option field.
    But in my case I have select options which are not mapped to any context attribute.
    How can I find , for which field in select options F4 help has been requested?
    Regards,
    Vishal.

    Hi,
    You can find which field in select options F4 help has been requested using I_OVS_DATA-M_SELECTION_FIELD_ID.
            CASE I_OVS_DATA-M_SELECTION_FIELD_ID .
                 WHEN 'PERNR'.
                 WHEN 'ENAME'.
                 WHEN OTHERS.
            ENDCASE.
    If you are using one OVS for more than one fileds, please remember that you need to provide different code for each fields at phase 0 (configuration) and phase 3 (apply result).
    Regards,

  • When I bootup the icon for Elements shows up in orange.  It changes to green only when I've gone to Finder and clicked on Elelments under the Devices list.  This is a recent development.  The icon used to be green upon bootup.  Does anyone know why ?

    When I bootup the icon for Elements shows up in orange.  It changes to green only when I've gone to Finder and clicked on Elelments under the Devices list.  This is a recent development.  The icon used to be green upon bootup.  Does anyone know why ?

    I'm sorry to hear that.
    I'm not affiliated w/ the developer, just a happy user that gave up fighting the apple podcast app a while ago.  I used to have a bunch of smart playlists in itunes for my podcasts, and come home every day and pathologically synced my phone as soon as I walked in the door, and again before I walked out the door in the morning.
    Since my wife was doing this too, we were fighting over who's turn it was to sync their phone.
    Since I've switched to Downcast, I no longer worry about syncing my phone to itunes at all.  I can go weeks between syncs.
    Setup a "playlist" in downcast (ex., "Commute") and add podcasts to that playlist.  Add another playlist ("walk" or "workout") and add different podcasts to that one. 
    Set podcast priorities on a per-feed basis (ex., high priority for some daily news feeds, medium priority for some favorite podcasts, lower priority for other stuff).  Downcast will play the things in the priority you specify, and within that priority, it will play in date order (oldest to newest).
    Allegedly, it will also sync your play status to other devices, although that is not a feature I currently use and can't vouch for.  It uses apple's iCloud APIs, so to some extent may be limited by what Apple's APIs can do.

Maybe you are looking for

  • Why do we need SAML?

    Hi Experts, What is meant by SAML? Why do we need it? I have to use SAML in PI 7.1. Could you please provide the details, how to do the configuration? Thanks & Regards Sara

  • How do I ?? - LR Tracking Image Locations

    I have searched high and low for an answer and I am no closer to finding the "magic" setting to turn off this annoyance, so perhaps someone can help. If I right click a file in LR 2.1 and select edit in Photoshop, the first thing I do is save my file

  • May be a stupid question but...

    I have the Sims 2 for my old PC ... there is no way for it to run on my mbp, is there? ....thanks.

  • My Iphone5 battery drained off not turning on

    I have an iphone5, I was not able to charge it on time and it just turned off(battery drained off), when after some time I plugged it for charging it never charged, I have tried different methods to turn it on like hold down  home button + Lock butto

  • 64bit oracle server with 32bit client on the 64bit win2k8

    I am working on migrating application server end run on 32bit win2k3 to 64bit win2k8.What i do below: 1.installed 64bit oracle server 11g 2.installed 32bit oracle client 3.installed application server end I want to know is that right?And i found that