Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Editing workflow properties using Notepad

pstojakovic2
6 - Meteoroid

Hi there, I have this macro I've been working on for some time, that converted itself to an app workflow when I borrowed some code from another team @ my work. Now, whenever I try to open the file, Alteryx crashes. I'm aware you can edit Alteryx files in notepad, is it possible to convert it to a macro workflow from there? Thanks so much for the help.

4 REPLIES 4
Qiu
21 - Polaris
21 - Polaris

@pstojakovic2 
It is  definitely out of my reach.
Maybe you can ask your friend to have a XML output?

https://gallery.alteryx.com/#!app/XML-Output/565bfd4caa690a12542665e3

apathetichell
19 - Altair

hypothetically yes...

I think technically an APP is called a Wizard internally in the .xml and at the bottom there is configuration in the module type settings. Here are different settings for the same workflow as an app and as a macro:

app values:

<RuntimeProperties>
<Actions />
<Questions>
<Question>
<Type>Tab</Type>
<Description>Questions</Description>
<Name>Tab (2)</Name>
<ToolId value="2" />
<Questions />
</Question>
</Questions>
<ModuleType>Wizard</ModuleType>
<MacroCustomHelp value="False" />
<MacroDynamicOutputFields value="False" />
<MacroImageStd value="39" />
<MacroInputs />
<MacroOutputs />
<Wiz_CustomHelp value="False" />
<Wiz_CustomGraphic value="False" />
<Wiz_ShowOutput value="True" />
<Wiz_OpenOutputTools />
<Wiz_OutputMessage />
<Wiz_NoOutputFilesMessage />
<Wiz_ChainRunWizard />
</RuntimeProperties>
</Properties>

 

macro values:

<RuntimeProperties>
<Actions />
<Questions>
<Question>
<Type>Tab</Type>
<Description>Questions</Description>
<Name>Tab (2)</Name>
<ToolId value="2" />
<Questions />
</Question>
</Questions>
<ModuleType>Macro</ModuleType>
<MacroCustomHelp value="False" />
<MacroDynamicOutputFields value="False" />
<MacroImageStd value="39" />
<MacroInputs />
<MacroOutputs />
<Wiz_CustomHelp value="False" />
<Wiz_CustomGraphic value="False" />
<Wiz_ShowOutput value="True" />
<Wiz_OpenOutputTools />
<Wiz_OutputMessage />
<Wiz_NoOutputFilesMessage />
<Wiz_ChainRunWizard />
</RuntimeProperties>
</Properties>

 

So I believe you'd have to change the module type and rename... off to try it! Update - manually changed Module to Wizard and saved file a .yxwz. Opened as an App.

pstojakovic2
6 - Meteoroid

Ok, thank you so much, I will try that.

pstojakovic2
6 - Meteoroid

Ok, I was able to resolve the issue by starting a clean document, copying over all the node and connection data in the correct areas, and then deteling the macro input and output tools

Labels
Top Solution Authors