🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

How to use a manifest for a visual process with Dataprep

User: "Thomas_21587"
Altair Community Member
Updated by Thomas_21587

Does anyone have a sample Automator process / and xml manifest file they can share for using a manifest with a Visual Process to kick off a Dataprep export? 

 

I've been looking at the API samples but I think the only examples I found there are for Classic Monarch.

Is this possible for Dataprep or are manifests only for Classic Monarch processes?

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "Altair Forum User"
    Altair Employee
    Updated by Altair Forum User

    Found the basic answer in the help file for Monarch Server under topic "Visual Process with Manifest Monitoring".

     

    Additional documentation (via XSD file) in VisualProcessesApiSamplesVS2013.7z\VisualProcessesApiSamples\Models\Manifest\ProcessStartParams.xsd in my Datawatch server installation directory Samples.

     

    I was trying to determine how to add runtime values in a Visual Process... untested example below which I believe is going to do the trick.

     

    <?xml version="1.0" encoding="utf-8"?>

    <ProcessStartParams ProcessName="Test name">

       <ProcessItems>

         <ProcessItem>

           <ItemType>InputFile</ItemType>

             <FileInput>

                <Name>File Input</Name>

                 <FileLocation>file:Input path</FileLocation>

                <PdfPassword/>

             </FileInput>

         </ProcessItem>

       </ProcessItems>
      
       <RuntimeFields>
          <RuntimeField>
             <Name>RuntimeName</Name>
             <Value>RuntimeValue</Value>
          </RuntimeField>
       </RuntimeFields>

    </ProcessStartParams>