Change icon for S object in PPOME

Hello!
Do you have any idea how to change icon for position like it works for manager (012 connection type)? I'd like to create my own indication for special statuses of position.
SAP offers standart solution http://help.sap.com/saphelp_nw04/helpdata/en/24/1188b3cbc711d2b49e006094b9c9b4/content.htm
but it's disabled as SAP Support Team said.

Hi,
Not sure it will help.Have a look at
SPRO> Personnel Management> Organizational Management>Hierarchy Framework
Manoj.

Similar Messages

  • Change icon for file type

    how to change icon for all of the tile type? not just one, but all!

    Changing the file icon will not enable Quicktime to play Matroska files. Changing the file suffix might.
    It could be a 'difficult' form of Matroska file. FYI Matroska is just a container like MOV or AVI, and some mkv have the video encoded with Real Video Codec (RV9 RV10). Perian+QT can't decode this, but VLC will play .mkv files just fine on OS X, as long as they don't use H.264!
    It's a bit of a lottery until Matroska decide to support the Apple platform. I have found this:
    http://mkv4mac.free.fr/index.php?lang=en&p=lec
    which may help.
    But there may be another workaround: 1. Get Info the mkv file
    2. Change to extension to wmv. Save as wmv and that could work better.
    Or this link may be helpful:
    http://www.squidoo.com/mkv-converter-mac
    Recently, a poster (ZachP14) suggested this:
    "There's a program called Plex that runs .mkv files awesome on my 2.0 ghz macbook."
    http://www.plexapp.com/
    Maybe worth a try?
    More information here:
    ttp://en.wikipedia.org/wiki/Matroska

  • Changed Icon for my InputListOfValues

    Well my problem is that I want to changed the search icon of my InputListOfValues but just for one!..
    Well my css looks like this:
    /* definition of the alias*/
    .StyleLov1:alias
    {-tr-inhibit: background-image;
    font-size: 11px;
    padding: 1px 3px;
    text-decoration: none;
    vertical-align: 0%;}
    /* referencing the alias in the StyleLov1*/
    af|inputListOfValues.StyleLov1::search-icon-style
    -tr-rule-ref:selector(".StyleLov1:alias");
    /* definition of the alias*/
    .StyleLov2_alias
    { content: url("../images/activar.png");}
    /* referencing the alias in the StyleLov2*/
    af|inputListOfValues.StyleLov2::search-icon
    -tr-rule-ref:selector(".StyleLov2:alias");
    And in my component looks like this:
    <af:inputListOfValues label="Label 1"
    popupTitle="Search and Result Dialog"
    binding="#{backingBeanScope.backing_lovsample_test.ilov1}"
    id="ilov1"
    styleClass="StyleLov1 StyleLov2"/>
    The first style "StyleLov1" works but the second don't works I don't know what is the error.
    Thanks
    Edmaral

    Thanks now it works fine!!!....but in my general CSS file I define global selectors por InputListOfValues like this:
    GLOBAL DEFINITION
    af|inputListOfValues::search-icon-style { -tr-inhibit: background-image; padding: 0px 0px; text-decoration: none;vertical-align:-3px; }
    af|inputComboboxListOfValues::dynamic-help-icon {content: ‘?’; color: black}
    af|inputListOfValues::search-icon {content : url("../images/lovMenuEnabled.png"); position: relative;  left: -3px; top: 1px; }
    af|inputListOfValues::search-disabled-icon {content: url("../images/lovMenuDisabled.png"); font-weight: bold;}
    af|inputListOfValues::search-icon-style:disabled { -tr-inhibit: background-image; padding: 0px 0px; text-decoration: none;vertical-align:-3px; }
    DEFINITION FOR SPECIFIC SELECTOR
    /* definition of the alias*/
    .StyleLov2:alias{ /* notice .StyleLov2:alias instead of .StyleLov2_alias */
    background-image: url("../images/activar.png"); /* notice background-image instead of content */
    /* referencing the alias in the StyleLov2 */
    af|inputListOfValues.StyleLov2::search-icon-style{ /* notice search-icon-style instead of search-icon */
    -tr-rule-ref:selector(".StyleLov2:alias");
    Changing all icons for this component but I want to change the icon just in one component but the global property is apply for all components. I change the
    style class with de name of my selector alias in my component but is not being recognized just recognized the global selector. I dont know how to
    inhibit these global properties.
    Thanks.....
    Edmaral
    Edited by: Edmaral on 17-may-2010 13:12

  • Change namespace for development objects

    hi at all,
    i have to transport a lot of customer development objects (reports, tables, programs, WebDynpro-components...) from one system to another development system. in the source system all customer-objects are named like Y* or Z* (e.g. Z_CM_COURSDETAILS).
    After that in the target system i have to change this names into our own company namespace (like /ABCD/CM_COURSDETAILS).
    How can i do this? The company namespace is activated an part of the view V_TRNSPACE.
    So, do i have to change every object by myself? Or is there a report or another automaticly help?
    Thanks for your information and help,
    regards
    Hendrik

    You can probably write a small BDC in the target system which accepts one type of objects, rename the object and activate it.

  • Changing TimeZone for Calendar object doesnt change its time

    Hy, I have a Calendar object with I have set with a Date but I I want from this calendar with the Date set, set other timezone for this calendar and get the corresponding time(always gettting the correct time if is in daylightsavings) but I get the same time.
    Calendar calendario = Calendar.getInstance
    calendario.setTime(new Date());
    System.out.println(calendario.getTime()); *// for example I get the 14:12:25 hours for GMT+01:00*
    calendario.setTimeZone(TimeZone.getTimeZone("GMT+02:00")); *//change time zone using GMT*
    System.out.println(calendario.getTime()); *// I get the same hour: 14:12:25*
    Why? How to do it using GMT format?
    Thanks
    Edited by: user13162080 on 13-sep-2011 14:31
    Edited by: user13162080 on 13-sep-2011 14:48

    user13162080 wrote:
    Ok, thanks. The last question, this changing of timezone and the hour I am getting, is respecting the timezone daylight saving?, I mean if the TimeZone I set is in daylight savings, I will get the correct hour according to this?What DrClap said.
    However, I think you still may be under some misapprehension about time zones:
    1. A Date does NOT have a timezone, even though it stores a date/time value.
    2. Setting a Calendar's timezone does NOT change the time stored in the Calendar. You may even need to run its complete() or computeFields() method to have the timezone change reflected in all its fields (not sure).
    3. As DrClap said, if you are using a DateFormat to display the Calendar, you need to set its* timezone in order to see what you want (for reason 2 above).
    It's amazing to me that after 10 years this API still gives so many problems (and believe me, you're not the only one).
    One thing you might also want to do is have a look at [url http://joda-time.sourceforge.net/]Joda Time. It's been around for a long time now, and so is quite mature; and is fully interchangeable with standard Java date/time classes. In fact, many of its ideas were under consideration for Java Version 7 as JSR-310, but were decided against (still not quite sure why, as in my view the current API is very poor).
    Winston

  • How can I change icons for saved links

    I have a number of links on my Bookmarks Toolbar for quick access. Each of them used to have an icon associated with it, but now one icon is missing. The link still works OK, so it's just a matter of not being able to spot it quickly with the icon.
    How can I tell FF what icon to use for a link?
    I can't do it on the toolbar or in the properties function for any link. I thought I used to be able to change it at will.

    You can do that with the Bookmark Favicon Changer add-on - https://addons.mozilla.org/firefox/addon/bookmark-favicon-changer

  • Change icons for entry points under Documents.

    Hi all,
    I am working on EP 7.0.
    I want to change the images for the entry points like Public docs, Private Docs, Favorites under Documents.
    I have uploaded the images under Content Admin->KM Content->root  >  etc  >  public  >  mimes  >  images  >  entrypoints but the images that i have uploaded are of .jpg format.
    I have been through a couple of threads and found that it has to a .img format if the logo has to reflect and also the names displayed in the portal and that of the logo has to be the same.
    1. Is it mandatory that the image to be in .img format?
    2. If so how can I make a .jpg to .img.
    I tried uploading a .jpg and changed the name of favorites but the image is not reflected.
    Any help in this regard will be appreciated.
    Regards,
    Sandeep

    Hi Sandeep,
    Please see following, you might find it useful:
    http://help.sap.com/saphelp_nw04/helpdata/en/36/8b6b4066d9bf49e10000000a1550b0/frameset.htm
    You could try to save your images to .jpg save them as .gif and after that rename the file to .img..
    Kind regards,
    Ville

  • Cannot change Icon for dashboard?

    Greetings, I have done some research, and I can change all of the other Icons in the the dock except the dashboard icon. I can change it in the applications folder, but I can't drag it into the dock. When I try to do this it uses only the original icon every time. Has anyone else experienced this? Thanks.
    Grant
    powerbook G4   Mac OS X (10.4.3)  

    Grant,
    I'm sorry it didn't work, I have a few more suggestions though:
    Restart (Worth a try)
    Delete the "com.apple.dashboard.client.plist" and "com.apple.dashboard.plist" files from the preferences folder within your user's library.
    Re-launch the dock (Sorry but I don't know how to do this. I know it can be done but can't remember how)
    That's all I can think of though. Apart from using a program such as Candybar. This may/may-not interest you?
    "The dashboard doesn't even appear in the force quit menu?"
    I think that this is because it is a part of the dock/finder.
    Sam

  • How to change icon of a Folder-track?

    By Folder-track I mean the Folder in Arrange window that is created from "packing reions". Is that even possible in LogicPro7 - to change it's icon?
    I mean I know how to change icons for my audio tracks, audio-instrument tracks. And it would be nice if I can assign different icons for different Folder-tracks.
    I did not find how to do that

    It is possible... use option-command-hold on the icon of the folder in a track in the arrange and up pops the many icons to choose from.
    You can set the icon to something other than the folder.
    To make different folders I guess you would have to do some image editing
    and make your own icons but that is pretty easy.
    Put your user create icons here...
    ~/Library/Application Support/Logic/Images/Icons
    and logic will load your numbered image file instead of the default ones that
    Logic would normaly use.
    Note: 1.png is the file name of the regular folder icon.

  • Change log for CRM service order

    Dear Experts,
      I've created log profile in CRM under IMG path Customer Relationship Management->Basic Functions-> Change log with protocolo " Changed document "  & segment " PRICING_I ". This log profile is attached to transaction type service order.
    Basic idea is to capture the changes made on the pricing in service order. Now with this setup where can i see the trace of changes done in service order. Is there any table that fills with the log  ? 
    Basically i'm trying to find log DB table for pricing with this setup.Can anyone pls suggest me to resolve the issue.
    Regards
    Devika.S

    Hi,
    there are no change logs for CUMULAT_H object because this is only a temporary object in CRM Order buffer. Check for example the function module CRM_CUMULAT_H_READ_OB. You will find out the this module does not read the CUMULATE_H from the DB cumulates the values by reading the item values.  Because of that you will also see that in view CRMV_OBJECTS the change document relevance is not maintained for this object.
    So you will not a change entry for CUMULAT_H in CDHDR/CDPOS. As a workaround for your requirement you can read the changes of CRMD_PRICING_I-NET_VALUE from the change document tables or write a change entry on save into a customer field and/or table.
    Regards
    Nicolai

  • Maintain Change Pointer for Customer Master?(change in Master data)

    Hello everyone,
    i want to capture change in master data .whenever a change happen to  required  field in  customer master an idoc should be create for that and the entry should e made in table CDHDR and CDPOS.
    Please tell me the entire process how  can i achieve this .

    Hi,
    Tables / Functions:
    The change pointers are stored in tables BDCP and BDCPS.
    With release ECC 6.0 SAP delivered a new table BDCP2 for increased performance. Which table shall be used is defined in transaction BD50 (see below). There is a function to migrate “old” change pointers to the new table.
    The function group BD01 contains function modules for reading and updating the new change pointers in table BDCP2.
    BDCP                     
    Change pointer
    BDCP2                    
    Aggregated Change Pointers (BDCP, BDCPS)
    BDCPS                    
    Change pointer: Status
    Prerequisites:
    There has to exist a Change Document Object (CDO) for the SAP-object we change. For standard objects like material masters, vendors or customers these objects already exist. For own business objects we have to define a change document object with transaction SCDO .
    In the corresponding data element for the database field the flag „Change document“ has to be active.  check the details in the transaction
    The usage of change pointers has to be actived generally for the system
    Transaction BD61

  • How to change the text of object icon

    Hi Freinds ,
    We have just upgraded to EEC 6.0 ,
    when the user is loging in french language the text for the object icon (Job)  on OM is the same as object icon (position) .
    Is there a way in which you can change the text for the object icon :
    Regards
    Lakshmi

    Hi Sikindar ,
    We use different languages in different countries , when using the transaction PPOME , The text against icon JOB : appears to be the same as position in french language but  when we log in english it shows the correct text that is JOB ,
    Which report are you talking about .

  • 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.

  • How to set change mode as default for workbench objects

    Hi experts
    I've always wondered if there is a configuration option in NW BW 7 where it can be set whether double clicking a workbench object will show the maintenance screen for that object in change or display mode (default is display). Because is annoying to have to set edit mode every time one double click a workbench object in the development system, and as it is a development system, it would make sense to have edit mode by default instead of display
    I was thinking that it may be related to the client role, but who knows...
    I appreciate your help
    regards

    Not sure where this can be set...if anywhere.
    But how about this for a workaround: Right click the object in RSA1 and the select Change instead of Display.
    That would save you a click if I counted correctly

  • Is there a way to change the default icon for a sound file in KN2

    i have need to include dozens of sound files on each slide that will trigger as text builds. i can handle all the transitions fine but i cannot figure out how to change the standard icon for the sound file.
    i would prefer to have the text be the icon, if that is not possible to have a smaller icon for the file. as i build the page i am ending up with a huge mess, icons covering text, also there is not a intuitive way to tell which sound file is which with out click/playing each file.
    powerbook g4 Mac OS X (10.4.4)

    Did you try:
    OracleBI/web/app/res/s_.../popbin/
    EX:
    line.pcxml Look for <SeriesDefinition ...
    we modified the line width and a few other things. You'll have to modify all the pcxml files for all the chart types you want to customize.

Maybe you are looking for

  • Noob needs help with drivers...

    yeech, so yeah i decided to format my c drive, and surprise surprise, i wasnt quite prepared.... here's the deal, my wireless card works, as i got the drivers for it, but my onboard LAN doesnt, and i have no idea where to get the driver for that...an

  • IMovie09 poor video quality - very strange

    I'm putting together a sequence of movie trailers using clips downloaded from youtube. These are 360p .mp4 files. I import them into iMovie09 and when played from my event library they look exactly the same as the originals. The quality is pretty goo

  • Webcam Project in Flash

    I'm working on a project and I have been told that Flash is capable of doing what I want to do. My project consists of taking a webcam and using it to read panels of color on a spinning wheel. The computer will then play a specific sound based on the

  • Finder's Spotlight Search

    What happened with my Spotlight's Search Criteria? It contains nothing. !http://www.gammarus.pochta.ru/1/screen_094511.jpg!

  • How to create a new paper size preset in photoshop CS6

    Hi, Im trying to create a new paper size preset in PS CS6. I was told if I went to my PS folder, I will find a folder named presets. Inside that folder there should be a text document called "New Doc Sizes.txt" but it's not there. Has anyone any idea