Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

sequence

&pagelevel(3)&pagelevel

You use sequence to execute the activities in a sequence one after the other in the specified order.
Each child activity can use the results of the preceding child activities. If an activity adds new context objects to the sequence context (e.g. transferFile/toLocalTmpFile or listDirectory), then the following activities can access the new data.

Format

 <sequence>
   comment?
   context?
   Activity+
 </sequence>

Example

 <?xml version="1.0" encoding="UTF-8"?>
 <ftscript version="1">
   <sequence>
     <transferFile>
       <fromLocalFile name=
        "W:/openFT/ftscript/Test/data/small/text.txt" data="char"/>   
       <toRemoteFile name="text.txt">
         <partner name="UnixP_1">
           <transferAdmission>
             <ftacAdmission ftacAdmission="FTACADM1"/>
           </transferAdmission>
         </partner>
         <directory name="frg_eis_14"/>
       </toRemoteFile>
     </transferFile>
     <transferFile>
       <fromLocalFile name=
         "W:/openFT/ftscript/Test/data/large/bin.mp3" data="bin"/>
       <toRemoteFile name="bin.mp3">
         <partner name="WindowsP_1">
           <transferAdmission>
             <ftacAdmission ftacAdmission="FTACADM2"/>
           </transferAdmission>
         </partner>
         <directory name="frg_eis_14"/>
       </toRemoteFile>
     </transferFile>
   </sequence>
 </ftscript>

The files text.txt and bin.mp3 are delivered one after the other.

First of all, the first request in the request queue is submitted. Once this has been completed and if no error message is triggered, the second request in the request queue is submitted.