Hello, I have just started using SAS Studio to create custom tasks and have a simple example where I display a folder dialog. I am trying to change the default folder that is being displayed by input type sasserverpath. How can I change it so it points to a different folder? <?xml version="1.0" encoding="UTF-8"?>
<Task schemaVersion="5.3" runNLS="never">
<Registration>
<Name>Custom Task - TEST</Name>
<Description>TEST task</Description>
<GUID>726B2B12-4542-4200-96F4-960C645D767F</GUID>
<Procedures>Data Step</Procedures>
<Version>3.71</Version>
<Links>
<Link href="http://documentation.sas.com/?cdcId=webeditorcdc&cdcVersion=3.6&docsetId=webeditorug&docsetTarget=titlepage.htm&locale=en">SAS Studio User Guide</Link>
</Links>
<Category>DATA</Category>
</Registration>
<Metadata>
<DataSources>
</DataSources>
<Options>
<Option name="FolderPrompt" inputType="sasserverpath" defaultName="NEW_FOLDER" required="false" pathType="folder" promptMessage="Set current working folder">Select a folder: </Option>
<Option name="optionstab" inputType="string">OPTIONS</Option>
<Option name="optionsgrp" inputType="string">EXTRACT SOURCE DETAILS</Option>
</Options>
</Metadata>
<UI>
<Container option="optionstab">
<Group open="true" option="optionsgrp">
<OptionItem option="FolderPrompt"/>
</Group>
</Container>
</UI>
<CodeTemplate>
<![CDATA[
${FolderPrompt.path}
]]>
</CodeTemplate>
</Task>
Second question, is there a way to list all the available methods and properties of the VTL variables used in the custom task? Any inputs greatly appreciated. Thanks, Mario Tejada
... View more