Colourful Lists

Hello All,
I am trying to display an ALV list of the SLIS type ( Type pools slis ).
The requirement goes like the first and the last line must be distinguished from the others. This may be done using colours / a diff font / Font size.
But in FM reuse_alv_list_display, is this possible??
Thanks,
Ravi Bhatnagar

Hi Ravi,
  Follow these steps
1. Add one more field to ur final internal table named COLOR(4).
2.before u display ALV
   data : v_lines type i.
  describe table itab lines v_lines.
  loop at itab.
    if sy-tabix = 1 or sy-tabix = v_last.
       itab-color = 'C510'.
       modify itab index sy-tabix.
    endif.
endloop.
3.in ur layout
   wa_layout-box_fieldname = 'COLOR'.

Similar Messages

  • Anychart pie chart - setting colours to match output (RAG)

    Hi,
    I have a table detailing outstanding issues each with a traffic light status of either red, amber or green. I would like to create an anychart pie chart whose colours match their status to give an easy visual representation of the data.
    I have managed to get it working if there's data in the table for each status type; I've used customised colours in the pie chart and used ORDER by in my SQL (the order of the customised colours listed to match the order of the SQL output), however, if one of the status' has a null value, the colours are assigned Amber 1st, Green 2nd and Red 3rd meaning that if there are no issues of Amber status the green status issues will be amber in colour on the pie chart etc.
    Is this possible to assign specific colours and if so how can I do it?
    I'm working on Apex 3.2.1.
    Thanks in advance

    I've managed to sort this now.
    In case anyone is interested, I created a view that would display the totals for each RAG status including a 0 if total is null and then set custom colours for the pie chart in the order to match the SQL output (i.e. A (amber) first, G (green) second, R (red) third). Simple but it works for my needs.

  • How to disable shortcut keys not listed in the keyboard shortcuts system

    Hi all
    As a Graphic Designer I find the shortcut Shift+F12 amazingly irritating when using QuarkXpress, as this is the key command for editing the colours list. For those of you who don't know this shortcut works exactly the same as F12 (Hide/Show dashboard but in slow motion.
    You may be supprised that I find this of somewhat limited usefulness.
    Can anybody help?
    Ta

    Hi supertottenham
    The Shift key is slo-mo for several functions so I doubt if it can be disabled.
    However if Dashboard is not one of your priorities there is an app called TinkerTool which enables alterations to several of the built in apps including Dashboard which it stops appearing completely including Shift+F12
    It is a freeware download from http://www.bresink.de/
    Hope this is of some use
    Chris

  • Swing - colored text in Combo Box?

    Hello!
    I'm playing around with swing, and i would like to display a "coloured" list in my combobox. The user can select "red","green" and so one. "Red" should be written in red, "green" in green..
    Is this possible??
    I can only change the color of the whole list, with "myComboBox.setForeground(Color.red)"...
    Cheers

    You should provide a new Renderer for your combo box. look at the javax.swing.ListCellRenderer interface

  • Request: Hide generated color definitions

    I'm updating FrameMaker templates to reflect changes to my company's color palette as part of a rebranding initiative. My documents are full of overlapping conditions which means that each document's color definitions window is cluttered with dozens of "fm_gen_nnn" color definitions. It's not possible to permanently eliminate these junk color definitions because if you save as MIF, strip them out, and then reopen the file, there they are again because of the conditional text.
    Request: please *hide* all these "fm_gen_nnn" color definitions in the color definitions window. They are of no use to anyone, and they make it hard to use the window.

    becky,
    FM's new version of conditional text creates a unique colour for *each unique* overlap condition, so, yes this really is where your "fm_gen" colours are coming from.
    Unfortunately, FM's default and generated colours are always placed first in most lists (except those with full sorts, like in the Color > View panels), which kind of limits how you can interact with the colours, i.e. you may not like it, but that's the way it is.
    You're suggestion of hiding the generated colours is an excellent and you should post it in the FM Feature Requests forum (http://forums.adobe.com/community/framemaker/framemaker_feature_requests) and also make an official feature request submission at: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=63
    Note: all FM lists allow the typing of the first character as jump to the first matching item in the list. So if you name your custom colours with a unique starting character, like zLogo_color, then typing "z" when a colour list displayed would jump to that colour (or the first one that starts with "z"). This might make dealing with long lists a bit more tolerable.

  • Ghost of placed/linked psd cutout

    Hi
    Hope I can explain this InDesign Q clearly:
    PhotoShop file.
    With layer mask.
    Simple 'cutout'.
    Placed in InDesign as a psd file.
    Flat colour underneath the photo (in InDesign).
    Looks ok on screen, in PDF's or printed out on any design studio proofing printer.
    Usual 4 colour press PDF sent to printer.
    Printers proof comes back with the rectangular/square footprint of the photo clearly discernable in the flat colour.
    The transparent area of the photo changes, lightens, the flat colour beneath.
    So you can see a change in tone: lighter where the transparanet bit of the photo is, and darker (as it should be) where the photo isn't.
    This is not consistent, sometimes it does, sometimes it doesn't.
    I've had a colour copier do it. I know a studio had a litho proof and a digital banner proof come back with this.
    Only observed it with CS4 (so far, as CS5 hasn't filtered into the studios much yet).
    We found a work around. I'm just interested if anyone else has encountered this and any thoughts.
    Cheers...

    Hi
    Thanks for those, very interesting.
    However I don't think it's the issue... there are no spot colours involved nor shadows.
    In the output window there are always only the four process colours listed - it's one thing we're in the habit of double checking as a matter of best practice.
    Also to overprint would not be a solution in these instances. One of mine was a cutout of a russet apple (so no 100% black) but a fair amount of dusky pink. This was placed over a mossy 4 colour green... no spot, no shadow. The square of the photo was clearly visible.
    I'm wondering if most people still produce cutouts using the pen and this explains why it's not being queried... ah well, not to worry. Thanks for taking the time.

  • Alv output in tree structure

    Hii..
       I want to output alv list which seggregates the data into folders and subfolders according to conditions. How can I assign data to these folders. What function module is good for this purpose, and I also want coloured list output depending on these conditions

    Hi Cynthia,
                    Use FM "RS_TREE_LIST_DISPLAY"
    Refer this code. :
    TYPE-POOLS : STREE.
    TABLES : VBAK, VBAP.
    DATA : WA_NODE TYPE SNODETEXT.
    DATA : NODE_TABLE LIKE WA_NODE OCCURS 0 WITH HEADER LINE.
    TYPES : BEGIN OF D_VBAK,
            VBELN TYPE VBELN_VA,
            ERDAT TYPE ERDAT,
            KUNNR TYPE KUNAG,
            END OF D_VBAK.
    TYPES : BEGIN OF D_VBAP,
            VBELN TYPE VBELN_VA,
            POSNR TYPE POSNR_VA,
            MATNR TYPE MATNR,
            VRKME TYPE VRKME,
            KWMENG TYPE KWMENG,
            ARKTX TYPE ARKTX,
            END OF D_VBAP.
    TYPES : BEGIN OF D_LIKP,
            VBELV TYPE VBELN_VON,
            VBELN TYPE VBELN_NACH,
            END OF D_LIKP.
    TYPES : BEGIN OF D_VBRK,
            VBELV TYPE VBELN_VON,
            VBELN TYPE VBELN_NACH,
            END OF D_VBRK.
    DATA : I_VBAK TYPE STANDARD TABLE OF D_VBAK WITH HEADER LINE,
           I_VBAP TYPE STANDARD TABLE OF D_VBAP WITH HEADER LINE,
           I_LIKP TYPE STANDARD TABLE OF D_LIKP WITH HEADER LINE,
           I_VBRK TYPE STANDARD TABLE OF D_VBRK WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
    SELECT-OPTIONS : S_VBELN FOR VBAK-VBELN.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
    PERFORM FETCH_DATA.
    PERFORM FILL_NODES.
    PERFORM TREE_DISPLAY.
    FORM USER_COMMAND TABLES  NODE STRUCTURE SEUCOMM
                      USING COMMAND
                      CHANGING EXIT
                               LIST_REFRESH .
      DATA : D_VBELN TYPE VBELN_VA.
      DATA : D_PARENT TYPE n length 6.
      READ TABLE NODE_TABLE WITH KEY ID = NODE-PARENT.
      IF NODE_TABLE-NAME = 'INVOICE'.
      SET PARAMETER ID 'VF' FIELD NODE-NAME.
      CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.
      ELSEIF NODE_TABLE-NAME = 'DELIVERY'.
      SET PARAMETER ID 'VL' FIELD NODE-NAME.
      CALL TRANSACTION 'VL03N' AND SKIP FIRST SCREEN.
      ELSEIF NODE_TABLE-NAME = 'ITEM DATA'.
      D_PARENT = NODE-PARENT - 1.
      READ TABLE NODE_TABLE WITH KEY ID = D_PARENT.
      D_VBELN = NODE_TABLE-NAME.
      SET PARAMETER ID 'AUN' FIELD D_VBELN.
      CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
      ENDIF.
    ENDFORM.
    *&      Form  FIELD_VALIDATION
          text
    -->  p1        text
    <--  p2        text
    form FIELD_VALIDATION .
    SELECT VBELN INTO TABLE I_VBAK
                 FROM VBAK
                 WHERE VBELN IN S_VBELN.
    IF SY-SUBRC <> 0.
    MESSAGE E201.
    ENDIF.
    SELECT VBELN INTO TABLE I_VBAK
                 FROM VBAK
                 WHERE VBELN = S_VBELN-HIGH.
    IF SY-SUBRC <> 0.
    MESSAGE E201.
    ENDIF.
    endform.                    " FIELD_VALIDATION
    *&      Form  FETCH_DATA
          text
    -->  p1        text
    <--  p2        text
    form FETCH_DATA .
    SELECT VBELN
           ERDAT
           KUNNR INTO TABLE I_VBAK
                 FROM VBAK
                 WHERE VBELN IN S_VBELN.
    SELECT VBELN
           POSNR
           MATNR
           VRKME
           KWMENG
           ARKTX
           INTO  TABLE I_VBAP
                 FROM VBAP
                 FOR ALL ENTRIES IN I_VBAK
                 WHERE VBELN = I_VBAK-VBELN.
    SELECT VBELV
           VBELN
           INTO TABLE I_LIKP
           FROM VBFA
           FOR ALL ENTRIES IN I_VBAK
           WHERE VBELV    = I_VBAK-VBELN
           AND   VBTYP_N  = 'J'.
    SELECT VBELV
           VBELN
           INTO TABLE I_VBRK
           FROM VBFA
           FOR ALL ENTRIES IN I_VBAK
           WHERE VBELV    = I_VBAK-VBELN
           AND   VBTYP_N  = 'M'.
    endform.                    " FETCH_DATA
    *&      Form  FILL_NODES
          text
    -->  p1        text
    <--  p2        text
    form FILL_NODES .
    NODE_TABLE-TYPE = 'T'.
    NODE_TABLE-NAME = 'SALES ORDER'.
    NODE_TABLE-TLEVEL = '01'.
    NODE_TABLE-NLENGTH = '15'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '20'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    LOOP AT I_VBAK.
    AT NEW VBELN.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = I_VBAK-VBELN.
    NODE_TABLE-TLEVEL = '02'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    ENDAT.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'ITEM DATA'.
    NODE_TABLE-TLEVEL = '03'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    LOOP AT I_VBAP WHERE VBELN = I_VBAK-VBELN.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = I_VBAP-POSNR.
    NODE_TABLE-TLEVEL = '04'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'MATERIAL NO'.
    NODE_TABLE-TLEVEL = '05'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = I_VBAP-MATNR.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'UNIT'.
    NODE_TABLE-TLEVEL = '05'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = I_VBAP-VRKME.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'QUANTITY'.
    NODE_TABLE-TLEVEL = '05'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = I_VBAP-KWMENG.
    NODE_TABLE-TLENGTH = '40'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'DESCRIPTION'.
    NODE_TABLE-TLEVEL = '05'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = I_VBAP-ARKTX.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    ENDLOOP.
    LOOP AT I_LIKP WHERE VBELV = I_VBAK-VBELN.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'DELIVERY'.
    NODE_TABLE-TLEVEL = '03'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = I_LIKP-VBELN.
    NODE_TABLE-TLEVEL = '04'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    ENDLOOP.
    LOOP AT I_VBRK WHERE VBELV = I_VBAK-VBELN.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = 'INVOICE'.
    NODE_TABLE-TLEVEL = '03'.
    NODE_TABLE-NLENGTH = '15'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '20'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    NODE_TABLE-TYPE = 'P'.
    NODE_TABLE-NAME = I_VBRK-VBELN.
    NODE_TABLE-TLEVEL = '04'.
    NODE_TABLE-NLENGTH = '20'.
    NODE_TABLE-COLOR = '4'.
    NODE_TABLE-TEXT = ''.
    NODE_TABLE-TLENGTH = '30'.
    NODE_TABLE-TCOLOR  = '3'.
    APPEND NODE_TABLE.
    CLEAR NODE_TABLE.
    ENDLOOP.
    ENDLOOP.
    endform.                    " FILL_NODES
    *&      Form  TREE_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    form TREE_DISPLAY .
    CALL FUNCTION 'RS_TREE_CONSTRUCT'
    EXPORTING
      INSERT_ID                = '000000'
      RELATIONSHIP             = ' '
      LOG                      =
      TABLES
        nodetab                  = node_table
    EXCEPTIONS
      TREE_FAILURE             = 1
      ID_NOT_FOUND             = 2
      WRONG_RELATIONSHIP       = 3
      OTHERS                   = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'RS_TREE_LIST_DISPLAY'
    EXPORTING
      CALLBACK_PROGRAM                =
       CALLBACK_USER_COMMAND           = 'USER_COMMAND'
      CALLBACK_TEXT_DISPLAY           =
      CALLBACK_MOREINFO_DISPLAY       =
      CALLBACK_COLOR_DISPLAY          =
      CALLBACK_TOP_OF_PAGE            =
      CALLBACK_GUI_STATUS             =
      CALLBACK_CONTEXT_MENU           =
      STATUS                          = 'IMPLICIT'
      CHECK_DUPLICATE_NAME            = '1'
      COLOR_OF_NODE                   = '4'
      COLOR_OF_MARK                   = '3'
      COLOR_OF_LINK                   = '1'
      COLOR_OF_MATCH                  = '5'
      LOWER_CASE_SENSITIVE            = ' '
      MODIFICATION_LOG                = ' '
      NODE_LENGTH                     = 30
      TEXT_LENGTH                     = 75
      TEXT_LENGTH1                    = 0
      TEXT_LENGTH2                    = 0
      RETURN_MARKED_SUBTREE           = ' '
      SCREEN_START_COLUMN             = 0
      SCREEN_START_LINE               = 0
      SCREEN_END_COLUMN               = 0
      SCREEN_END_LINE                 = 0
      SUPPRESS_NODE_OUTPUT            = ' '
      LAYOUT_MODE                     = ' '
       USE_CONTROL                     = 'F'
    IMPORTING
      F15                             =
    Reward points if helpful.
    Regards,
    Hemant

  • Nokia X3-02 Casing Cover

    Hello, is the nokia x3-02 available in white color?

    Yes..It is.. Refer this ...See the 5 colour tabs next to the Phones' picture..
    BTW availability of Colours is Region dependant too...as you may see 6 colours listed here ...

  • Zen micro photo, Austra

    hey, this is more directed to to the creative people but maybe someone else knows. Currently in australia we have pre oreders for zen micro photos, though only in selected colours, i looked at the australian creative website and they only have 6 of the colours listed on the zen micro photo page. Does that mean only those 6 colours are going to be released here? Because i want the orange one and they hav'nt got that listed, anyone know anything?
    All other country wesites have all colours listed, america, Asia and such
    Thanks
    Ant

    Information on LiON battery lifespans.
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">A lithium-ion battery provides 300-500 discharge/charge cycles. The battery prefers a partial rather than a full discharge. Frequent full discharges should be avoided when possible. Instead, charge the battery more often or use a larger battery. There is no concern of memory when applying unscheduled charges.
    Although lithium-ion is memory-free in terms of performance deterioration, batteries with fuel gauges exhibit what engineers refer to as "digital memory". Here is the reason: Short discharges with subsequent recharges do not provide the periodic calibration needed to synchronize the fuel gauge with the battery's state-of-charge. A deliberate full discharge and recharge every 30 charges corrects this problem. Letting the battery run down to the cut-off point in the equipment will do this. If ignored, the fuel gauge will become increasingly less accurate. (Read more in 'Choosing the right battery for portable computing', Part Two.)
    Aging of lithium-ion is an issue that is often ignored. A lithium-ion battery in use typically lasts between 2-3 years. The capacity loss manifests itself in increased internal resistance caused by oxidation. Eventually, the cell resistance reaches a point where the pack can no longer deli'ver the stored energy although the battery may still have ample charge

  • CD Design

    Hi,
    I have some PDF documents which I will be transferring or burning onto a CD-Recordable 700minutes CD.
    This I can do.
    But what I wanted to do was to create or make the CD I guess, more interactive. By this I mean that instead of just uploading the pdf files onto the cd, I wanted the cd to start with colour, list of contents linked to the various pdf files and sections on cd.
    How can I do this?
    Which software should I use?
    Thanks and I look forward to your suggestion.
    Claudia.

    not sure if this helps and im sure adobe wont like the reply...oops
    but if your on a mac you have idvd on board which should do a nice job for free.
    just gotta wade thru the tutorials!

  • HT2513 How do you change the name of a reminder in the reminder list.  I right click and then choose "get information"  I can change the colour of the reminder but when I type in the name that I want and then press enter the name stays as "untitled".

    How do you change the name of a reminder in the reminder list.  I right click and then choose "get information"  I can change the colour of the reminder but when I type in the name that I want and then press enter the name stays as "untitled"

    Jerry,
    Thanks for replying again. I've got a little bit further thanks to you. I tried the US keyboard layout as you seemed pretty definte that it should work. This time I applied the setting and also started the language toolbar and selected it from there.
    Hey presto, I've got the @ where it should be. Excellent.
    However the single quote ' works in a weird way. When I press it, it doesn't show up on the screen. But when I press another key, I get the single quote plus the next key I press. When I press the single quote twice, I get 2 of them. This is also the same with the SHIFT ' key. i.e. for the double quotes.
    Very strange. I'll look at other keyboards and see where that gets me.
    Thanks,  Maz

  • How do I get Mac OSX 10.6.4 to print to a Canon iRC2380 colour printer? Using the driver in the Mac's list doesn't work., How do I get Mac OSX 10.6.4 to print to A Canon iRC2380 colour printer? Using the driver in the Mac's list doesn't work.

    How do I get Mac OSX 10.6.4 to print to a Canon iRC2380 colour printer? Using the driver in the Mac's list doesn't work., How do I get Mac OSX 10.6.4 to print to A Canon iRC2380 colour printer? Using the driver in the Mac's list doesn't work.

    Not sure which driver you mean when you say "the driver in the Mac's list". Apple does not provide a driver for this device, so if you mean one of the default printers that are included with 10.6, like the Generic Postscript or Generic PCL, then these will only work if the optional PS or PCL print kits were installed in the machine. Given your inability to print then it would seem that you have neither kit installed. So this would require you to install the Canon UFR2 driver, which you can obtain via this link.
    With the UFR2 driver installed, you add the printer using IP > LPD. Enter the IP address of the iRC2380, leave the Queue name blank and change the Name to iRC2380. Leave the Location field blank and in the Print Using menu, browse to the "Canon iR C2380/2550 UFR II (UK)". Click OK and then Add to complete the queue creation. You should now be able to print. Please reply if it does not work.

  • Calendar colours broken suddenly, and odd new calendar called, "New List"?

    Hi,
    So, suddenly today iCloud has changed the colours of two or three of my calendars spontaneously after them being the same colour for months, and won't let me change them back - after a sync they just revert to whatever iCloud has decided they must now be.
    I've checked in BusyCal (my default) and Calendar, and changes to either of them are just reverted on sync.  There doesn't seem to be a way to change colours in iCloud itself.
    Also, I now have a new calendar in iCloud all of a sudden called, "New List", with a tick next to it.  If I delete it it just comes back on next sync.  This doesn't appear in iCloud or in Calendar, only BusyCal.
    Help?
    EDIT: I'm running 10.8.5.  Apple's Discussion board doesn't seem to want to let me change my device details no matter how hard I try.

    This is the response I received from BusyCal support yesterday...
    Something changed on iCloud recently that affects calendar colors in BusyCal. We are investigating it and will notify you once we have found the cause of the problem or a solution.
    Regards,
    -John
    [email protected]

  • Select list coloured based on selected value

    Hello,
    Could anyone please tell me if it is possible to display a LOV with a background colour based on the selected value ?
    In fact , I have a report with many select lists whose value can be Y,N,N/A and I would like that the corresponding LOVs have the background colour set according to the value .
    Thanks in advance,
    Andreea
    Edited by: user12064977 on 20-Oct-2009 02:15

    Andreea,
    Lets assume your select list item name is P1_SL and return values as follows
    Display -  Return
    N/A     -  NA
    YES     -   Y
    NO      -   NEdit you page and put JS code similar to following in footer section
    <script>
    slval = $v("P1_SL");
    sl = $x("P1_SL");
    if(slval=="Y")
    sl.style.backgroundColor="#FFCC80";
    else if (slval=="N")
    sl.style.backgroundColor="#CCAA80";
    else
    sl.style.backgroundColor="#CCCC80";
    </script>So background color will be set on page load.
    Now edit your page and put JS code similar to following in HTML Header section
    <script>
    function setColor(this1)
    slval = this1.value;
    if(slval=="Y")
    this1.style.backgroundColor="#FFCC80";
    else if (slval=="N")
    this1.style.backgroundColor="#FFAA80";
    else
    this1.style.backgroundColor="#CCCC80";
    </script>Edit your select list item and set following for 'HTML Form Element Attributes'
    onChange="javascript:setColor(this);"So the select list color will be set accordingly 'onChange'.
    Cheers,
    Hari

  • List all colours in document CS5?

    Hello,
    Does anybody know if there's a way of getting a list of all the colours and tints used in a document? Swatches were not used by whoever created this document, apparently.
    Many thanks,
    Ariel

    Did you try selecting Add Used Colors from the Swatches flyout menu?
    JET

Maybe you are looking for

  • Getting error in expdp....

    Dear All, My database is 11gR2 on Linux. During mid of expdp process I am getting this error: ORA-31693: Table data object "ETISLBILLING"."SDR_TBLICPCDRSUMMARY" failed to load/unload and is being skipped due to error: ORA-29913: error in executing OD

  • Data load results in Endless loop

    hi guys i have a infopackage in a process chain it was working fine, until i retransported the process chain without the info package, now when i run the process chain or the info package(without process chain) it goes into an endless loop. i get a s

  • Export tables with lowercase names

    Has anyone ever done a table export on a table with a lower case name? I have set up a parameter file with the entry: tables=USER."table_name" but I get a: EXP-00011: USER."table_name" does not exist The table DOES exist, and if I ever find the perso

  • Restart Problem-- Won't let me boot my computer up anymore.

    I downloaded an update, and it prompted me to restart my computer. When I did, this error message comes up, and it won't let me reboot my Macbook. It just stays on this screen, no matter what I do. I've also tried to re-install OSX by using the origi

  • Problem in MIT-SCREEN-SAVER

    I'm using beforelight (v1.3) from XFree86. This program uses MIT-SCREEN-SAVER for screensaver event. It works fine under 5.6, and 5.8 if built with 32-bit. But after I rebuilt it with 64-bit (add -xarch=v9a in Makefile) and ran the binary, I got a co