How to shade alternate rows in deski

Hi all,
I am new to business objects. I have a requirement from the client that I need to differentiate the alternate rows by different shadings.
Can anyone help me out.
Thanks & Regards,
BO

larryc wrote:
Yes... The value of LineShading is 1.00 for every row...
Something is strange, then. I use this Code:
=Mod(LineNumber() , 2)
all the time, and it should work okay. Not to beat a dead horse, but are you absolutely sure that's the calculation that you are doing?
If Linenumber() is working, then the Mod() function should be fine. But here's an alternate calculation you can try...
Code:
=If (Even(LineNumber())) Then 1 else 0
That should also give you alternating rows, based on whether the Line Number value is even or not. Perhaps give that a try...
All the best,
Praveen

Similar Messages

  • How to show alternate rows in different colors?

    How to show alternate rows in different colors?
    Thanks

    you should put these kind of stmt in the if condition for even row and odd row
    <xsl:attribute xdofo:ctx="block" name="background-color">yellow</xsl:attribute>
    this should help you
    Re: About highlight row
    http://blogs.oracle.com/xmlpublisher/2007/08/09
    http://garethroberts.blogspot.com/2007/09/bi-publisher-color-list-and-cell.html

  • How to display alternate row colors in struts form?

    hi,
    I am using struts lib to display data in jsp page.
    <logic:iterate id="result" name="listofPorjetcts" indexId = "i">
    <tr>
    <td ><bean:write name="result" property="projectName"/></td>
    </tr>
    how to display alternaternate row colors ?
    any one can help?

    hey i not sure abt structs, what i did for jsp was using a boolean.
    declare boolean red=true;
    <tr
    <%
    if(red){%>
    class="red" >
    <%
    red=false;
    }else{%>
    class="white">
    <%
    red=true;
    %>
    take note that the class is a predefined css. I think u can use style="background-color:#red "
    You can seearch the web for more info.

  • Using alternate rows with Spry Data Set

    Can anyone provide more information on how to implement alternate row colors with a Spry Data Set?  What I have done is:
    Create spry data set using HTML page as the data set
    The html page that displays the data set is:  <div spry:region="equipment">
    In the default.css page that is linked, I added the info in note #1 below
    When the page displays, no colors appear. Tried changing the colors and still no luck.  Is there another step to do?
    Note #1:
    within the default.css, the following are declared:
    #equipment odd {
    background-color: #CCC;
    #equipment even {
    background-color: “#F2F2F2;
    Note #2:
    Here is a link to see the actual pages referenced above.
    Any ideas? Getting frustrated!!  Thanks in advance for any advice.

    You are going to kick yourself, but, you haven't assigned any page element the ID #equipment. The region is called that but the table or the DIV does not have an idea and your selector matches nothing...

  • Alternate Row Shading in Summary Reports

    I know how to get alternate row shading in the Detail section of a report.  What I need to know, is in a summary report, where the detail section is suppressed and the Group Footer section is acting as your detail section, how does one apply alternate row shading to that?  My usual method isn't working.
    Thanks!

    What are you trying?  Something like
    If GroupNumber mod 2 = 1 then
        crSilver
    Else
        crWhite
    The Panda

  • How to get all rows in table to red using alternate rows properties option

    How to get all rows in table to red using alternate rows properties option

    Hi Khrisna,
    You can get all rows red by selecting the color red in the "Color" and "frequency" to 1 under the "Alternate Row/Column colors".
    I tried doing it and the colors freaked me out (all red) :-D
    Kindly tell me if im missing something.
    Regards,
    John Vincent

  • How Alternate rows to be colored  in an ALV Grid report?

    How Alternate rows to be colored  in an ALV Grid report?

    hi,
    try this
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
      line_color(4) TYPE c,     "Used to store row color attributes
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE slis_layout_alv,
          gd_repid     LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      fieldcatalog-col_pos     = 4.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      fieldcatalog-col_pos     = 5.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-info_fieldname =      'LINE_COLOR'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = gd_repid
          is_layout          = gd_layout
          it_fieldcat        = fieldcatalog[]
          i_save             = 'X'
        TABLES
          t_outtab           = it_ekko
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      DATA: ld_color(1) TYPE c.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekko.
    *Populate field with color attributes
      LOOP AT it_ekko INTO wa_ekko.
    Populate color variable with colour properties
    Char 1 = C (This is a color property)
    Char 2 = 3 (Color codes: 1 - 7)
    Char 3 = Intensified on/off ( 1 or 0 )
    Char 4 = Inverse display on/off ( 1 or 0 )
              i.e. wa_ekko-line_color = 'C410'
        ld_color = ld_color + 1.
    Only 7 colours so need to reset color value
        IF ld_color = 8.
          ld_color = 1.
        ENDIF.
        CONCATENATE 'C' ld_color '10' INTO wa_ekko-line_color.
    wa_ekko-line_color = 'C410'.
        MODIFY it_ekko FROM wa_ekko.
      ENDLOOP.
    ENDFORM.                    " DATA_RETRIEVAL

  • How to create a Listbox in UI5 with alternate row color for the Listitems.

    Hi,
    I need to create a Listbox for browser (not mobile). But not getting any properties for alternate row color for the list items.
    If anyone worked on this pls share.
    Thanks,
    Nigam

    Hi Guys
    Chandra's solution is sweet.
    Here is another one so that it will not affect the other lists (if any) that you do not want alternate colors.
    -D

  • How to shade properly in Illustrator?

    I'm trying to figure out how to shade a drawing in Illustrator in roughly the same way I would in Photoshop. Usually I would just select a surface with the magic wand, pick a brush and colour, and shade freehand. Simple!
    Well, that doesn't work in Illustrator! If I select a surface and pick a colour to shade with, it changes the base colour. Also, selecting a surface doesn't confine your shading within it; you can still paint outside the surface.
    I've watched a dozen tutorials on YouTube, but none of them answer my question. Their method of shading is completely impractical, since they draw the outline of the shading with the pen tool on a separate layer. That's not what I want. I'm using a segmented character for animation, so the shading is very strict.
    I just want to:
    - Select a surface and shade freehand.
    - Confine my shading to one surface like with Photoshop's magic wand.
    How do I do this?

    This is the most common of beginner fallacies: bringing completely erroneous assumptions that a program like Illustrator works like Photoshop. It doesn't. It's an entirely different world.
    Because this subject is so often repeated here, the following is intended as "open" advice to all (at least those with ears to hear); not as an affront to originator of this thread or anyone else. (I wish something at least conceptually like it were provided as an omnipresent FAQ or even required reading to which to direct newcomers.)
    (Apology for CAPS in the following. It's not in this case meant as yelling. I've used it in lieu of italics [for basic emphasis] because of bugs introduced yet again in the rich text editor of this forum.)
    When starting out with vector-based drawing program (any of them, not just Illustrator), you are far better off FORGETTING Photoshop. It's an entirely different process for entirely different purposes. And the differences are for good and legitimate reasons.
    I've watched a dozen tutorials on YouTube, but none of them answer my question.
    You're just making it harder on yourself. Diving into online "tutorials" posted all over the web by other Illustrator users IS NOT the way to get started. Such "tutorials" are created by other users of all levels of actual experience. The fact that the subject of a "tutorial" looks like something you want to do is absolutely no guarantee that its author is any more "expert" than you, nor that--even if he is--has enough technical writing skill or dilligence to accurately describe the process, nor that the process being described is even best practice in the first place. If I had a buck for every online Illustrator "tutorial" authored by relative beginners giving other beginners downright bad advice (blind leading the blind), I'd be richer than Adobe hopes to become by abusing its customers with a rent-only licensing scheme.
    The way to learn any software is to start with its official documentation. Read it start-to-finish, and work through every operation described as you go. There is no shortcut to this, and it IS the shortest path toward developing actual balanced proficiency. Don't trot out some bogus special case appeal like "I'm just not the type able to read documentation; I'm a 'visual' person," etc., etc., ad nauseam. If you can read posts in a user forum, you can also read the--yes, dry but at least RELIABLE--instructions in the provided documentation.
    Forget the self-proclaimed "expertise" of everybody-and-his-brother's online "tutorials." Buckle down with the provided documentation and use the program according to its instructions until you have a strong foundational understanding. Only then dink around with "clever tutorials" because only then will you at least have some discernment as to whether the "tutorial" is accurate, complete, or even best practice.
    The fundamental, bedrock, foundational difference between programs like Photoshop and programs like Illustrator boils down to this: There are TWO basic and very DIFFERENT kinds of computer graphics: Raster images and vector-based drawings. They are equally important. EVERY serious digital graphics producer should develop proficiency with BOTH. Think of them as two hemispheres of the entire graphics world. If you're only proficient with one, you are living blind to an entire half of your chosen endeavor world.
    Mainstream graphics programs produce graphics in either of two ways:
    By filling a rectangular area with an array (rows and columns) of color values, completely "dumb" to any idea of actual "shape" (raster imaging; Photoshop and similar programs).
    By describing actual shapes in terms of mathematical formulae (vector-based drawing; Illustrator and similar programs).
    Now, given that, wouldn't you EXPECT those two classes of graphics programs to work differently? Like it or not, they do and they SHOULD. One is not inherently more difficult than the other. Like anything else, it's a matter of first grasping the underlying concepts involved and then developing familiarity with the tool. You wouldn't expect English literature to be learned and executed in the same way one learns and executes algebra. You don't roof a house with the same tools or by the same methods used to paint it.
    So set aside your initial frustration because it IS generally-speaking invalid (despite Illustrator's worst-of-class vector drawing interface). Don't condemn something for which you don't yet possess even the most basic conceptual understating because any assumption that you understand ANYTHING basic about Illustrator on the basis that you understand the basics of Photoshop is wrong. The two exist as separate programs for FUNCTIONAL REASONS, not just to provide some "alternative preference" for doing the same things.
    I'm trying to figure out how to shade a drawing in Illustrator in roughly the same way I would in Photoshop.
    Vector-based drawing programs are inherently OBJECT-BASED by nature. A vector drawing is essentially a stack of any number of discrete, individual, independent OBJECTS. Each object may be a path (mathematically defined shape), a raster image, or a live text object . By contrast, when you work in a program like Photoshop, you are basically engaged in creating just one SINGLE object (a raster image).
    Because vector paths are mathematically-defined OBJECTS, things like color and gradients and effects are ASSIGNED TO them as attributes and commands. This is entirely different from merely re-coloring pixels (which are not discrete objects, but mere color values in the single rectangular array), which is all you're really doing when you "color something" in a raster imaging program. There's no "someTHING" to color; there's just a subset of the color values to alter.
    If I select a surface,...
    As you read and work through a program's provided documentation, pay attention to the terminology and force yourself  to use that terminology when discussing it with others. "Surface" doesn't really mean anything in Illustrator (except perhaps generically in reference to its 3D Effect), just as "Node" means something clearly defined in CorelDraw, but not in Illustrator.
    ...and pick a colour to shade with...
    By the same token, when asking questions avoid making up your own language to describe what you're doing. "Pick a color to shade with" makes sense to you, but is ambiguous in the context of Illustrator; it can be interpreted as your doing any of several things in multiple very different ways. Always state what you are doing in tool-by-tool, command-by-command, click-by-click ordered sequence --again, always using the program's terminology.
    Don't apologize for being a beginner. (We all started as beginners, and It will be obvious in your question if you are one anyway.) On the other hand, also don't appeal for special treatment for being a beginner. It's not an excuse for at least trying to use the program's terminology, because you have the same access to the provided documentation as everyone else did when they were beginners.
    Their [tutorials'] method of shading is completely impractical...since they draw the outline of the shading with the pen tool on a separate layer. That's not what I want. I'm using a segmented character for animation, so the shading is very strict
    Don't assume that the methods employed for one kind of drawing problem are "impractical" or "inferior" just on the basis that they're not best for your specific use. You can easily embarrass yourself with such assumed "superiority" when you find out that you're failing to understand the most basic things about the program. And don't assume that your use is inherently "more advanced" than someone else's, for example like the attitude frequently exhibited by users of 3D modeling programs who assume the "technical sophistication" and "complexity" of a third dimension (egads!) must surely render the use of a merely 2D program brain-dead simple. Their own assumption of "this has to be simple compared to what I already understand" becomes their own insurmountable stumbling block in learning.)
    JET

  • Scroll bar and alternate row color in Trinidad table

    I am using Jdeveloper 11g
    I have two question on tinidad table see below sample code
    *1)How to set scroll bar on table*
    *2)how to set different colors for alternate rows*
    <tr:form>
    <tr:panelGroupLayout>
    <tr:panelFormLayout inlineStyle="width:965px; height:512px; margin:50px;">
    <f:facet name="footer">
    <tr:table value="#{bindings.UserFavoriteVO.collectionModel}"
    var="row" rows="#{bindings.UserFavoriteVO.rangeSize}"
    binding="#{UserActionBean.table1}"
    emptyText="#{bindings.UserFavoriteVO.viewable ? 'No rows yet.' : 'Access Denied.'}"
    rowSelection="multiple" id="table"
    inlineStyle="border-width:none; outline-color:ActiveCaption; outline-style:groove; border-color:Navy; color:MenuText; font-size:medium;"
    horizontalGridVisible="true" verticalGridVisible="false">
    Thanks for all help
    Jaydeep

    Hi Sireesha,
    Thanks for reply.
    I forgot to mentioned that i already tried that option *(rowBandingInterval)*
    <tr:table value="#{bindings.UserFavoriteVO.collectionModel}"
    var="row" rows="#{bindings.UserFavoriteVO.rangeSize}"
    binding="#{UserActionBean.table1}"
    emptyText="#{bindings.UserFavoriteVO.viewable ? 'No rows yet.' : 'Access Denied.'}"
    rowSelection="multiple" id="table"
    inlineStyle="border-width:none; outline-color:ActiveCaption; outline-style:groove; border-color:Navy; color:MenuText; font-size:medium;"
    horizontalGridVisible="true" verticalGridVisible="false"
    rowBandingInterval="1">
    but no any success.
    *@ scroll* I found in Frank post it is related to ADF table .So i just want to ask will it be applicable to Trinidad table too.

  • How To Color Alternate Lines in ADF Table

    Hi everyone, I want to color alternate the lines of a ADF Table. I have tried the “banding” property of the <af:table> tag but it alternates rows colours with white background. I would like to alternate with two custom colours like blue and light blue.
    Is this possible?
    Thanks in advance.
    PS: I have checked the styles funcionatily of ADF faces but I could not find any solution there.

    Hi,
    I am new to the Jdeveloper and also for the adf components.Actually i am working with the project which has already designed.Now i have to change the look n feel.
    I want to change the color of the table colums.So could u tell me in which file i have to change and how.
    I put in the jdeveloper.css like this ......
    column.cell-number-band{
    color :Teal
    And in the adf-faces-config.xml i had only "oracle" type of skin.
    I have to finish the work tomarrow itself......
    So anybody helps me it will be greatfull me.

  • Alternate rows with different number of columns in JTable or similar

    Hi Guys,
    I have tried searching google and these forums, but have not been able to find what I am looking for.
    Looking for ideas, on how to do the following
    I have a swing application, that I would like to have alternate rows
    eg.
    1st row has 10 columns
    2nd row has 1 column, that expands all 10 columns of the 1st row
    and keeps alternating like this for the rest of the records in the table.
    Is there a special JTable that can do this for me, or has anyone had to do this before.
    Thanks,
    Mac

    an example of merging cells is here
    [http://www.crionics.com/products/opensource/faq/swing_ex/JTableExamples4.html]
    scroll down to 'Multi-Span Cell'
    run the program, highlight some cells, click combine.
    if that's the type of thing you're after, modify your code per what's in 'combine'
    note: the original code (now) produces a stack overflow error (don't know if it's been fixed in the above link),
    but if you get that error, in AttributiveCellTableModel's setDataVector( Vector newData, Vector columnNames )
    change
    setColumnIdentifiers(columnNames);
    to
    columnIdentifiers = columnNames;

  • Alternate Row Shading or Formatting

    Hello,
    I have a report in which I want to shade the backgroud color for alternate rows.  More specifically, I'm trying to do this for a group footer (the details are suppressed and the group footer is the most detailed level displayed).  When I do this, not every other line is shaded.  Sometimes it is three in a row, sometimes once, etc.  I'm assuming this is because groups with a $0 value are suppressed.  This is the formula I'm using:  
    if (recordnumber mod 2) > 0 then Color (238,238,238) else crwhite
    Any suggestions would be greatly appreciated.
    Thanks,
    Dan

    Try this
    //Place this formula in the  group header/footer section that you with to be shaded and only in that group
    Whileprintingrecords;
    global numbervar shading;
    shading := shading + 1
    ///place the following formula in the section expert for group footer/header you wish to shade
    Whileprintingrecords;
    global numbervar shading;
    if remainder(shading,2)=1 then Color (238,238,238) else crwhite

  • Alternate row shading in tables

    Hi all
    I've been trying again and again to get alternate rows of my long table in Frame 11 to be shaded.
    I succeeded, then did something to remove them, and now I CANNOT get them to reapply.
    I am using the Table Designer, Shading tab.
    The Heading and Footing Shading works fine, it changes as I change colour or fill.
    But the Body Shading refuses to.
    Have set Body shading to Shade by Body Rows
    First : 1
    Fill 3%
    Color: Secondary Blue
    Next 1
    Fill: None   
    Colour White
    When I apply, nothing seems to change. I have the whole table highlighted.
    The Custom Ruling and Shading dialog works fine but this is a long table and I don't want to go down that route. Though given the amount of time I've spent on this I probably could have done it twice over...
    Can anyone help please? It feels like a FM bug but it could just be something I'm doing wrong.
    Thanks
    Laura

    To understand what your table tag is doing, create a blank table using that table tag.
    Once you've got the settings of that table squared away, apply to your existing table.
    If you still have problems, then you have custom ruling and shading applied (which I strongly recommend against, along with other format overrides). Use Error's method for removing the overrides, but examine your choices carefully; the custom ruling and shading box is particularly confusing.
    -Matt 
    Matt Sullivan
    roundpeg, Inc. contractor
    @mattrsullivan
    P: 714 798-7596 | F: 360.230.7269 | [email protected]

  • Webi Alternate Row Colour

    Hi experts,
    I have a webi report which colour lines must have alternate colours. I customized that on the table proporties, in webi, but it's not working... is there some kind of trick to activate alternate row colours?
    Thanks you.
    Cheers!
    Inê

    If you change "Alternate Row/Column colors"property of block then it should applied for that particular block only.
    If you want other colors for other blocks then do the same steps.
    Frequency is by default 2. Which tells us the applied color should show alternatively, and 3,4, etc..., follows like that.
    FYI if you change property of a block and insert new objects then you can't see colors again for the same block.
    Manually you need to do it again to appear.
    Eg:
    if i individually insert say 5 rows to block and drag unique report variables to each row, the alternative colours are not coming up.
    How to acieve this?
    This is the problem, the alternate row fucntion works for a row which have more than one value. In your case you have different variables for each row then you have to do it manually. Remember that if you have more than one value for any variable the second row of that variable will be 255,255,255. By default first row gets the alternate color. You get the same alternate color for all 5 rows because it's first row of all the 5 variables.
    One trick is give alternate color as 239,239,239 for first row and 255,255,255 for second and so on.
    Hope you got me.
    Gracias...!!

Maybe you are looking for

  • Getting no data found error while CSV download

    Hi, I have a report generated from the PL/SQL returning the query and I enabled the CSV Download option. But, when I try downloading the report contents using CSV download option, the excel sheet contains message "no data found". I enabled sorting an

  • Bluetooth mouse issue. laptop wont pick it up

    Hello everyone, i bouth a z8000 bluetooth mouse yesterday for my Envy dv7-7270ca, but the mouse will not show up anywhere when i have the computer looking for it. i need help or advice. windows 8.1 64bit

  • Shift-Tab to decrease indent level in list not working.

    I really can't say it any clearer: when I press Shift-Tab to decrease the indent level (for example in an outline-style list), it is not decreasing the indent level. This is for Pages 5.1/Mavericks 10.9.1 This used to work in iWork '09 but I just tri

  • My ipod isn't displayed in my computer

    before when i connected my ipod, both itunes and the computer recognized the ipod. An extra disc appeared in My Computer (F:), but now there are no F: when i connect the ipod. but itunes works perfectly fine. what can i do, so i can bet back the extr

  • No systems visible in E2E analysis

    Hi Expert, I have configured root cause analysis and it work fine wit user admin (profile sap_all). Now I have created a new user called "support" with these roles: - SAP_SOLMANDIAG_SAPSUPPORT - SAP_DBA_DISP - SAP_OP_DSWP_BPM - SAP_OP_DSWP_CSA - SAP_