How to scale the EP

Hi I would like to know your suggestion:
suppose a worldwide customer wants to implement the SAP EP.
In your opinion what should teh best way to scale the EP ?
The requirements should be to:
_ minimize the network time
_ minimize the downtime due to maintenence (maybe having more instances keep ligned in some way ?
_ the EP will be used 7x7, 24 h a day
Any suggestion is wellcome
regards and thanks in advance

Hello Mauro,
We're preparing a document related to your inquiry, at this moment is in Draft, but as soon as released i'll writte the url here.
Thanks for your understanding.
Regards,
Luis

Similar Messages

  • Can anyone explain me how to scale the image in canvas in flash builder 4.6

    Can anyone explain me how to scale the image in canvas in flash builder 4.6, Scaling of image in component , can i get some examples ..  it should set almost all size screen

  • How To Scale the Rulers and Object Dimensions

    Hello. I've been using Corel Xara for a long time - like, since '98 - and recently started using Illustrator CS3.
    In Xara, one can set the scale for rulers and objects. For example, I can set up the rulers for inches and then define a scale of, say, 1-in equals 300-ft. Once done, the ruler no longer displays inches; it displays the scale feet. And, when entering dimensions for objects or grid locations, I can use, for example, 650-ft and it will understand that I mean 2.1667-in.
    Is there any way to do the same sort of thing in Illustrator? I saw how to change the rulers to inches, millimeters, points, etc., but I have been unable to find how to scale the ruler to X:Y.
    Any info?
    Thanx!

    Short answer: No.
    Longer answer: To change the ruler measurments to a different predetermined system, simly control-click (Mac) or right-click (PC) on the rulers themselves. You can not set the application to auto-scale dimension like you describe. You can use math functions in dialog boxes though. So you could enter 600'*.125 for 600 ft times 1/8

  • How to scale the content along with child elements?

    By default I need my application size to be compatible with 1280x800 resolution; and if the application is viewed at a bigger resolution, only the background needs to be stretched, therefore I have to hardcode canvas size and set background in percentage. Till now it is alright, but when the application is viewed at a smaller resolution or with window size scaled down, the application content should also scale along.
    So, any clues on scaling down the content [along with child contents]? mind you, it has background images so must be scaled with proper aspect ratio.
    Thanks for any help.
    Siraj Khan
    [email protected]

    Thank you for the tip... this solves my problem partially. Now I am working on to scale the inner content of canvas --- on resize. Since there are elements like buttons and images, i can not define them in percentage, so i need to first check what exactly is the percentage of reduced canvas, and then accordingly i'll have to apply that percent on the inner elements. Any other better idea? as i see this only as a work around, not a proper solution.
    Anyway thanks again for the help.
    -Siraj

  • HOW TO SCALE THE CORRECT FREQUENCY AXIS?

    hello guys
    im trying to calculate the real cepstrum of a short speech signal for time/pitch scaling. cepstrum=ifft[log(abs ((fft))].
    my problem is 1) how can i correctly show the frequency axis (x-axis) of the fft result in Hz and not in time (samples) and then  2) the result of the cepstrum in time?
    i cant seem to be able to do that as you can see from my program below.
    can anybody help me please?
    kind regards
    alex
    p.s. the zip file contains my program with a sample sound file that can be processed with
    Attachments:
    TD-PSOLA ALGO.vi.zip ‏494 KB

    Yes I used the 512 samples.
    You can see the DF if you set the graph to a plot-style, then zoom in to a 0-500 Hz scale then you will see that at every 83 Hz a point.
     The reason your maximum is not half dF is that you have 512 samples, so 256 frequency bins times 86 =22016 BUT you start at zero so the max is a little lower
    255*86.13 is 21963 Hz
    About CSepstrum I don't know, I hardly ever used IFFT.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • How to scale the font size that make with the CanvasDrawText()?

    Trying some ways but not any effectiveness.
    David

    I would assume that you first have to generate a suitable metafont using, e.g., CreateMetaFont(). In the latter function you can specify the point size.

  • How to scale the Stage to fit the screen?

    Currtent code dosen't work very well. Any better solution? Thanks,
    var videoHDWidth:Number = 1024;
    var videoHDHeight:Number = 768;
    var videoRegWidth:Number = 550;
    var videoRegHeight:Number = 400;
    // 3. Create an event handler to toggle full screen
    // mode when a button is clicked.
    function toggleFullScreen(event:MouseEvent):void {
        // Jump to full screen
        if( stage.displayState == StageDisplayState.NORMAL ) {
            // Set video to 100% size
            flvControl.setSize(videoHDWidth, videoHDHeight);
            // Position button
            // Activate hardware scaling based on HD state...
            stage.fullScreenSourceRect = new Rectangle(0, 0, videoHDWidth, videoHDHeight);
            stage.displayState = StageDisplayState.FULL_SCREEN;
        // Return to normal size
        else{
            // Set video to regular size
            flvControl.setSize(videoRegWidth, videoRegHeight);
            // Position button
            // Return to normal mode
            stage.displayState = StageDisplayState.NORMAL;
    //fullscreen_btn.addEventListener(MouseEvent.CLICK, toggleFullScreen);
    // 4. Resume normal mode if the Escape button is pressed during full screen
    function resumeNormalMode(event:FullScreenEvent):void
        // The displayState is already 'normal' by the time this
        // event fires. This signals that the Escape button was clicked.
        if (stage.displayState == StageDisplayState.NORMAL)
            // Set video to regular size
            flvControl.setSize(videoRegWidth, videoRegHeight);
            // Position button ;
            // Return to normal mode
            stage.displayState = StageDisplayState.NORMAL;
    stage.addEventListener(FullScreenEvent.FULL_SCREEN, resumeNormalMode);
    // 5. Set video parametes
    flvControl.align = VideoAlign.CENTER;
    flvControl.scaleMode = VideoScaleMode.MAINTAIN_ASPECT_RATIO;
    flvControl.fullScreenTakeOver = false;

    Error "mc is not defined for: mc.contextMenu = fullscreenCM;
    I changed as:
    this.contextMenu = fullscreenCM;
    Run it without error but it dosen't work out for full screen issue. Thanks,
    Refered from Exploring full-screen mode in Flash Player | Adobe Developer Connection
    // functions to enter and leave full screen mode;
    function goFullScreen(event:ContextMenuEvent):void
        stage.displayState = StageDisplayState.FULL_SCREEN;
    // An alternate full-screen function that uses hardware scaling to display the upper left corner of the stage in full screen.
    function goScaledFullScreen()
        var screenRectangle:Rectangle = new Rectangle(0,0,stage.stageWidth / 2,stage.stageHeight / 2);
        stage.fullScreenSourceRect = screenRectangle;
        stage.displayState = StageDisplayState.FULL_SCREEN;
    function exitFullScreen(event:ContextMenuEvent):void
        stage.displayState = StageDisplayState.NORMAL;
    // function to enable and disable the context menu items,
    // based on what mode we are in.
    function menuHandler(event:ContextMenuEvent):void
        if (stage.displayState == StageDisplayState.NORMAL)
            event.target.customItems[0].enabled = true;
            event.target.customItems[1].enabled = false;
        else
            event.target.customItems[0].enabled = false;
            event.target.customItems[1].enabled = true;
    // create the context menu, remove the built-in items,
    // and add our custom items
    var fullscreenCM:ContextMenu = new ContextMenu();
    fullscreenCM.addEventListener(ContextMenuEvent.MENU_SELECT, menuHandler);
    fullscreenCM.hideBuiltInItems();
    var fs:ContextMenuItem = new ContextMenuItem("Go Full Screen");
    fs.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, goFullScreen);
    fullscreenCM.customItems.push( fs );
    var xfs:ContextMenuItem = new ContextMenuItem("Exit Full Screen");
    xfs.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, exitFullScreen);
    fullscreenCM.customItems.push( xfs );
    // finally, attach the context menu to a movieclip
    mc.contextMenu = fullscreenCM;  -->error

  • How to size and to scale the EP 6

    Hi,
    I need informations about how to size and how to scale the EP 60.
    Any information is wellcome.
    Regards

    Mauro,
    You might want to look at this thread.
    Re: EP7 server size
    Hope it helps.
    Regards,
    Keith

  • In InDesign, how does one determine the pixel size of a text box? Specifically, we need to write text to specifications of 600 pixel width, and have no idea a) how to scale a text box to specific pixel width, b) how to

    This may be a basic question... but in InDesign, how does one determine the pixel size of a text box? Specifically, we need to write text to specifications of 600 pixel width, and have no idea a) how to scale a text box to specific pixel width, b) how to determine what word count we can fit in, and c) how to do it in a table? Thanks!

    Set your ruler increments to pixels Preferences>Units & Increments. You can fill the text box with placeholder text Type>Fill with Placeholder text and get a word count from the Info panel with Show Options turned on from the flyout.
    From the Transform panel you can set a text box's width and height

  • How to enlarge the picture at the same scale(proportion) of what

    the fontpanel enlarged when you dbclick the title bar to enlarge the fontpanel to entire screen,but the other objects (for example,the button,the string,and so on)on the fontpanel not enlarged with the varity of the fontpanel, only keep the original size.Can anyone help me! my first question is :
    how to enlarge the picture at the same scale(proportion) of what the fontpanel enlarged when you dbclick the title bar to enlarge the fontpanel to entire screen,but the other objects (for example,the button,the string,and so on)on the fontpanel not enlarged with the varity of the fontpanel, only keep the original size. i thank it is a representional question although it may be very simple,in
    my around ,no one can solve it !
    i have offered the vi and a jpeg file underside,who can help me amend the vi? greatly thanks!!! noticed that what i use is lv6.1,if you can solve the problem but need some other vi or lib files ,please offered all together!!!
    thanks!
    the second question is :whether there are some free package can application for image process! i have download some vi at the code library,but when some vi run,it need to open a "vision" folder ,then open display.lib,management.lib, pixel manipulation.lib ,files.lib of the "vision" older,finally to invoke vi named "imaq draw.vi","imaq winddraw.vi" "imaq readfile.vi" and so on ,i can not understand these! why my lv 6.1 did not have the lib files! is the edition not same?
    Attachments:
    how_to_enlarge_the_picture_at_the__same__scale_of_what_the_fontpanel__enlarged_when_you_dbclick_the_title_bar_to_enlarge_the_fontpanel_to_entire_screen.vi ‏30 KB
    Test.jpg ‏21 KB

    the fontpanel enlarged when you dbclick the title bar to enlarge the fontpanel to entire screen,but the other objects (for example,the button,the string,and so on)on the fontpanel not enlarged with the varity of the fontpanel, only keep the original size.To answer your first question:
    To change the size of only the Picture you can use the Draw Area Size like you already have. However if you want to move the other controls around the picture, you may need to use their Position Properties.
    On to question 2:
    All of the VIs you are discussing come with the NI-IMAQ driver and NI�s Vision package. To use those VIs you will need to have the IMAQ driver and have purchased our Vision software. Machine Vision and then you can click on the Machine Vision Software link to learn more about the package.
    Evan
    National Instruments

  • I have an image that I removed from its back ground and I would like to scale the bottom portion of the image because its to wide but not have that effect the top portion of the image which is the correct with. but also keep the aspect ratio correct? how

    I have an image that I removed from its back ground and I would like to scale the bottom portion of the image because its to wide but not have that effect the top portion of the image which is the correct width. but also keep the aspect ratio correct, keep it looking as natural as possible (its a piece of jewlery) ? how can I begin to do this.

    The area circled in red is to wide (the width) the necklace's width is as wide as the models entire chest. And also the length of the necklace it's to long it should come down to the clevage area on the model/woman.

  • How to get the Vertical scale of Osilloscope TDS 420A ?

    Hellow!
    Anyone can tell me how to get the Vertical scale of TDS 420A? i use "TKTDS read waveform.VI" to show the waveform in a Waveform indicator,but the Vertical scale is not the same as the osilloscope. Thanks!

    Hi happybird,
    I installed the TKTDS instrument drivers and had a look at the TKTDS Read Waveform.vi. I couldn't find any way to change the scale of the waveform graph. The data displayed should be the same that is measured by the scope. Try running the TKTDS 420 Getting Started VI that is located in:
    All functions >> Instrument I/O >> Instrument Drivers >> Tktds4xx VIs >> Application Example VI's
    I don't have access to a TKTDS 420 myself, but I hope the example VI displays the correct value. If it does then it is a matter of finding out what is different in your VI. Good luck.
    Michael Chaney
    Systems Engineer - TestStand
    National Instruments

  • How to make the zoom in/out scale appear in the media browser ?

    How to make the zoom in/out scale appear in the media browser ? My videos only appear as a file list (only the names) and the zoom in/out device is currently not in the media browser...

    I meant that there is no "Icon mode" button or "List mode" button in my media browser. How to make them appear ?

  • How to scale objects evenly (one inside the other)

    We are doing a gun caddie right now that has the shape of a motorcycle seat when it is unfolded. We are currently stumped on how to scale these shapes properly. Basically we have one shape of the caddie and then copy that and shrink it from the center to form another shape inside the original shape. The trouble we have is that when we scale the second shape down, it doesn't scale evenly and some sides are have bigger gaps than others. How do we avoid this? we have tried everything we can think of and looked at a bunch of tutorials but they all scale squares or rectangles not weird shapes like we do. Does anyone know an answer to this? I feel like it's something simple I'm not doing. Please Help. Thanks

    Start off with a single object. Offset Path with a positive number makes it “bigger”, with a negative number “smaller”.
    Scaling is definitely not the way to go.

  • How to change the time scale on Dynamometer's profile

    I am using LabVIEW 7.0 and running the Dynamometer Kit. I have tow questions:
    1) How to change the x-increment on the time scale? Right now it is fixed at 0.25 minute per mark. Changing 'x-increment' under VI Hierarchy only changes the mark before the origin (0,0). For example, I changed the value of 'x-increment' to 0.1, I get a -0.1 on the x-axis, however, everything else remains at 0.25 increments.
    2) How to save/load the results of the profile? In other words, how would I save the data into files that I can recall later.
    Thanks

    Hi,
    To address your question, are you referring to the attached dynocode.llb files? I didn't see a waveform graph or chart in these files, but I am assuming your x-increment question is pertaining to a graph you are using. To set the marker spacing on the x-scale, right-click on the front panel where your graph is located and select Properties >> Scales. Then, there is a drop down to select the x or y-axis. Choose the appropriate one and deselect Autoscale. You can then set the offset and multiplier options. The multiplier will set the marker spacing (x-increment) on the graph. Sometimes, the waveform graph doesn't modify correctly and you might want to replace it with a new waveform graph instance. Tight-click on the graph, choose Replace and then
    navigate to the Waveform Graph.vi.
    To address your other question regarding saving/loading the profile information, I would suggest looking at the Read From Text File.vi and Write To Text File.vi example programs that are in the LabVIEW Example Finder under Help >> Fundamentals >> File Input and Output.
    Let me know if you have any further questions or if this does not resolve your issue.
    Thanks again and have a great day!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    dynocode.llb ‏5997 KB

Maybe you are looking for

  • Issue with DataApp Sample in JavaFX.

    Okay so I downloaded the Samples pack here http://jdk8.java.net/download.html or here http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html at the bottom. Inside is one called DataApp which requires setting up an SQL DB,

  • Adobe Application Manager and Photoshop Elements 11 Update stopped working

    and then I tried to find a adobe application manager om Adobes download site, but I got Creative Cloud. And I can't see, what I can use this for, as I have purchased a DVD with Adobe Photoshop Elements 11 and Adobe Premiere Elements 11. Anybody knows

  • A very strange wired and wireless network issue

    Hello, I have never had any issue at all with my macbook (2008) until this week, I use it both for work and personal use. Most of time, I'm used to be on customer site, so I use wired and wireless connections depending of the situation.... I have nev

  • Trapping Events such as Goods Reciept for Purchase Order

    Hi, I want to be able to trap events such as a Goods Reciept and respond to it. Because this can happen both in the goods reciept form or the AP Invoice Form or by automatic posting, is there a way to 'listen' for this event behind the scenes ? I als

  • Grouping cost elements to Activity types?

    Hi friends, We created Machine hours activity & Labor hour activity in production cost centers for charging to production orders. We are able to see in cost center report the over/under adsorption for that cost center. Since there are many primary co