Applying EAS path 9.3.1.5

All,
We are currently on 9.3.1.0 across all our components ( EAS, essbase, HSS, planning)
I specifically wanted to use the DATAEXPORT feature in the patch 9.3.1.5 and applied to to EAS. However, after installing it says,"Cannot connect to Admin server, Client is in Version 9.3.1.5 while server is in 9.3.1".
I am a relative newbie and a bit confused since i thought i selected the option to install both Server and client in the Config utility?

Glenn,
Yes i was talking about using the DATAEXPORT command from BR so that i can spool planning data from a web form.
Johm,
You are right.I did have to deploy EAS from the App server the first time. Do i need to do this again? Also, eventually we would like to upgrade Essbase too, but it should not be a problem for now right?
I guess if i can login to the console and then it tells me that the two versions are different, then i would be ok with it. For now, i cannot even login to the console.
Thanks to both as usual for your prompt responses.

Similar Messages

  • StrokeThickness not applied to Path, in Windows Phone 8 Platform

    Hi,
    I'm currently developing WP8 app, in which i have used the following code snippet like this,
    C#:
                Path segPath;
                segPath = new Path();
                segPath.StrokeThickness = 4;
                segPath.Stroke  = new SolidColorBrush(Colors.Red);
                PathGeometry segmentGeometry = new PathGeometry();
                PathFigure figure = new PathFigure();
                WindowsLinesegment lineSegment;
                figure.StartPoint =new Point(10, 50);
                lineSegment = new WindowsLinesegment();
                lineSegment.Point = new Point(200, 70);
                figure.Segments.Add(lineSegment);
                segmentGeometry.Figures.Add(figure);
                segPath.Data = segmentGeometry;
                LayoutRoot.Children.Add(segPath); // LayoutRoot is my Canvas
    Finally, when i try to change StrokeThickness dynamically in a button_click like this, i found the strokethickness is not being applied,
               segPath.StrokeThickness = 8; // change dynamically in button_click
    Any help or workaround to overcome this issue would be much appreciated, thanks in advance!!
    Note : This issue is re-produced only in Windows Phone 8 only
    Regards,
    Suresh S

    This may be related to your issue (includes workaround):
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/dfa0d148-8571-43aa-84ac-7618da388314/binding-a-lines-strokethickness-property-to-a-sliders-value-property?forum=wpdevelop
    Well yes, a similar workaround here seems to again set the stroke color. 
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • CS4 Illustrator art brush applied to path

    I've made an art brush that looks like this:
    And applied it to some wavy vertical lines. The lines are open paths, all drawn with the pen tool. The brush works fine on some of the lines, but others end up looking like this:
    Any idea what's causing this?

    Oh, sorry - I misunderstood Scott's comment. But…there are no fills applied to the original wavy lines; they are just lines. To clarify, in this image, #1 is one of the original wavy lines (just a .5pt line, no fill); #2 is that same line with the brush applied; #3 is a different original wavy line; #4 is #3 with the brush applied, and #5 is a short wavy line with the brush applied, included to show the brush effect on an entire line. 4 & 5 are correct - this is what I expect to happen when I apply the brush. #2, with the even/very oddly filled cut off section, is incorrect.
    However, I did figure out that I could fix the problem by slightly reshaping the curves in the misbehaving lines. I'm still curious about what's causing it (don't think anything's corrupt), but this will work for now. Thanks for your help  :-)

  • Need to find if Images applied clipping path(detect Edges)

    Hi Scripters,
    How to find Images applied with clipping path(detect Edges) in Indesign document.
    Could anybody please share a code/script with me.
    Yours,
    Jerome

    No problem -- a document's "allGraphics" property lists all of the imported graphics in the document. Just check each of them one by one. This little script alerts you with the name:
    for (img=0; img<app.activeDocument.allGraphics.length; img++)
    if (app.activeDocument.allGraphics[img].clippingPath.clippingType == ClippingPathType.DETECT_EDGES)
      alert (app.activeDocument.allGraphics[img].itemLink.name);

  • Motion 5 Crashes when applying motion path

    Hello all,
    heres my scenario and being new to Motion 5 maybe Im doing something wrong...
    I have an image in my project....I bring in another image...I have tried this using one and two groups doesnt matter...
    I apply flop to both images to rotate.....then grow shrink....then I set both on a motion path by selecting both and using the bezier tool...hit enter when I am done making the path I hit enter and the path is created....I select path fro the group and goto inspector change path shape to geometry and then apply the bezier path....at this point Motion 5 crashes and I lose all
    work...I have saved the file up to this point now...but what am I doing wrong...
    Thanks!

    Make sure the shape you are using in the behavior is not inside the group you are trying to animate, put it in a seperate group.

  • Applying easing while changing image using timer

    Hi
      In my app i am changing images using timer..i have 7 images when the image starts changing it flicker and background comes then the new image that is what my problem is
    here is my code..
                   import flash.utils.Timer;
                        import flash.events.TimerEvent;
                        import flash.display.Sprite;
                      var myTimer:Timer = new Timer(95, 7);
                    private var k:int;
                     public var imgary:Array=new Array();
    function init()
         for(var i:int=0;i<=6;i++)
                         imgary[i]=new Array();
                         imgary[i][0]="Assets/open_drawer"+i+".png";
                         if(i==1||i==2)
                             imgary[i][1]=81;
                         else if(i==0)
                             imgary[i][1]=77;
                         else if(i==3)
                                 imgary[i][1]=83;
                                 k=83;
                         else if(i==4)
                                 k=k+2;
                                 imgary[i][1]=k;
                         else
                                 k=k+3;
                             imgary[i][1]=k;
         myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
                myTimer.start();
    public function timerHandler(e:TimerEvent):void {
                   tests.source=imgary[e.target.currentCount-1][0];
                            tests.width=383;
                            tests.height=imgary[e.target.currentCount-1][1];
                            tests.x=0;
                            //invalidateDisplayList();
        ]]>
    </mx:Script>
    <mx:Panel  verticalAlign="top" horizontalScrollPolicy="off" backgroundColor="#616060"  id="pnlMaster" width="400" height="560" horizontalCenter="-184" verticalCenter="13">
    <mx:Image id="tests" source="@Embed(source='Assets/drawer_img.png')" width="383"  x="0"  height="75"/>
    </mx:Panel>
    </mx:WindowedApplication>

    is there any way by which i can handle this..can i provide smoothness or easing kind of thing so that it appears to the user that it is a only one image..

  • Offset path has a math error at 4 decimal places

    I have Illustrator CC 2014 running in Mac OS X 10.9.3, and discovered tonight while making a test pattern that if I do an offset path of -0.0005" it doesn't calculate the size of the resulting objects correctly. If I do +0.0005" it works fine, if I do -0.0015" it works fine. I obviously haven't tested exhaustively, but there is definitely a reproducible error there. It's not even off consistently in the width and height. The sizes listed refer to the size of the individual squares in the 4x4 grid of filled rectangles.

    The black squares are what I'm building. So I didn't have to go one by one and apply offset path, I did three across and then noted that the next row above would be .003 difference, so I could apply a .0015 offset to all items in the row and move it up, then repeat. This works well for a while, but then it starts to get off. It doesn't appear to be cumulative which was my fear. The black squares I checked each one and redid them if they didn't come out right. The blue ones I just did an offset from the previous row. At .015 it should be .065x.065 and they are .065x.0649. That's the behavior I normally see, not a big deal. In that group, all 16 squares were the same, but in the .018 group above it, the first two rows of 4 were .062x.0619 while the 3rd row of 4 were all .062x.062 and then the top row were off again. By the top, the ones that are off are still only off by .0001 when they are off. So that implies that this is at least a rendering thing, it thinks the squares are what they are supposed to be when it applies future offsets.
    I'm not sure if my original example is the same though. That was off by .001 in one direction and .0005 in the other which is 5-10X more than these. These are the issue I've always seen that at 1/10,000th of an inch are tiny differences and not really important for what we do. The one I started this thread about is much bigger and a definite problem. I'll post my latest test on that separately.

  • Path palette: What's wrong with "path share" and "path exclude"?

    Hi everybody. First of all: Sorry for my english, but I hope someone can understanding me.
    Well, I want to work with Fireworks in the future because I think that this programm keep in some situation more efficience as Photoshop... So I was trying to learn how this programm is working.
    Since some days I make some experiments with Path's, because I like to work with Illustrator as well. But now, I am still going crazy because I don't understanding 2 options. I don't know the english names but In the path palette does they have this Icons:
    The first option (Pfade teilen) is "path share" and the second one (Pfade ausschließen) is free translate "path exclude"
    My question is: When I can use this 2 Options? I really did everything but nothing was working

    Thanks for posting about this issue! I've taken a look at the "Combine Paths" operations in the Paths panel in both Fireworks CS6 and CS5 on my Mac, and noticed several bugs. Between you and I, here's a summary of what we've found:
    Fireworks CS6, Version 12.0.0.236, WIN, 7, 64 Bit, SP 1
    Exclude Paths - Does not work.
    Fireworks CS6, Version 12.0.0.236, Mac OS 10.6.8 (Snow Leopard)
    Divide Paths - No effect on rectangles.
    Exclude Paths - Requires 2 clicks for rectangles - one to ungroup rectangles and another to apply path operation.
    Fireworks CS5, Version 11.1.0.205, Mac OS 10.6.8 (Snow Leopard)
    Divide Paths - Works like Exclude Paths.
    Undo - Deletes previous unrelated non-path operation. For example:
    Draw two ellipses.
    Draw a rectangle.
    Select two ellipses and apply Combine Paths operation.
    Undo (Command-Z).
    The rectangle disappears!
    You can submit a bug report to Adobe about the "Exclude Paths" issue, and include the URL for this discussion within your report:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    In the meantime, I'm going to send an e-mail to the developer about these issues. I know that he's working on a fix for another problem with this panel and planning on releasing a fix at some point, so hopefully these issues can get fixed as well.
    Again, thanks for being so persistent. It is challenging to understand your writing at times; however, the animated GIF was very helpful—and very well done. Have you tried composing your posts in your native language and then using something like Google Translate to convert it to English? I don't know if the results would be better; it's just an idea.

  • Possible bug in Clipping Path - weird behaviour

    I've got a bunch of images with clipping paths. All the same size. They're all book covers from a series.
    Well I applied a clipping path to all of them.
    Some when placed into InDesign will place fine with the clipping path applied.
    Others will not - and the only difference I can see is that:
    The images that import with the clipping path applied - in Photoshop they are as Layer 1 and a Background Layer
    The images that import without a clipping path applied - in Photoshop they are flattened.
    Is that the same behaviour for everyone else - would you consider it a bug?
    InDesign CS5 - Fully Patched
    Photoshop CS2 - Fully Patched
    Photoshop File Type> TIFF

    Yeh I can apply the Path after placing - Jongware wrote me script to apply the photoshop path.
    But I just think it's odd behaviour.
    On most of them that are flattened - there is no option to Apply the Photoshop Clipping Path - it's greyed out.
    Then on the ones with layers - the option is selectable.

  • Ease in/out not intuitive

    Hello,
    I've been using animation applications for about 20 years now and, for whatever reason, Flash CS5's ease in/out feature has got me stumped.
    I have a simple text Movieclip that comes from the left, off stage, and moves to the right onto the stage and stops. I want to ease it so it slows down to a stop.
    I'm using Flash CS5 with the new tween.
    When I click on the tween in the timeline, the ease property in the Properties Inspector doesn't give me what I want. If I put 100, it comes in and stops hard. If I give it a -100, it slowly accelerates to full speed and then stops suddenly.
    I've read the tutorial for the new Motion Editor in Flash and it doesn't work like any other motion editor I've used, including Adobe's own After Effects. Normally, you would just click on the graph's line and then curve it with a pen tool or right-click on select bezier...
    Thank you for your time.

    Hey there,
    The property inspector applies ease across the entire tween span, so you're correct that it's not going to give you what you're after. One of the things about the new tweens is it's applying the animation to an entire object, which gives us complexities about trying to do things like ease between property keyframes. We know we need to make this workflow better, and have many ideas around this, hopefully it'll be a reality in a future release soon.
    So for now, when easing non-spatial properties (anything other than X, Y, Z), you can use the bezier to adjust the curve. For spatial properties (X, Y, Z) you can switch between smooth and linear curve but not use bezier handles. The reason for this is Flash has stage editing - in order to have both stage editing and control in the graphs, you can either have one or the other. Because Flash users are so accostomed to Stage editing, we went with that and turned of spatial control in the ME (otherwise, Math takes over the handles and you can't really adjust them as you expect). And also because adjusting those curves in the ME rarely gets a user what they're typically after (which is the correct result, technically/mathematically speaking).
    Anyway, long story short - if you're doing ease in/out, you may just want to use one of the "Stop and Start" eases, which is an S curve and is ease in and ease out. Just add it to your tween, set the value, and then apply it to the properties you need it on.
    Or, you can add a Custom ease and use the bezier controls (keyframes will snap to keyframes in the properties of the tween), and then apply it to your properties.
    If you aren't trying to ease a spatial property, you can adjust the curves using beziers, which is a good way of applying ease between keyframes as you note.

  • How do I transform a clipping path and layer at same time?

    I have a bunch of images with clipping paths that need to be altered. Most images need skewed or distorted, and I can't figure out how to transform the path at the same time I transform the layer - so I do not have to create new paths. Thanks
    Working in Photoshop CS2

    I’m afraid You will have to employ a workaround.
    I would recommend applying the Path as a Vector Mask to the Layer (with the Path selected command-click on the Add Layer Mask-button in the Layers-panel), then transforming, subsequently duplicating the Vector Mask and removing it from the Layer.
    Or copy-paste it into the existing Clipping Path and then remove it.
    Some part of the procedure may be automate-able with Actions or Scripts and hopefully it will still save at least some time.

  • Deactivate the drill path selection

    Hi everybody!
    When more than one hierarchy starts with the same dimension object path but diverges at a lower level of the hierarchy Web Intelligence prompts and asks for the applied drill path!
    In the universe documentation I found the sentence: The default path in the user module will be the one that is higher in the custom hierarchies list.
    But Web Intelligence is always prompting and never chooses the default path.
    Is there a oppertunity to disable the prompt and just use the default drill path?
    Thank you in advance,
    Sebastian

    Hi,
    thank you for the answort, but this is not, what I mean.
    It is good If the user gets prompted if the drill requires additional data.
    My hierarchy starts with the same dimension object path but diverges at a lower level of the hierarchy Web Intelligence prompts and asks for the applied drill path, although there is defined a default path in the BO Universe.
    Can I hide this additional prompt?
    Regards,
    Sebastian

  • Path editing issue

    Hi all,
    I've recently installed FireWorks CS5, but I seem to have some problem with editing paths.
    I'm selecting one point of the path, and then when i want to do something with that single point - let's say fillet points - it executes the action on all the points of the path. This occures with every available action within the path editor. Of course this is very annoing, and the whole path-editor has become useless to me.
    Anyone out there with ideas?  I would greatly appreciate it.
    I've updated the software to the latest version.
    Thanks in advance,
    Rinux

    Make sure you select the point you want to change with the Subselection tool before applying the path point edits.

  • Has someone applied the one off patch for-ONS bug 5749953 SIGBUS ERROR

    Hello all,
    Env:: 10g on Soalris
    I need to apply the one-off patch for
    Bug:5749953 -- ONS SIGBUS ERROR AFTER INSTALL PATCHSET 10.2.0.3 FOR CRS
    Usually for any CPU we issue opatch apply from the patch directory.
    and its mentioned in the readme.html as well.
    But for this one off patch, there isn't anything mentioned in the readme.html.
    All it says is
    #  6. Patch the Files
    #    6.1 Patch the CRS home files
    #    After unlocking any protected files and saving configuration settings
    #    you are now ready to run opatch using the following command.
    #    As the Oracle Clusterware (CRS) software owner;
    #    % opatch apply -local -oh <CRS_HOME>
    #    Note: In configuration A, invoke this only on one node.
    #    6.2 Patch the RDBMS home files.
    #    Alert: The RDBMS portion can only be applied to an RDBMS home that
    #          has been upgraded to 10.2.0.3.0.
    #    For additional information please read Note.363254.1;
    #    Applying one-off Oracle Clusterware patches in a mixed version home
    #    environment
    #    As the RDBMS software owner;
    #    % opatch apply custom/server/5749953 -local -oh <RDBMS_HOME>
    #    Note: In configuration A, invoke this only on one node.Could someone let me know from where i should give 'opatch apply' if patch.zip files are unzipped in /export/home/oracle/5749953  ? TIA,
    JJ

    The patch can always be installed in 2 ways.
    1. Do a cd and then run opatch
    cd <patchlocation>
    opatch apply
    2. Else specify the patch location as an argument
    opatch apply <full path to the patch i.e the one you do cd above> ...
    Both the above styles yield same result.
    VJ

  • Offset Path doesn't create a separate path

    Mac CS6
    Seems like my Illustrator is bugging out. When I apply offset path to the compound object Illustrator doesn't create a separate path for me, but both the offset and original somehow bundle together:
    https://www.dropbox.com/s/xiu3xqcictx0ku0/Offset_problem_1.png
    I'm trying to create an effect like this tutorial on youtube. But since offset path doesn't create a separate path, I can't duplicate the same effect.
    Any clue on how to fix this would be appreciated.

    Did you use the Object>Path method or Effects>Path method? Here's the difference

Maybe you are looking for

  • Error in creation of purchase materials/Goods receipt against PO(FI-MM)

    Hi All, While processing FI - MM integration iam facing below errors,request to guide me with same 1) While creation of purchase materials Valuation class 7920 not allowed for material type Raw material Message no. M3180 Diagnosis The combination of

  • Why is it only possible to run queries on a Distributed cache?

    I found by experiementation that if you put a NearCache (only for the benefit of its QueryMap functions) on top of a ReplicatedCache, it will throw a runtime exception saying that the query operations are not supported on the ReplicatedCache. I under

  • How to create a site template with subsites on SharePoint Online (2013, wave 15)

    I need to create a site template of a site that contains 4 subsites. I have tried saving the parent site as a "site template", but when i create a new site based on this template, I don't get any of the subsites created. Anyone knows why the subsites

  • Clarification needed on the behaviour of count with null values

    Hi friends, I am confused about the result given by the count aggregate function when dealing with null. Please can anybody clarify about that to me. Here is what i tried CREATE TABLE Demo ( a int); INSERT INTO Demo VALUES (1), (2), (NULL), (NULL); S

  • Urgent - management question

    Quick question about management. A customer is looking for a management solution for his ASA 5505's which would be deployed in various branch offices and he needs to manage these from a centralized GUI (similar firewall policies, etc) I haven't had m