How to fix this Designer Workflow error?

Hi All,
I am facing below error while trying to publish designer 2010 worflow:
(0, 0) Activity 'ID18' validation failed: An IfElseActivity must have at least one child of type IfElseBranchActivity.)
How to fix this issue?
Thanks in advance!

Hi Sam,
This error is due to the if - else branches. Hope you might be using in your workflow.
Designer workflow doesn't accept multiple Else If conditions. Modify the workflow to have 'If - Else If' and then try to publish. In other words 'If' condition should have only one 'Else If' condition.
Note: 
after modifying the workflow, save and close the designer. Clear the cache at the following folders and then open designer and publish the workflow.
C:\Users\loggedin-id\AppData\Roaming\Microsoft\SharePoint Designer\ProxyAssemblyCache  OR  
 %AppData%\AppData\Roaming\Microsoft\SharePoint Designer\ProxyAssemblyCache<o:p></o:p>
C:\Users\loggedin-id\AppData\Local\Microsoft\WebsiteCache   OR
    %AppData%\
AppData\Local\Microsoft\WebsiteCache
C:\Users\loggedin-id\ Roaming\Microsoft\Web Server Extensions\Cache   OR    %AppData%\Roaming\Microsoft\Web
Server Extensions\Cache
Thanks
Senthu
please mark as 'Answer' if it resolves your query or 'Vote' if this post is helpful

Similar Messages

  • How to fix this infopath template error?

    Hi all,
    While trying to Infopath upgrade template facing this:
    "Failed to find the XML file at location '15\Template\Features\FT-01-484dec52-5c4f-8f59-0014-1f4274e530b0\feature.xml'"
    How to fix this, thanks in advance!

    Hi,
    As I understand, you encountered the issue when you upgraded template in InfoPath.
    This error can occur when the Central Admin service is on a separate server from the Web Front Ends. You can reinstall the SharePoint solution including feature with PowerShell, then
    reset IIS.
    The PowerShell script below is to reinstall SharePoint solution:
     Install-SPSolution -Identity <SPSolutionPipeBind such as Bamboo.UI.Licensing.wsp
    > -GACDeployment -AllWebApplications -CompatibilityLevel <your SharePoint level such as 15>
    The article below gives you the details about the PowerShell command “Install-SPSolution”
    https://technet.microsoft.com/en-us/library/ff607534.aspx
    The article below gives you the details about the issue.
    http://store.bamboosolutions.com/KB/Article.aspx?id=12474
    Best regards
    Sara Fan
    TechNet Community Support

  • How to fix this during- boot error?

    Hi,
    I'm on a  fully updated Arch-X86_64/KDE.
    Although the system boots and functions OK, journalctl -b gives this error.
    What's the meaning of it, and how do I fix it?
    Thanks
    ------------part of journalctl -b------------------
    Sep 19 13:51:27 Miki_Arch systemd[584]: Failed at step EXEC spawning /usr/sbin/console-kit-daemon: No such file or directory
    Sep 19 13:51:27 Miki_Arch systemd[1]: Failed to start Console Manager.

    Thanks Skanky,
    Indeed I found the following in  /usr/lib/systemd/system  (see below).
    Given the fact that indeed none of the console-kit has been accessed for over a year, is it safe to delete all those?
    thanks
    Miki Badt
    # pwd
    /usr/lib/systemd/system
    [root@Miki_Arch system]# ls -l consol*
    -rw-r--r-- 1 root root 699 Sep 18 20:13 console-getty.service
    -rw-r--r-- 1 root root 432 May 27 2012 console-kit-daemon.service
    -rw-r--r-- 1 root root 219 May 27 2012 console-kit-log-system-restart.service
    -rw-r--r-- 1 root root 201 May 27 2012 console-kit-log-system-start.service
    -rw-r--r-- 1 root root 218 May 27 2012 console-kit-log-system-stop.service
    -rw-r--r-- 1 root root 722 Sep 18 20:13 console-shell.service

  • How to fix this design?

    I have a main GUI with a bunch of menuItems, each has it's own listener.
    4 of these menuItems do the same exact thing except for the last line whichs launches a different window for each one.
    I would like to get rid of the repetive methods and have one generic class that maybe just returns the 2 files needed to launch the windows.
    My problems is this:
    I add the same listener to each of the 4 menuItems:
    loadWindow( ActionEvent e );
    in loadWindow I call the class that brings up the file selector class
           // brings up 2 file choosers first one then the other
           SelectFiles sf = new SelectFiles();
           fileOne = sf.fileOne;
           fileTwo = sf.fileTwo;
            System.out.println( fileOne );// keeps coming back null
            if( fileOne != null ){
                if( e.getSource() == menuItemOne )
                     new WindowOne();// 
              }Any ideas how do this correctly

    Here's the SelectFiles class.
    No "fileOne" is not static.
    Thanks for taking a look at it
    package SetupPackage;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.JOptionPane;
    import java.awt.event.ActionEvent;
    * Class for getting the 2 files needed to run the apps
    * @version
    public class SelectFiles extends Object {
      private JFileChooser fileChooser;
      public File xmlFile;
      public File dataFile;
      public String xmlName;
      /** Creates new SelectFiles */
      public SelectFiles(File xmlFile) {
         fileChooser = new JFileChooser();
         if( xmlFile == null ){
          // Load xml file
             fileChooser.setSelectedFile(null);
             fileChooser.setCurrentDirectory(new File("."));
             fileChooser.setDialogTitle("Select a Survey");
             int result = fileChooser.showDialog(null, "Load");
             if( result == fileChooser.APPROVE_OPTION){
                 xmlFile = fileChooser.getSelectedFile();
                // reset the file chooser for the data file  
                 fileChooser.setSelectedFile(null);
                 fileChooser.setCurrentDirectory(new File("."));
                 fileChooser.setDialogTitle("Select a Response File");
                 result = fileChooser.showDialog(null, "Load");
                  if( result == fileChooser.APPROVE_OPTION){
                      dataFile = fileChooser.getSelectedFile();
                      //update(this.getGraphics());
                      //new parseData(XMLFile);
                      // this was different in each method
                      // ie (window 1 window 2 window 3)
                      //loadQuestionScreen();
                  else return;
             else return;      
      }// if
    // user have previously loaded an xml file
    // ask if they want to use currently loaded file or a new one 
    else{
           int yes = JOptionPane.showConfirmDialog(null,
                     "Use the currently loaded survey?", "",
                     JOptionPane.YES_NO_OPTION);
    // user selected yes     
           if( yes == JOptionPane.YES_OPTION ){
                 this.xmlFile = xmlFile;
    // user selected no show file choosers again             
           else{    
                 fileChooser.setSelectedFile(null);
                 fileChooser.setCurrentDirectory(new File("."));
                 fileChooser.setDialogTitle("Select a Survey");
                 int result = fileChooser.showDialog(null, "Load");
                 if( result == fileChooser.APPROVE_OPTION){
                     xmlFile = fileChooser.getSelectedFile();
                     fileChooser.setSelectedFile(null);
                     fileChooser.setCurrentDirectory(new File("."));
                     fileChooser.setDialogTitle("Select a Response File");
                     result = fileChooser.showDialog(null, "Load");
                      if( result == fileChooser.APPROVE_OPTION){
                         dataFile = fileChooser.getSelectedFile();
                      //update(this.getGraphics());
                      //new parseData(XMLFile);
                      // this was different in each method
                      // ie (window 1 window 2 window 3)
                      //loadQuestionScreen();
                  else return;
             else return;
    }

  • HOW TO FIX THIS RAM PREVIEW ERROR HELP!

    adobe version Adobe after effects CC 11 .

    before u convert the mp3 audio...which u can do in premiere or an audio program. just delete the mp3 layer from ur comp....then ram review and see if u still get that error.

  • TS1629 ftc how to fix this problem please error 21

    hi every one

    If you can't unlock the iPod with a passcode you will need to restore the iPod through iTunes on your computer. Has the iPod been backed up, either to the computer or iCloud?

  • How to fix this error in db

    Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]A constant expression was encountered in the ORDER BY list, position 1.       Hi i dont what is this error and how to fix this type of error :  here is the code : order by loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title order by Due_Priority_tbl.name, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title order by Status, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title order by Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no order by Due_Priority_tbl.name, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no order by Status, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no

    i had like this in the query
    <cfif orderbys is "1">order by loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title</cfif>
    <cfif orderbys is "2">order by Due_Priority_tbl.name, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title</cfif>
    <cfif orderbys is "3">order by Status, loc.zone_no, Due_Item_Store_tbl.sto_no, Due_Item_tbl.due_title</cfif>
    <cfif orderbys is "4">order by Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no</cfif>
    <cfif orderbys is "5">order by Due_Priority_tbl.name, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no</cfif>
    <cfif orderbys is "6">order by Status, Due_Item_tbl.due_title, loc.zone_no, Due_Item_Store_tbl.sto_no</cfif>

  • Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

    Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

    Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

  • Hey when ever i download and install Itunes then i open it says error finding folder please re download and I tried a tons of times and it didn't work. Does anyone know how to fix this?

    Hey when ever i download and install Itunes then i open it says error finding folder please re download and I tried a tons of times and it didnt work. Does anyone know how to fix this?

    Hi Beege140,
    I have an article for you that will help you address this launch issue with iTunes:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

  • Lightroom encountered an error when reading from its preview cache and needs to quit.  Says Lightromm will attempt to fix the problem the next time it launches, but on every re-launch I get the same message.  Any clue as to how to fix this problem?

    I recently updated my HP laptop's OS from WIndows8 to WIndows8.1.  When I went attempted to open Lightroom5 I got the following message:
    "Lightroom encountered an error when reading from its preview cache and needs to quit. "
    "Lightroom will attempt to fix the problem the next time it launches"
    Every time I relaunch I  get the same message.  I'd like to understand what might be causing the problem so I can remedy and get back to my photo editing. Any clue as to how to fix this problem would be greatly appreciated.
    JPM

    reset your preferences, Resetting (or 'Trashing') the Lightroom Preferences file - Lightroom Forums

  • Lightroom crashes at start up with the error message "Lightroom encountered an error when reading from its preview cache and needs to quit".  Please advise on how to fix this error.  Thanks

    Lightroom crashes at start up with the error message "Lightroom encountered an error when reading from its preview cache and needs to quit".  Please advise on how to fix this error.  Thanks

    You probably need to delete your preview cache.  See here  
    Why And How To Clear Your Lightroom Cache - Lightroom Fanatic
    Preference and other file locations in Lightroom 5

  • How to fix this error message The backup disk image "/Volumes/AirPort Disk/FARES DEL VALLE's iMac.sparsebundle" could not be accessed (error -1).

    how to fix this error message The backup disk image “/Volumes/AirPort Disk/FARES DEL VALLE’s iMac.sparsebundle” could not be accessed (error -1).

    The troubleshooting C17 is the specific article.
    http://pondini.org/TM/Troubleshooting.html
    This is generally a Lion error.. and you will need 5.6 utility to get access to the disk area.
    So download the real utility. Run it instead of v6 toy version.
    http://support.apple.com/kb/DL1482
    Go to the manual setup, disk page and click on disconnect all users.. that will unmount all users connected to the disk and allow it to start working. But there are a number of other issues that are possible cause. Pondini lists some of them.

  • How to fix this error "this iPad is not able to complete the activation process. Please press Home and start over. If the issue persists, please visit your nearest Apple Store or Authorized service provider for more information or replacement"?

    How to fix this error "this iPad is not able to complete the activation process. Please press Home and start over. If the issue persists, please visit your nearest Apple Store or Authorized service provider for more information or replacement"? When I plugged in my iPad this popped up!

    Hi csreddy, 
    If you are receiving a message to contact an Apple Retail Store or Authorized Service Provider for help updating from iOS 3, click on the link below to initiate that support:
    Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support
    http://support.apple.com/en-us/HT204204
    Update your device using iTunes
    If you can’t update wirelessly, or if you want to update with iTunes, follow these steps:
    Install the latest version of iTunes on your computer.
    Plug in your device to your computer.
    In iTunes, select your device.
    In the Summary pane, click Check for Update. 
    Click Download and Update.
    If you don't have enough free space to update using iTunes, you'll need to delete content manually from your device.
    Find out what to do if you get other error messages while updating your device.
    Last Modified: Jan 12, 2015
    Apple - Find Locations
    https://locate.apple.com
    Contact Apple for support and service - Apple Support
    http://support.apple.com/en-us/HT201232
    Regards,
    - Judy

  • Can someone tell me how to fix this error in 10.4.11 on a G5 Quad Core 2.5GHz Tower...A valid video device could not be found for playback. [-70017]

    Can someone tell me how to fix this error in 10.4.11 on a G5 Quad Core 2.5GHz Tower...A valid video device could not be found for playback. [-70017]

    That's an error reported from DVD Player I believe...
    kDVDErrorMissingGraphicsDevice = -70017, // A valid graphics device is not available.
    There's some conjecture it has to do with HDCP, or Video Card problems, but the only 2 cures/fixes I found were Software related, one was cured by updating the OS, another by replacing the Video kexts.
    I think this error also shows up if trying to use DVD player in Safe Mode, (too much research isn't good! ).
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware>Graphics/Displays and report like this...
    NVIDIA GeForce 7800GT:
      Chipset Model:          GeForce 7800GT
      Type:          Display
      Bus:          PCI
      Slot:          SLOT-1
      VRAM (Total):          256 MB
      Vendor:          nVIDIA (0x10de)
      Device ID:          0x0092
      Revision ID:          0x00a1
      ROM Revision:          2152.2
      Displays:
    VGA Display:
      Resolution:          1920 x 1080 @ 60 Hz
      Depth:          32-bit Color
      Core Image:          Supported
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Quartz Extreme:          Supported
    Display:
      Status:          No display connected
    Can't think of much to try at the moment, but perhaps reapplying the big 10.4.11 combo, Repair Permissions, & reboot would help, not sure.
    The combo update for PowerPC-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateppc.html

  • Error code: ssl_error_no_cypher_overlap comes up when I try to veiw the log in screen on tumblr, how to fix this in FireFox 26.0?

    I can browse through tumblr just fine, but whenever I go to the login page it said:
    Secure Connection Failed. An error occurred during a connection to www.tumblr.com. Cannot communicate securely with peer: no common encryption algorithm(s). (Error code: ssl_error_no_cypher_overlap)
    I understand that tumblr has certification errors but that never happened to me before I until I upgraded to Firefox 26.0. I like FF and I don't want to use any other browser.
    How to fix this?

    Does it help if you either disable SSL3 or disable TLS as a test?
    security.tls.version.min = 1 and security.tls.version.max = 1 disables SSL3 and enables TLS 1.0
    security.tls.version.max = 0 and security.tls.version.max = 0 enables SSL3 and disables TLS 1.0
    Type <b>about:config</b> in the location (address) bar and press the <i>Enter</i> key to open the <i>about:config</i> page like you open a website by typing the URL in the location bar.
    *If you see a warning message then you can confirm that you want to access the about:config page.
    *http://kb.mozillazine.org/about:config
    See:
    *http://kb.mozillazine.org/security.tls.version.*
    0 means SSL 3.0, 1 means TLS 1.0, 2 means TLS 1.1, etc.
    You can try to rename the cert8.db file in the Firefox profile folder to cert8.db.old or delete the cert8.db file to remove intermediate certificates that Firefox has stored.
    If that helped to solve the problem then you can remove the renamed cert8.db.old file.
    Otherwise you can rename (or copy) the cert8.db.old file to cert8.db to restore the previous intermediate certificates.
    Firefox will automatically store intermediate certificates when you visit websites that send such a certificate.
    If that didn't help then remove or rename secmod.db (secmod.db.old) as well.

Maybe you are looking for

  • IBook G4 14.1 Keyboard shipping to India

    Hi All, I need to replace my iBook G4 14.1 keyboard (not under warranty or AppleCare) since almost all the keys were meticulously pulled out by my 2.5 yrs old son (i still wonder how he did it with such patience). However iam at present in Pune, Indi

  • Running total as alphabets

    I want to put a running total as alphabets. For Example 1. Question Title      A) Option 1      B) Option 2      C) Option 3 2. Question Title      A) Option 1      B) Option 2      C) Option 3 I got the running numbers for Question Title but i am no

  • Logs of deleted Service transactions

    Hi to All, Good Day! I just want to ask if there's a log where I can view the details of deleted service transactions? Hoping for you kind response. =) Thanks! Lynne

  • After Effects and Elements 11

    Will Adobe After Effects work with Adobe Premiere Elements 11?

  • After the last Maverick update desktop files disappeared.

    I can no longer drag files to my desktop. The files I had on desktop before the update are in Finder (glad I didn't lose them altogether) but I liked having them so easily accessible. I don't think this was an intended change and wondered if anyone e