Choose replica creation method not available

Hello,
when I create a protection group for client (desktop, laptop), the 'Choose replica method' does'nt appear in the wizard.
Is there a way to choose a replica method with Clients ?
Thanks in advance,
Jerome

Hi,
No - Client protection has a different workflow and is not conducive to manual replica load.  Clients initiate the initial synchronization and if you tried to do it manually, would have likelihood of file copy collisions.
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
This posting is provided "AS IS" with no warranties, and confers no rights.

Similar Messages

  • Method not available error

    i have developed a program using java 1.2 API. it is running perfectly in my PC. But when i run the same by using the JRE, it gives the error that lisFiles() method not available in File Class. On debugging, i found that that feature was added only in 1.2 API. So, i feel from this that JRE that is given along with 1.2 api is older one. How to resolve this issue. where can i get the 1.2 version of JRE.
    UMani

    hi,
    well the method name should read listFiles (not lisFiles), anyway, the listFiles method as you have mentioned was only introduced in jdk1.2 and later, so you would require to have a jdk later to that, you could download the latest jdk ver 1.3.1 from java.sun.com, click on the products and api and then select the jdk from there.
    cheerz
    ynkrish

  • Destroy method not available in NWDS 2.0.1 for iframe .......

    Hi,
    I have problem with version..
    Destroy method will work in nwds 7.0.1 but this code does not work with NWDS 2.0.6
    Please give me alternate of this method at lowe NWDS Version.
        if(!firstTime)
              IWDIFrame frame = (IWDIFrame)view.getElement("IFrame1`");
              frame.destroy();
    Regards,
    Gurprit Bhatia
    Edited by: GURPRIT BHATIA on Feb 21, 2008 10:49 AM

    Hi,
    IWDViewElement is the interface which provides the destroy method it seems that is not available in NW 04.
    Regards
    Ayyapparaj

  • GetURL() and getSystemID() method not available

    Hi All,
    We are upgrading the jdk version from 1.4 to 1.5 and also the JCO version from JCO2.0 to sapjco3-NTAMD64-3.0.7
    In our application, the below code snippet was used to set the client in making the RFC connection
    public void setClient(JCO.Client client) {
            if (client != null) {
                this.alive = client.isAlive();
                this.propertyInfo = client.getPropertyInfo();
                this.systemID = client.getSystemID();
                this.systemNumber = client.getSystemNumber();
                this.userName = client.getUser();
                if (client.isAlive()) {
                    URL clientURL = client.getURL();
                    if (clientURL != null) this.url = clientURL.toString();
                    JCO.Attributes attributes = client.getAttributes();
                    if (attributes != null) {
                        this.clientNo = attributes.getClient();
                        this.destination = attributes.getDestination();
                        this.language = attributes.getISOLanguage();
                        this.partnerHost = attributes.getPartnerHost();
                        this.partnerRelease = attributes.getPartnerRelease();
    With the new JCO 3 version , the client.getSystemID() and client.getURL() methods are not available anymore.
    Can some expert help us by giving the replacement methods which we need to use.
    As the project is in critical stage, it would be great if some expert can provide us the solution at the earliest
    Thanks,
    Sakthi Priya

    Hi Yaqoub,
    The Education version has the Follow me and the Line that you can use to route traces, the Connection Machine is not in this version.
    Tien P.
    National Instruments

  • Implementation for Method not available

    Hi
    I have installed Weblogic 5.1 with Sp 12 in Solaris 2.8.
    I wrote an Java application which connects to a Oracle
    Database using Weblogic JDriver. I used jdbc20 Driver
    available under Weblogic. When I try to execute any of
    the JDBC2.0 Spec methods like updateRow() I get an exception
    saying "the JDBC2.0 method is not implemented". What could
    be the problem?
    Thanks & Regards
    Ramkumar

    Hi Ramkumar,
    Not all JDBC 2.0 methods are implemented in this driver, you can check out
    the list of available methods in the WLS docs online. I suggest using the
    thin driver.
    sree
    "Ramkumar" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi
    I have installed Weblogic 5.1 with Sp 12 in Solaris 2.8.
    I wrote an Java application which connects to a Oracle
    Database using Weblogic JDriver. I used jdbc20 Driver
    available under Weblogic. When I try to execute any of
    the JDBC2.0 Spec methods like updateRow() I get an exception
    saying "the JDBC2.0 method is not implemented". What could
    be the problem?
    Thanks & Regards
    Ramkumar

  • File Chooser Component for JavaFX not available?

    Is there a way to have a “File Chooser Component” for JavaFX Applications?
    Netbeans IDE offers a “Palette Swing Windows” Components, displays such item, but I am unable to put it into my FX Script.
    Any workaround? or miss I a anything?
    I want to pickup any sourcefile: "{__DIR__}sound/{soundName}" from local disc and run it on a Mediaplayer

    import javax.swing.filechooser.FileFilter;
    * @author Pawel
    public class OpenFileFilter extends FileFilter {
        override public function getDescription() : String {
            return "all movies";
        override public function accept(f: java.io.File) : Boolean {
            return f.isDirectory()
                or f.getName().endsWith(".avi")
                or f.getName().endsWith(".mov")
                or f.getName().endsWith(".flv");
    import java.awt.SystemTray;
    import java.awt.TrayIcon;
    import java.awt.Toolkit;
    import java.awt.PopupMenu;
    import java.awt.MenuItem;
    import java.awt.AWTException;
    import java.lang.System;
    var stage : Stage = Stage {
        title: "JavaWars"
        width: 800
        height: 600
        scene: scene,
        style: StageStyle.TRANSPARENT,
        extensions: [
            AppletStageExtension {
                shouldDragStart: function(e): Boolean {
                    return inBrowser and e.primaryButtonDown and header.hover;
                onDragStarted: function() {
                    inBrowser = false;
                    addTray();
                onAppletRestored: function() {
                    inBrowser = true;
                    removeTray();
                useDefaultClose: true
    var trayIcon : TrayIcon;
    function addTray() : Void{
        if(SystemTray.isSupported()) {
            var tray : SystemTray  = SystemTray.getSystemTray();
            var image : java.awt.Image = Toolkit.getDefaultToolkit().getImage("{__DIR__}resources/images/trayicon.png");
            var popup : PopupMenu = new PopupMenu();
            var item : MenuItem = new MenuItem("Zako&#324;cz");
            item.addActionListener(ActionListener{
                override public function actionPerformed(e : ActionEvent): Void {
                    var tray : SystemTray  = SystemTray.getSystemTray();
                    tray.remove(trayIcon);
                    stage.close();
            popup.add(item);
            trayIcon = new TrayIcon(image, "kliknij prawym, aby zamkna&#263; aplikacj&#281;", popup);
            try {
                tray.add(trayIcon);
            } catch (e : AWTException) {
                System.err.println("Can't add to tray");
        } else {
            System.err.println("Tray unavailable");
    function removeTray() : Void{
        if(SystemTray.isSupported()) {
            var tray : SystemTray  = SystemTray.getSystemTray();
            try {
                tray.remove(trayIcon);
            } catch (e : AWTException) {
                System.err.println("Can't remove tryicon");
    }

  • Valid size not available for this creation when using Greeting Card feature

    Using PSE9 with a Mac.  When attempting to create a greeting card, after selecting the photo, the Greeting Card, I receive a pop up error message as follows:
    "Valid Size Not Available For This Creation".  (All other Create functions such as Photo Book, Photo Calendar, and Photo Collage appear to be working).  I have been in contact with Adobe Support and have been instructed to do a number of things from creating a new preferences file to uninstalling and re-installing the PSE software, with no result.  Has anyone else run into this problem, and if so have found a fix?  Thanks.

    I've been tearing my hair out over this one also. I've been on hold for over 10 hrs with Adobe Support waited over almost 2 weeks and still no resolution. I'm trying to create the Save the Date cards for my wedding and I can't wait for Adobe. Removing the preferences file and uninstalling/reinstalling does not fix the problem.
    That said I did figure out a workaround for this. It's easy but it does require Windows. For me this was no big deal as I do own a Windows box.
    Get the free trial version of PE9 for Windows and install it. If you don't have a Windows computer get to a friend that has one
    Upload some of your photos to the PE9 Windows Organizer (it's identical to the mac version)
    Select Create and then Greeting card. Photoshop will launch the guided edit feature for greeting cards.
    Select the Layout feature and once you find out that you like save it as Photoshop project. Repeat this step for as many layouts as necessary.
    Copy your Photoshop project files (and any folders) to your mac.
    Open the project files as you would with any other Photoshop file.
    You can now select the Create feature. You will be able add your pictures and resize them, you will be able to add/remove text, you'll be able to change the backgound/borders, add graphics...pretty much anything...EXCEPT automatically modify the layout. If you click on Layout, PE9 returns nothing. You can however go into full edit mode and if you have decent Photoshop skills you can make any changes to the layout manually.
    If I had to put money on this I'd say that there is a problem with the PE9 Mac installation package. For some reason it is not deploying the layout data/files or it is not putting them in the right place. For this reason the program can't find the layouts when the user selects the greeting card guided edit.
    Good luck.

  • I cannot do a software update, I get as far as System Updates then when I choose it a message appears say  "Check for update is not available at this time"  but I have not had a system update for a good while now.  I am on System version 6.16.211.XT912.Ve

    I cannot do a software update, I get as far as System Updates then when I choose it a message appears say  "Check for update is not available at this time"  but I have not had a system update for a good while now.  I am on System version 6.16.211.XT912.Verizon,en,US

    Which phone model?

  • Payment method Cheque is not available in IT9

    Hi Experts,
    I have a query.
    In Infotype bank details, under payment method Cheque option is not available in the dropdown menu.
    But It is defined in payment method. Even though it is not displaying is there any other settings I have to make.
    Please help me to solve this issue.
    Regards,
    R. Arokia Merlin

    HI,
    Payment methods are to be defined in the Financial Accounting configuration menu, where the following steps are to be carried out:
    1. First of all, make all specifications that are required for a country-specific payment method.
    2. Then define per company code the terms under which a payment method can be used.
    All payment methods are displayed in the customer or vendor master record in the screen for selecting the payment method
    Kindly check with FICO consultants.
    I hope this would slove your probs. If yes please close this query and give marks accordingly.

  • Photoshop elements 12 "valid size not available for this creation"

    I see the message "valid size not available for this creation" when I am in organizer and  I try and go to create a collage, photo book or any of those options.  I have tried to see what other people have done by changing their location to usa/Canada but that didn't work for me.  Can you help me resolve this?  Thanks!

    The error means that Elements is experiencing problems calling up the templates from the media database. You may need to close elements and then rename or delete the following system file and then re-launch the software and wait whilst the database is re-created. find:
    Mediadatabase.db3
    The following link gives further information:
    http://helpx.adobe.com/photoshop-elements/kb/error-valid-size-available-creation.html

  • Thread creation error: Not enough storage is available to process this command

    Two user in my company have this problem, I have already used the solution on the community but would come back after 2 to 3 weeks. They all have the message "Thread creation error: Not enough storage is available to process this command". I tried increase the virtual memory to 4Gb, update one client to the latest, reset IRPStackSize, delete temp folder.  one client is 7.5.XX with windows 7 and another is 6.20.0.104 with Windows XP,My machine is also 6.20 with windows 7 but I dont have this problem.   

    Version previous to 7.6 worked fine. After update I have got this message and mostly of Skype GUI turns black or vanishes. No possibility of making more than one call before crash, It is amazing that a thread started about two weeks ago has no technical answer, at least. What do I do with my credits and my appointments? Throw them away?

  • Valid Size not available for this Creation (Greeting card only) - Elements 10 for Mac

    I purchased Adobe Photoshop/Premiere Elements 10 for my MAC and am getting "VALID SIZE NOT AVAILABLE FOR THIS CREATION" when I try to create a GREETING CARD only.  All other options in CREATE work.
    I have read other forums on here and have tried everything they have said and it still does not work.  I have tried:
    opt, cmd and shift to delete preferences
    uninstalled and reinstalled
    performed updates on both my MAC and the program
    Can anyone PLEASE suggest other solutions to this problem?  Perhaps I am doing something wrong.  Thanks!

    Hi - My file structure is somewhat different than the file structure that you describe in the first part of your note (My system is Windows XP with Service Pack 3).  This is what my file structure looks like: 
        C:/Program Files/Adobe/Elements 10 Organizer/locales/en_US
             >application_swfs
             >Plug-Ins
             >Suppport Files
    No Creation Graphics folder, no Kodak Gallery Folder, no files with the name E9_preview_photocard_1(or2).jpg.
    I perfromed a hard drive search on filename E9_preview_photocard* and found these files under:
         C:\Documents and Settings\All Users\Application Data\Adobe\Photoshop Elements\10.0\Locale\en_us\CreationGraphics\local
    I performed a hard drive search on Kodak Gallery and found the file under:
         C:\Documents and Settings\All Users\Application Data\Adobe\Photoshop Elements\10.0\Locale\en_us\CreationGraphics\Kodak Gallery
    This Kodak Gallery folder contains 10 files, 2 of which appear to be related to Greeting Cards.  These are 5x7_adobe_folded_cards and 5x7_adobe_folded_cards_zoom
    Regarding the 235x120 greeting files, I search and found these under
         C:\Documents and Settings\All Users\Application Data\Adobe\Photoshop Elements\10.0\Photo Creations\photo layouts
    NOW WHAT???
    thanks

  • "Valid size not available for this creation"

    I've installed the Photoshop Elements 10 with the language JP successfully, but Greeting Card does not work at all; "Valid size not available for this creation" (JP: この作品で使用できる有効なサイズがありません) can not be resolved, even though followed the instruction  (http://helpx.adobe.com/photoshop-elements/kb/error-valid-size-available-creation.html). MediaDatabase.db3 is on C:\ProgramData\Adobe\Photoshop Elements\10.0\Locale\ja_jp\. Pls. anybody help me on this !

    Try elvidgeg's solution in this thread:
    http://forums.adobe.com/message/4248143#4248143

  • Why an Error Message "Valid size not available for this Creation" in Elements 10 Photo Collage

    I have several image editing programs, but I bought Elements 10 specifically to do things the others wouldn't.  I wish to make a photo collage but all I get when I try, after following the instructions in the "help" and "Elements 10 for Dummies" is an error message stating "Valid Size not available for this Creation."  A meaningless phrase anyway because nowhere does it request a "valid size." Please will someone tell me the magiac words to make my lovely collage automaticaslly, or shall I revert to doing it manually on one of my other excellant image editing programs?

    http://helpx.adobe.com/photoshop-elements/kb/error-valid-size-available-creation.html
    If nothing there helps, see post 4 in this thread:
    http://forums.adobe.com/message/4248143#4248143#4248143

  • Elements 9 photo collage - message "valid size not available for this creation"

    Hi There,
    I am trying to creat a photo collage in Elements 9 and always get the message "Valid size not available for this creation.".  Has anybody figured out a fix for this bug????????????
    Thanks
    Roy

    http://kb2.adobe.com/cps/927/cpsid_92734.html

Maybe you are looking for

  • Hp color laserjet cm1017 mfp

    hp color laserjet cm1017 mfp  software

  • How can I specify different settings in CustomSettings.ini based on the OS that is being deployed?

    I originally thought this could be achieved using "OSVersion" or "OSCurrentVersion" but (unless I'm mistaken) those variables are in fact tied to the OS from witch you actually launch the MDT Wizard right? i.e. say I run MDT from within Windows PE to

  • Need help making spike for IR

    I read in another thread about drawing a pulse or spike to get a higher quality impulse response from outboard reverb via spdif, but I'm having trouble making the spike. How long? How loud? What does it look like? The pencil tool's behavior is weird,

  • Faults with document style operation

    I am getting the following error when attempting to generate stubs from my WSDL: warning: ignoring fault "TestError" of document-style operation "testOperationWithFault" Are faults not supported for document-style operations or is my WSDL incorrect.

  • AIArtSuite::GetArtBounds

    I try to use AIArtSuite::GetArtBounds to get the bounds of an art, but the result is different than the bounds data in Transform panel. Why? Does the result of AIArtSuite::GetArtBounds uses pixel unit? and how to get the same result as in Transform p