Customising Stacks

Under 'Document Stacks' we read the following: 'To customise a stack, position the pointer over the stack icon and hold down the mouse button until a menu appears.' This does not work, at least it does not work with the mousepad on my macbook pro. Do I need to use a cable/wireless mouse. I am away from home at the moment and don't have a mouse.
Thanks
Eric

Ha good computing! Here is a very nice trick if you are feeling adventurist, to enable *stack highlighting*.
You only need to execute these two lines of *Terminal commands* to make it happens <code>copy and paste what is in-between here</code>:
<code>defaults write com.apple.dock mouse-over-hilite-stack -boolean YES</code>
<code>killall Dock</code>
ref: http://www.usingmac.com/2009/9/7/daily-trick-37
This is very sweet addition to the experience.
cheers!
Message was edited by: leroydouglas

Similar Messages

  • PI CCMS customisations in Java Stack MTE'S not saving

    When trying to change the conditions for alerting in rz20 the follow exception is occuring in the java stack..
    Exception in ConfigurationChangedListener:
    Unexpected type (538976288).
    =======================================================
    java.lang.IllegalArgumentException: Unexpected type (538976288).
    at com.sap.engine.library.monitor.impl0.PerformanceMonitorNode.setAlertRelevantValueType(PerformanceMonitorNode.java:155)
    this seems to be as a result of this exception, both are thrown when config changes are made in rz20 around the Adapter engine alerting.
    RegisterNode</Applications/SAP XI J2EE Adapter Engine/XI Component Monitoring Records/System Errors/XI_J2EE_ADAPTER_FILE/NOT_ACTIVATED/MonitoringRecordsCount>: java.lang.NullPointerException
    It seems like there is something missing in the config, but I have no idea what PI 7.1, alerts are being raised and I can see them in rz20 I just cant change the config around the alerting. RZ20 also thinks the properties are saved, but they always reset once the screen has refreshed as it is not saving due to the exception.
    Thanks

    Additionally the MTE'S are reporting through to SOLMAN correctly, I just cant change the conditions/config in RZ20 at all (save).

  • Change the appearance of a 'saved search stack' in dock

    Hi,
    I read a hint on Mac OS X Hints which I particularly like, allowing for a saved search in the dock to behave as a stack showing all recently used documents. See here for the original hint.
    The problem I have is that the icon of this stack is a drawer with papers in it. It looks really out of place next to my other stacks, so I would like to customise it. I have changed the icon of the entry in ~/Library/Saved Searches, but that doesn't get reflected in the dock. I have looked at ~/Library/Preferences/com.apple.dock.plist, but there is no reference to an icon in there that I could potentially change.
    How do I change the appearance of a 'saved search stack' in the dock!?
    thanks,
    Rob

    Donald
    I agree with you that this is not good design and only adds to the confusion of new users, not lessens it.
    It also makes more steps for experienced users.
    Still it is what it is. Personally I'm sticking with Snow Leopard. After all the anticipation I found Apple has screwed up Lion and it is looking like their version of Vista. A rearrangement of the deckchairs to distract you from the gaping hole in the side of the ship, and that the Shipping Company has decided they are switching to other businesses.
    Save a version is Save, and OSX handles all saves using versions you can step back through.
    Duplicate is Save as with an extra step inbetween where the file has another name that you need to change. btw also lacks a shortcut. Nice one Apple.
    Revert has always been there in OSX and was one of the few improvements in that it consistently lets you go back to your last saved version.
    Peter

  • Stacked format in chart using graphics:chart

    I Implemented a graphics:chart element and is working fine, I know how to set Pie format, bars, line in 2D or 3D, but I cant find info about how to set the stacked format.
    I read the PDF that comes with the SAP chart Designer. In the section “Blocks” with Time Axis gives and example.
    And the example is the following:
    <?xml version="1.0" encoding="utf-8"?>
    <ChartData>
    <Categories>
      <Category>20060703;120000</Category>
      <Category>20060704;120000</Category>
      <Category>20060705;120000</Category>
      <Category>20060706;120000</Category>
    </Categories>
    <Series label="Coffee">
      <Point>
       <Value type="y">94</Value>
      </Point>
      <Point>
       <Value type="y">110</Value>
      </Point>
      <Point>
       <Value type="y">139</Value>
      </Point>
      <Point>
       <Value type="y">192</Value>
      </Point>
    </Series>
    <Series label="Espresso">
      <Point>
       <Value type="y">35</Value>
      </Point>
      <Point>
       <Value type="y">39</Value>
      </Point>
      <Point>
       <Value type="y">38</Value>
      </Point>
      <Point>
       <Value type="y">59</Value>
      </Point>
    </Series>
    </ChartData>
    I copy, paste this example and I dont get stacked columns I see 2 series for each category, and I see 20060703;120000 as a label of the column. Something is wrong and I dont get it.
    Some1 have a code sample of a stacked graphics:chart ?

    Hi Roddy,
    I can only assume that the default value for this attribute is for a column chart.
    Here is a sample of a stacked column chart. I just did what was suggested above but using ChartDesigner to create the customising and then I pasted it into the sample. As mentioned I created a second series of data.
    <%@page language="abap" %>
    <%@extension name="graphics" prefix="graphics" %>
    <%@extension name="htmlb" prefix="abap" %>
    <graphics:chart igs_rfc_destination = "IGS_RFC_DEST"
                    width               = "300"
                    height              = "300"
                    format              = "JPG"
                    font_family         = "Arial Unicode MS"
                    dimension           = "PseudoThree" >
      <graphics:data>
        <graphics:nativexml>
          <?xml version="1.0" encoding="utf-8"?>
          <SimpleChartData>
            <Categories>
              <C>Category 1</C>
              <C>Category 2</C>
              <C>Category 3</C>
              <C>Category 4</C>
              <C>Category 5</C>
            </Categories>
            <Series>
              <S label="17.55%">17.55</S>
              <S label="17.10%">17.10</S>
              <S label="8.70%">8.7</S>
              <S label="8.25%">8.25</S>
              <S label="6.87%">6.87</S>
            </Series>
            <Series>
              <S label="6.87%">6.87</S>
              <S label="8.25%">8.25</S>
              <S label="8.70%">8.7</S>
              <S label="17.10%">17.10</S>
              <S label="17.55%">17.55</S>
            </Series>
          </SimpleChartData>
        </graphics:nativexml>
      </graphics:data>
      <graphics:custom>
        <graphics:nativexml>
                <?xml version="1.0" encoding="utf-8"?>
          <SAPChartCustomizing version="2.0">
           <GlobalSettings>
            <Dimension>Two</Dimension>
            <TransparentColor>None</TransparentColor>
            <ColorPalette>Tradeshow</ColorPalette>
            <ColorOrder>Default</ColorOrder>
            <Gaps>Void</Gaps>
            <EqualizeValueAxes>false</EqualizeValueAxes>
            <ThreeD>
             <Ratio>1.75</Ratio>
             <Distance>20</Distance>
             <Depth>10</Depth>
             <DepthCalculation>Automatic</DepthCalculation>
            </ThreeD>
            <Defaults>
             <ChartType>StackedColumns</ChartType>
             <FontFamily>Automatic</FontFamily>
            </Defaults>
            <Colors>
             <Color id="1">RGB(187,204,221)</Color>
             <Color id="2">RGB(204,222,240)</Color>
             <Color id="3">RGB(221,234,243)</Color>
             <Color id="4">RGB(221,234,243)</Color>
             <Color id="5">RGB(236,244,249)</Color>
             <Color id="6">RGB(236,244,249)</Color>
             <Color id="7">RGB(255,255,255)</Color>
             <Color id="8">RGB(255,0,255)</Color>
             <Color id="9">RGB(126,168,222)</Color>
             <Color id="10">RGB(107,152,202)</Color>
             <Color id="11">RGB(79,135,191)</Color>
             <Color id="12">RGB(44,106,174)</Color>
             <Color id="13">RGB(19,80,142)</Color>
             <Color id="14">RGB(192,192,192)</Color>
             <Color id="15">RGB(192,192,192)</Color>
             <Color id="16">RGB(0,0,0)</Color>
             <Color id="17">RGB(198,222,127)</Color>
             <Color id="18">RGB(171,197,94)</Color>
             <Color id="19">RGB(147,174,68)</Color>
             <Color id="20">RGB(118,143,44)</Color>
             <Color id="21">RGB(91,111,33)</Color>
             <Color id="22">RGB(192,192,192)</Color>
             <Color id="23">RGB(192,192,192)</Color>
             <Color id="24">RGB(156,235,145)</Color>
             <Color id="25">RGB(255,229,112)</Color>
             <Color id="26">RGB(248,211,61)</Color>
             <Color id="27">RGB(241,194,10)</Color>
             <Color id="28">RGB(220,180,0)</Color>
             <Color id="29">RGB(200,163,0)</Color>
             <Color id="30">RGB(192,192,192)</Color>
             <Color id="31">RGB(192,192,192)</Color>
             <Color id="32">RGB(255,250,102)</Color>
             <Color id="33">RGB(196,179,236)</Color>
             <Color id="34">RGB(162,149,205)</Color>
             <Color id="35">RGB(135,123,176)</Color>
             <Color id="36">RGB(109,99,150)</Color>
             <Color id="37">RGB(91,81,130)</Color>
             <Color id="38">RGB(192,192,192)</Color>
             <Color id="39">RGB(192,192,192)</Color>
             <Color id="40">RGB(255,103,88)</Color>
             <Color id="41">RGB(169,204,197)</Color>
             <Color id="42">RGB(137,167,161)</Color>
             <Color id="43">RGB(115,145,140)</Color>
             <Color id="44">RGB(88,115,110)</Color>
             <Color id="45">RGB(61,82,77)</Color>
             <Color id="46">RGB(192,192,192)</Color>
             <Color id="47">RGB(192,192,192)</Color>
             <Color id="48">RGB(192,192,192)</Color>
             <Color id="49">RGB(199,172,137)</Color>
             <Color id="50">RGB(167,147,123)</Color>
             <Color id="51">RGB(145,129,109)</Color>
             <Color id="52">RGB(115,102,88)</Color>
             <Color id="53">RGB(82,76,69)</Color>
             <Color id="54">RGB(192,192,192)</Color>
             <Color id="55">RGB(192,192,192)</Color>
             <Color id="56">RGB(192,192,192)</Color>
             <Color id="57">RGB(220,138,188)</Color>
             <Color id="58">RGB(195,103,158)</Color>
             <Color id="59">RGB(174,90,140)</Color>
             <Color id="60">RGB(155,61,115)</Color>
             <Color id="61">RGB(126,38,89)</Color>
             <Color id="62">RGB(192,192,192)</Color>
             <Color id="63">RGB(192,192,192)</Color>
             <Color id="64">RGB(192,192,192)</Color>
            </Colors>
           </GlobalSettings>
           <Elements>
            <ChartElements>
             <Background>
              <Visibility>true</Visibility>
              <Extension/>
              <Insets>3</Insets>
              <Color>@6</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </Background>
             <PlotArea>
              <Visibility>true</Visibility>
              <Extension/>
              <Alignment>Automatic</Alignment>
              <ManualPosition>
               <Top>0</Top>
               <Left>0</Left>
               <Bottom>100</Bottom>
               <Right>100</Right>
              </ManualPosition>
              <Color>@5</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>@4</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </PlotArea>
             <Title>
              <Visibility>true</Visibility>
              <Extension/>
              <Caption/>
              <Position>Top</Position>
              <AlignToPlot>false</AlignToPlot>
              <Insets>4</Insets>
              <Text>
               <FontFamily>Automatic</FontFamily>
               <Color>@16</Color>
               <Size>8</Size>
               <Style>Normal</Style>
               <HorizontalPosition>Default</HorizontalPosition>
               <VerticalPosition>Default</VerticalPosition>
               <Direction>Default</Direction>
              </Text>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </Title>
             <Subtitle>
              <Visibility>true</Visibility>
              <Extension/>
              <Caption/>
              <Position>Top</Position>
              <AlignToPlot>false</AlignToPlot>
              <Insets>4</Insets>
              <Text>
               <FontFamily>Automatic</FontFamily>
               <Color>@16</Color>
               <Size>8</Size>
               <Style>Normal</Style>
               <HorizontalPosition>Default</HorizontalPosition>
               <VerticalPosition>Default</VerticalPosition>
               <Direction>Default</Direction>
              </Text>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </Subtitle>
             <Legend>
              <Visibility>true</Visibility>
              <Extension/>
              <Caption/>
              <Alignment>ToPlotArea</Alignment>
              <Position>Bottom</Position>
              <Insets>4</Insets>
              <Order>Ascending</Order>
              <OrderByRow>false</OrderByRow>
              <OrderByData>false</OrderByData>
              <MoreInfo>false</MoreInfo>
              <ManualPosition>
               <Top>93.9048</Top>
               <Left>7.24382</Left>
               <Bottom>98.6667</Bottom>
               <Right>98.7633</Right>
              </ManualPosition>
              <Text>
               <FontFamily>Automatic</FontFamily>
               <Color>@16</Color>
               <Size>9</Size>
               <Style>Normal</Style>
              </Text>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <SashColor>RGB(0,0,0)</SashColor>
              <SashStyle>Solid</SashStyle>
              <SashWidth>1</SashWidth>
             </Legend>
            </ChartElements>
            <ChartTypes>
             <StackedColumns>
              <Visibility>true</Visibility>
              <Extension/>
              <Percentage>true</Percentage>
              <Distance>50</Distance>
              <AutoBorder>false</AutoBorder>
              <BlockStyle>Rectangle</BlockStyle>
              <ConnectionLines>false</ConnectionLines>
             </StackedColumns>
            </ChartTypes>
            <ChartAxes>
             <CategoryAxis>
              <Visibility>true</Visibility>
              <Extension/>
              <Minimum>1</Minimum>
              <MinimumAutomatic>true</MinimumAutomatic>
              <Maximum>5</Maximum>
              <MaximumAutomatic>true</MaximumAutomatic>
              <Order>Ascending</Order>
              <VariableCategories>false</VariableCategories>
              <AxisType>Flat</AxisType>
              <Centered>false</Centered>
              <Position>Primary</Position>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <Line>
               <Visibility>true</Visibility>
               <Extension/>
               <CategoryGap>0</CategoryGap>
               <WrapText>true</WrapText>
               <Position>AtBorder</Position>
               <Insets>2</Insets>
               <Axis>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </Axis>
               <MajorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </MajorTicks>
               <MajorTickGap>0</MajorTickGap>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>9</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Line>
              <GridLine>
               <Visibility>true</Visibility>
               <Extension/>
               <MajorLines>
                <Color>@2</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MajorLines>
               <MajorTickGap>0</MajorTickGap>
              </GridLine>
              <Title>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Title>
              <Unit>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Unit>
             </CategoryAxis>
             <ValueAxis id="ValueAxis1">
              <Visibility>true</Visibility>
              <Extension/>
              <Minimum>0</Minimum>
              <MinimumCalculation>Automatic</MinimumCalculation>
              <Maximum>100</Maximum>
              <MaximumCalculation>Automatic</MaximumCalculation>
              <ScalingType>Linear</ScalingType>
              <Order>Ascending</Order>
              <Position>Primary</Position>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <Line>
               <Visibility>true</Visibility>
               <Extension/>
               <Insets>2</Insets>
               <Format/>
               <Axis>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </Axis>
               <MajorTickCalculation>AutomaticTicks</MajorTickCalculation>
               <NumberMajorTicks>6</NumberMajorTicks>
               <MajorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </MajorTicks>
               <AutomaticMinorTicks>true</AutomaticMinorTicks>
               <NumberMinorTicks>4</NumberMinorTicks>
               <MinorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorTicks>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>9</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Line>
              <GridLine>
               <Visibility>true</Visibility>
               <Extension/>
               <MajorLines>
                <Color>@2</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MajorLines>
               <MajorTickGap>0</MajorTickGap>
               <MinorLines>
                <Color>@3</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorLines>
               <MinorTickGap>0</MinorTickGap>
              </GridLine>
              <Title>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Title>
              <Unit>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Unit>
             </ValueAxis>
             <ValueAxis id="ValueAxis2">
              <Visibility>false</Visibility>
              <Extension/>
              <Minimum>0</Minimum>
              <MinimumCalculation>Automatic</MinimumCalculation>
              <Maximum>1</Maximum>
              <MaximumCalculation>Automatic</MaximumCalculation>
              <ScalingType>Linear</ScalingType>
              <Order>Ascending</Order>
              <Position>Secondary</Position>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <Line>
               <Visibility>true</Visibility>
               <Extension/>
               <Insets>2</Insets>
               <Format/>
               <Axis>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </Axis>
               <MajorTickCalculation>AutomaticTicks</MajorTickCalculation>
               <NumberMajorTicks>6</NumberMajorTicks>
               <MajorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </MajorTicks>
               <AutomaticMinorTicks>true</AutomaticMinorTicks>
               <NumberMinorTicks>4</NumberMinorTicks>
               <MinorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorTicks>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>9</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Line>
              <GridLine>
               <Visibility>true</Visibility>
               <Extension/>
               <MajorLines>
                <Color>@2</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MajorLines>
               <MajorTickGap>0</MajorTickGap>
               <MinorLines>
                <Color>@3</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorLines>
               <MinorTickGap>0</MinorTickGap>
              </GridLine>
              <Title>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Title>
              <Unit>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Unit>
             </ValueAxis>
            </ChartAxes>
           </Elements>
           <Values>
            <Series>
             <Visibility>true</Visibility>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series1">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series2">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series3">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series4">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
           </Values>
           <Images/>
          </SAPChartCustomizing>
        </graphics:nativexml>
      </graphics:custom>
    </graphics:chart>
    Cheers
    Graham Robbo

  • I need a stacked bar graph stacked but overlaying data help please

    Hi,
    I have a requirement to change an existing combination graph.
    Currently we use a combination graph that has a bar that shows the usage accross a number of weeks, with a line that shows total available over the top. So the customer can see what they have used in a week against themaximun it could be used in that week.
    Unfortunatley our customer would like this changes to a single bar graph that shows the usage and then if the total available is more than the usage (it is sometimes the same but never less) then this should be added to the bar graph to increase the bar in a different colour.
    I have looked at Reports 10g and the stacked bar graph seems perfect but this adds the two values together and not just the increase. I know i could minus one from the other but with the way my data is structured in the data model this could be a pain as they are linked via a data link in the data model and also seems a bit of a work around. Is there no way to have a overlay on the stacked graph or is there another way to achieve this that i cant see.
    Thanks

    I was able to figure it out.
    Instead of using creating the dataset using:
    CategoryDataset datasetWorkload = DatasetUtilities.createCategoryDataset()
    if a 'DefaultCategoryDataset' is used, the values to be displayed can be customised:
    DefaultCategoryDataset result = new DefaultCategoryDataset();
    result.addValue(200.0, "Allocated", "Jan 04");
    result.addValue(500.0, "Allocated", "Feb 04");
    result.addValue(10.3, "Over-Allocated", "Jan 04");
    result.addValue(16.2, "Over-Allocated", "Feb 04");
    Thanks for your time, users: wpafbuser1 and practissum.

  • Stacking Toolbar or More Shortcuts

    Stacking is a great feature of LR.
    Ctrl-G & Shift-Ctrl_G are the only short cuts so far (?) with the rest accessed via Mouse Right-Click (Win).
    Would like to see some form of Stacking Toolbar or more short-cuts (User Customisable?) for Stacking.
    Especially "Move to Top of Stack".
    Cheers
    Chris

    Thanks for the 'S' shortcut.
    I have started using stacks for entire shoots (a bit like Michael Tapes does in his video tutorials) Has been working quite well so far - better than stacking various versions of an image. It is much easier to browse my folder collection. When I click on a year e.g. 2006, I see one thumb for each shoot I did that year with a number showing how many photos in that shoot. I can expand and view from there or go the the appropriate shoot folder very easily. Nice to have to S key now to avoid the right click menu..

  • Show 2D Stacked column chart values

    Hi,
    I use the following sql which shows the percententage of errors in a month
    SELECT NULL
    ,      TO_CHAR(MA.DATE_LOGG,'Mon'),
    sum(decode(el.error_type,'On',1,0)) "Ons",
    sum(decode(el.error_type,'Pa',1,0)) "Prt",
    sum(decode(el.error_type,'No D',1,0)) "No D",
    sum(decode(el.error_type,'Sys',1,0)) "Sys",
    sum(decode(el.error_type,'Oth',1,0)) "Oth"
    FROM
           table1 MA, table2 EL, table3 CR
           WHERE
                     MA.ERROR = EL.ERROR
           AND       MA.ERROR IS NOT NULL
           AND       MA.COUNTRY = CR.COUNTRY_CODE        
          AND       TO_CHAR(DATE_LOGG,'YYYY') = nvl(:P5_FILTER,to_char(sysdate,'YYYY'))
          AND       CR.REGION_CODE = NVL(:P5_REGION,CR.REGION_CODE)
    GROUP BY TO_CHAR(MA.DATE_LOGG,'Mon'),  trunc(ma.date_logg, 'Month')
    ORDER BY  trunc(ma.date_logg, 'Month')Now the values are showing correctly, however, the bar stacked shows the actual percentage value, e.g 60% on the stacked bars. When we mouse over the bar it shows the "No D", Sys, Oth . Is there a way to permanently show both the Decode type and the percentages?
    Apex 4.1/11g
    Thanks,
    Sun

    Hi Sun,
    If you wish to incorporate the series name in the values displayed on the bar elements themselves, then you will need to customise the chart XML and update the <label_settings> tag to incorporate {%SeriesName}. I've added an example to my sample application, outlining where the XML needs to be modified: http://apex.oracle.com/pls/apex/f?p=36648:90. For a complete list of available AnyChart keywords, such as %SeriesName, please refer to the AnyChart online documentation: http://anychart.com/products/anychart/docs/users-guide/label-text-formatting.html?fromtree.
    I hope this helps.
    Regards,
    Hilary

  • 2D stacked column does not show values

    Hi Friends,
    I am new to Apex. I have a 2D column chart with two columns for every data point. The display value check box is checked and I can see the values on the chart. But now when i to make it a stacked 2 D column, the Show Values checkbox field gets disabled and the values does not appear on the stacked 2D column chart. I tried the same with 3S stacked column chart and even there the show values gets disabled.
    Is there any way i can display the values on the chart for a stacked column? I can see the values when i hover on it in case of Stacked column chart but I need to display the values on the chart.
    Kindly let me know how i can do this in Apex?

    Hi Pradeep,
    In earlier releases of Application Express, the supported version of AnyChart Flash charts did not fully support the display of values for Stacked charts. Therefore, the "Show Values" checkbox would be disabled on the Chart Attributes page. Since our 4.0 release, with the integration of AnyChart 5 charts, the option to display values on stacked charts is exposed via the Chart Attributes page. To take advantage of this option, along with many other charting improvements introduced with our 4.0 release, I would recommend that you upgrade to the latest version of Application Express.
    Alternatively, you could switch your existing chart to use custom XML, and change the following line of code in the chart XML from:
    <names show="no"/> to <names show="yes"/>For further information on customising your chart XML, please refer to the AnyChart 3 documentation: http://3.anychart.com/products/docs/anychart/index.htm.
    Regards,
    Hilary

  • Stacking images via css...

    how can I stack an image on top of a cell that already
    contains CSS?
    you are only alotted one background-image in the CSS...so,
    for example, I've got a 1px x 20 px tall graphic that repeats a
    pattern within its cell. Now I want to add another image within
    that cell and have it centered on top of the pattern. How?
    Also, I'd like to know why it is that sometimes my table
    cells are fixed an other times they are flexible. How does one set
    it so that a table cell will not collapse or have flexibility -- so
    it will conform to the dimensions I assign it? -- Is it as simple
    as making sure it's a defined attribute in the tag?
    thanks

    Here's an example...
    a background image to the left cell via the stylesheet and an
    image inserted
    into a table cell.
    http://www.dreamweaverresources.com/forum/bgimage_cell_image.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    "r_tist" <[email protected]> wrote in
    message
    news:f036u6$4hd$[email protected]..
    > how can I stack an image on top of a cell that already
    contains CSS?
    >
    > you are only alotted one background-image in the
    CSS...so, for example,
    > I've
    > got a 1px x 20 px tall graphic that repeats a pattern
    within its cell. Now
    > I
    > want to add another image within that cell and have it
    centered on top of
    > the
    > pattern. How?
    >
    > Also, I'd like to know why it is that sometimes my table
    cells are fixed
    > an
    > other times they are flexible. How does one set it so
    that a table cell
    > will
    > not collapse or have flexibility -- so it will conform
    to the dimensions I
    > assign it? -- Is it as simple as making sure it's a
    defined attribute in
    > the
    > tag?
    >
    > thanks
    >

  • Error while comitting a transaction in oSB. The following is the error stack

    Error while comitting a transaction in OSB. The following is the error stack
    <Apr 20, 2015 12:00:15 AM MDT> <Error> <EJB> <BEA-010026> <Exception occurred during commit of transaction Xid=BEA1-1AE41F1CAE45F2B146FD(296700848),Status=Rolled back. [Reason=Unknown],numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=2,seconds left=120,XAServerResourceInfo[WLStore_SOA_PRDKS_DOMAIN_FileStore_SOA_MS2]=(ServerResourceInfo[WLStore_SOA_PRDKS_DOMAIN_FileStore_SOA_MS2]=(state=new,assigned=none),xar=null,re-Registered = false),XAServerResourceInfo[WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1]=(ServerResourceInfo[WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1]=(state=rolledback,assigned=OSB_MS1),xar=WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_11603460297,re-Registered = false),XAServerResourceInfo[weblogic.jdbc.jta.DataSource]=(ServerResourceInfo[weblogic.jdbc.jta.DataSource]=(state=ended,assigned=none),xar=CMSDS,re-Registered = false),SCInfo[OSB_PRDKS_DOMAIN+OSB_MS1]=(state=rolledback),SCInfo[SOA_PRDKS_DOMAIN+SOA_MS2]=(state=pre-prepared),properties=({}),local properties=({weblogic.jdbc.jta.CMSDS=[ No XAConnection is attached to this TxInfo ]}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=OSB_MS1+soaprd-vip-osb-ms1.cos.is.keysight.com:8001+OSB_PRDKS_DOMAIN+t3+, XAResources={eis/wls/Queue, WEDB_EVEREST_OSB_PRDKS_DOMAIN, XREFDS_OSB_PRDKS_DOMAIN, eis/activemq/Queue, CustomSchemaDS_OSB_PRDKS_DOMAIN, MobileApps_CIA_DS1_OSB_PRDKS_DOMAIN, eis/tibjmsDirect/Queue, eis/jbossmq/Queue, eis/Apps/Apps, MobileApps_AOS_MDS_OSB_PRDKS_DOMAIN, MobileApps_AOS_DRDS_OSB_PRDKS_DOMAIN, WSATGatewayRM_OSB_MS1_OSB_PRDKS_DOMAIN, eis/webspheremq/Queue, eis/AQ/aqSample, SBLPROD_OSB_PRDKS_DOMAIN, wlsbjmsrpDataSource_OSB_PRDKS_DOMAIN, eis/aqjms/Queue, CMSDS_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN_WseeFileStore_auto_1, FAP_OSB_PRDKS_DOMAIN, eis/sunmq/Queue, eis/pramati/Queue, FMWAPPDS_OSB_PRDKS_DOMAIN, weblogic.jdbc.jta.DataSource, GSDC_OSB_PRDKS_DOMAIN, eis/tibjms/Topic, eis/fioranomq/Topic, WLStore_OSB_PRDKS_DOMAIN_FileStore_MS1, PresidioOracleAppsDS_OSB_PRDKS_DOMAIN, GSDCDS_OSB_PRDKS_DOMAIN, eis/aqjms/Topic, CustOutDS_OSB_PRDKS_DOMAIN, OFMW/Logging/BAM, MobileAppsDS_OSB_PRDKS_DOMAIN, FIDDS_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN__WLS_OSB_MS1, HRMSDS_OSB_PRDKS_DOMAIN, WEDB_OSB_PRDKS_DOMAIN, OracleAppsDS_OSB_PRDKS_DOMAIN, eis/wls/Topic, eis/tibjms/Queue, eis/tibjmsDirect/Topic, IntrastatDS_OSB_PRDKS_DOMAIN, MobileApps_AOS_COSDS_OSB_PRDKS_DOMAIN, MobileApps_CIA_DS2_OSB_PRDKS_DOMAIN, EVEREST_WEDB_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1, Everest_OSB_PRDKS_DOMAIN},NonXAResources={})],CoordinatorURL=SOA_MS2+soaprd-vip-soa-ms2.cos.is.keysight.com:8002+SOA_PRDKS_DOMAIN+t3+): javax.transaction.SystemException: Lost connection to server while commit was in progress, ignoring because initiating server is not coordinating server. Remote Exception received=weblogic.rjvm.PeerGoneException: ; nested exception is:
            java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
            java.io.InvalidClassException: oracle.jdbc.xa.OracleXAException; local class incompatible: stream classdesc serialVersionUID = -2542408691177300269, local class serialVersionUID = -4551795881821760665
            at weblogic.transaction.internal.TransactionImpl.commit(TransactionImpl.java:376)
            at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:237)
            at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:224)
            at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:552)
            at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:423)
            at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:325)
            at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
            at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
            at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
            at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
            at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hi,
    Have you tried Cancelling the release before adding the version?
    Select the active version of the IDOC Segment and cancel its release first. Only then you will be able to add a version.
    Please let me know if it worked!
    Vijay

  • Instalação de EHp3 + ultimo Stack (15) + últimos SP de HR (44)

    Amigos, bom dia,
    Estou realizando um projeto de instalação de EHp3 + ultimo Stack (15) + últimos SP de HR (44) disponíveis hoje para um ECC 6.0 montado sobre Solaris SPARC 10 e Oracle 10g.
    O problema é o seguinte, montei um servidor de teste e realizei uma copia homogênea do sistema de PRD para poder evaluar o impacto e poder ter o tempo que o sistema estará em manutenção e sem acesso aos usuários. Como é um cliente que trabalha as 24hs, o sistema de PRD não pode estar fora do ar mais de 48hs como máximo (sábado e domingo), igualmente, este tempo para o cliente já é muito. Então estou precisando reduzir ao máximo os tempos de ajustes manuais da SPDD e SPAU.
    Por isso a minha idéia é que no ambiente DEV a equipe funcional, ao momento de realizar os ajustes da SPDD e SPAU, gerem ordens de transportes para que ao momento de realizar a instalação em QAS e PRD, eu possa adicionar essas ordens através da SAINT e fazer uma só u201Cqueueu201D.
    Alguém alguma vez fez algo pelo estilo? Já adicionaram ordens de transporte a SAINT? Estive vendo esta documentação:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/26/5a8c38e3494231e10000009b38f8cf/frameset.htm
    Mas não me esclareceu as duvidas. Como a SAINT vai saber qual é a ordem relacionada aos ajustes da SPDD e aos ajustes da SPAU?
    Alguém que possa me dar uma dica?
    Muito obrigado,
    Alejandro Olindo
    SAP Basis Consultant

  • How can I sync ONLY the top photo in the stack?

    I sync various Aperture photo albums to my IPad and iPhone. The problem is that when I have 'stacked' images (eg. one image showing in the album and two other copies 'hidden' underneath), all of the photos in the stack are copied to the ipad and iPhone. So instead of seeing just one version of an image, I see as many as are in the stack. How can I sync ONLY the top photo in the stack?
    Thanks for your help!

    I solved my own problem.
    The sync problem seemed to only occur on smart albums. There is a new check box option in Aperture 3 when making a smart album: "sync stack pick only." One click and the problem is solved!

  • Why do I need to declare "defaultButton" ? (In a component form part of view stack)

    After doing some research and some help from FlexGuy in another thread, I realize that I need to make sure I have custom components initialized before accessing parts of the component.  Just recently I was thrown for a long time when I tried to first click on a form field that was part of a component in my view stack, I'd get:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.managers::FocusManager/focusInHandler()[C:\autobuild\galaga\frameworks\projects\framew ork\src\mx\managers\FocusManager.as:601]
    With the debugger it's occuring in the focusInHandler method of FocusManager.as: (apparently _defaultButton is null.)
    // restore the default button to be the original one
                    if (defButton && defButton != _defaultButton)
                        defButton.emphasized = false;
                        defButton = _defaultButton;
                       _defaultButton.emphasized = true;
    This prompted me, on a whim, to delcare a defaultButton:
    <mx:Form id="empForm" defaultButton="{submitButton}">
    which refers to my submit button:
    <mx:Button id="submitButton" click="submitEmployee()" label="{submitLabel}"/>
    My question, is why is this necessary? In some examples I don't see this declared at all, but I seem to need it? (I'm calling creationPolicy="all" to make sure my components are initialized but I still seem to have to this defaultButton declared?)

    It's a way of proving that you are able to purchase content from that country's store i.e. that you have a valid billing address in it
    From Why can’t I select None when I edit my Apple ID payment information? - Apple Support :
    If you changed your country or region
    When you change the country or region of an existing Apple ID, you must provide a payment method and update your billing options. If you want to remove your payment method after you change the country or region, you can change your payment information to None.

  • Corrupt BT stack on Portege M200?

    System was working OK with Microsoft BT stack but didn't support audio headset so I installed Toshiba stack.
    Now have 3 problems:
    1. System recognises mobile phone (Nokia 6260) and appears to pair but Nokia PC suite can't connect to the phone
    2. System 'sees' headset (Nokia HDW3) but I get a (rather unhelpful) 'an error occured' dialog box when it tries to connect.
    3. When shutting the system down, I now get an 'end program TosOBEX' dialog box.
    Further attempts to uninstall / reinstall have no effect on any of the above.
    Anyone got any ideas how to solve these issues? The TosOBEX point in particular leads me to suspect that the installation is somehow corrupted.
    I've also tried to revert to the Microsoft stack but after removing the Toshiba stack and installing the BT monitor & rebooting, the system looks for Toshiba RFBus Driver. What do I need to do at this step to force it to install a Microsoft stack?

    Hi,
    finaly I've found the solution for my problem. I don't know if it helps for the others, but it's very interesting.
    Let's start at the begining.
    * If you create a registry entry named EnableAPILog under HKCU\Software\Toshiba\BluetoothStack\V1.0\Mng\Log you can view the debugOutput with eg. DebugView.
    * In the log I saw a lot of tries for creating COM port. Finaly just figured out how the TosOBEX works. After the process start, it will try to create several serial port for it's own services (as Bluetooth Local COM can display in normal case).
    So the program calls the "CreateACOMport(x)" function, which returns with a failure. So the program jums back to the call again, next try may be OK. And this call-jump back-call-jump back-call ... will never end. The called function will use the kernel resources, so services.exe will eat all the CPU. (No any error message after x tries of "CreateACOMport" function ??? let's see in next release ;) )
    *So checked DeviceManager, but it did not show any local serial port except the normal ones.
    Microsoft published how to view the not connected devices (http://support.microsoft.com/kb/315539/EN-US/).
    With this in 2 hours I deleted all serial ports from the "Ports" class. (Of course first I removed the Toshiba stack).
    Toshiba stact reinstall & everything works fine.
    that's all.

  • Creation of Customisation file from WLST Script in OSB

    Hi,
    Please help in creating Customisation file in OSB from WLST Scripts

    Hi,
    Please refer -
    Create Customization File in OSB 10g with WLST script
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/deploy/config_appx.html
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/javadoc/com/bea/wli/config/customization/Customization.html
    Regards,
    Anuj

Maybe you are looking for

  • Macbook pro wont open

    I downloaded Lion, but after successfully installing it and restarting the my MacBook Pro, it wont open anymore. What will I do? Please help.

  • VFPOLEDB and MS SQL Server Express 2014

    I can install VFPOLEDBSetup.msi on machine with Windows 7 - 64bit and MS SQL Server Express 2012, but I cannot install VFPOLEDB on machine with Windows 7 - 64bit and MS SQL Server Express 2014. Is there a problem with MSSQL 2014?

  • My CS2 templates are printing out in reverse.

    My CS2 Templates are printing out in reverse. All other programs are printing normally. Can anyone advise to clear this problem. Many thanks

  • OBIEE 11G: Disable interaction in Graph

    Hello, Does anyone know how to disable interaction in graph in OBIEE 11G, apart from the normal way of disabling the interaction in Column Properties -> Interaction. Is there any other way. Thanks

  • Suggestion required...

    hi, i am trying to execute a small gui(showMessageDialog) java Program on a unix machine by connecting to that machine from Windows-xp machine using telnet. the program compiles but i am not able to run it. i have even set the Look and feel (UIManage