Skip to Content

File Share Read Activity

Introduction

A File Share Read activity reads data from a File Share endpoint and is intended to be used as a source in an operation or to be called a script. After configuring a File Share connection, you can configure as many File Share activities as you like for each File Share connection.

Create a File Share Activity

An instance of an activity is created from a connection using an activity type.

To create an instance of an activity, drag the activity type to the design canvas or copy the activity type and paste it on the design canvas. For details, see Creating an Activity Instance in Component Reuse.

An existing activity can be edited from these locations:

Configure a File Share Read Activity

Follow these steps to configure a File Share Read activity:

Step 1: Enter a Name, Provide a Response Schema, and Specify Settings

attachment

Tip

Fields with a variable icon attachment support using global variables, project variables, and Jitterbit variables. Begin either by typing an open square bracket [ into the field or by clicking the variable icon to display a list of the existing variables to choose from.

  • Name: Enter a name to use to identify the File Share Read activity. The name must be unique for each File Share Read activity and must not contain forward slashes (/) or colons (:).

  • Provide Response Schema: The response schema defines the structure of data that is used by the File Share Read activity. Whether a response schema is required depends on if the activity is used as the source of a transformation (see Schema Usage). For instructions on completing this section of activity configuration, refer to Schemas Defined in an Activity.

  • Get Files: Enter the name of the file(s) that you want to read from within the directory specified in the File Share connection. This field may also include an asterisk (*) to use as a wildcard (for example, *.dat or *.*) or a question mark (?) to match exactly one character (for example, file?.txt). The use of wildcards is separate from the Use Regular Expression option described below. If specifying data in ZIP format to be automatically decompressed and read, see the Compression options described below.

  • Optional Settings: Click to expand additional optional settings:

    attachment

    • File Filter Options: These options affect how the input entered in the Get Files field above is interpreted:

      • Ignore Case: Select this checkbox if you have entered input in the Get Files field above that should be interpreted as case-insensitive.

      • Use Regular Expression: Select this checkbox if you have entered input in the Get Files field above that should be interpreted as a regular expression. This option is separate from the use of wildcards described in Get Files above.

    • Character Encoding: Specify character encoding to define a specific character encoding for the source file. If you leave the field blank, Harmony tries to detect the encoding. If you want to overwrite the default, you can choose from any of the encoding types listed in Supported Character Encodings.

    • After Processing: If you want to perform further actions after processing the data, these options are available:

      • Delete File: Select this checkbox if you want files that have been successfully processed to be deleted. When this option is selected, the Rename File option below is automatically populated with /\delete/\ to indicate that processed files will be deleted and as such, renaming a file does not apply. Clearing Delete File also clears the Rename File field.

      • Rename File: Enter a name if you want to rename files after processing. Any of the filename keywords are available to generate unique filenames for the source data after processing. Note the Rename File field is unavailable if Delete File above is selected. In addition, toggling Delete File above clears any input entered in the Rename File field.

    • Trigger File: Available only for use with Private Agents where local files are enabled, a trigger file is a file that must be present before a source file is retrieved by an operation for processing. The presence of a trigger file indicates that a source file is ready to be read and is not still in the process of being written by a previous operation.

      • Use Trigger: Select this checkbox if you want the system to look for a trigger file before processing source files. Note, when using a trigger file:

        • The operation polls, looking for the trigger file. Polling time interval is fixed at one second.

        • The trigger file is deleted as processing starts.

        • If the trigger file is not found, the operation keeps attempting to find the trigger file until the operation times out.

        • Setting a trigger file blocks any operation or script that uses the source until either the trigger file condition is satisfied or the operation times out.

      • Absolute File Path: Enter the absolute file path on the Private Agent machine where the trigger file resides. Select a file that meets these criteria:

        • The file can be of any type and may contain anything as its contents; only the presence of the file defines the trigger file behavior.

        • The use of wildcards is not permitted.

        • The trigger file cannot be the same file as a source file being processed.

        Note

        When using filename keywords in this field, the keywords are not resolved. For a workaround, see Limitation and Workaround under Filename Keywords.

    • Ignore Lines: If there are headers and/or footers in the source data, enter the number of lines to ignore in the First and Last fields.

    • Compression: If the source data is in a compressed format, select The Source Data Is Compressed. These options become available:

      • Format: Use the dropdown to select the format of the compressed data. Currently, only ZIP format is supported.

      • Password: If the archive is encrypted, enter the password.

        Note

        Harmony supports reading only from the root directory of an encrypted archive.

  • Save & Exit: If enabled, click to save the configuration for this step and close the activity configuration.

  • Next: Click to temporarily store the configuration for this step and continue to the next step. The configuration will not be saved until you click the Finished button on the last step.

  • Discard Changes: After making changes, click to close the configuration without saving changes made to any step. A message asks you to confirm that you want to discard changes.

Step 2: Review the Data Schemas

attachment

  • Data Schema: If provided during activity configuration, the response data schema is displayed. If the operation uses a transformation, the data schemas are displayed again later during the transformation mapping process, where you can map to target fields using source objects, scripts, variables, custom values, and more . You can also define schemas directly in a transformation.

  • Add Plugin(s): Plugins are Jitterbit- or user-provided applications that extend Harmony's native capabilities. To apply a plugin to the activity, click to expand this section and select the checkbox next to the plugin to be used. For additional instructions on using plugins, including details on setting any required variables used by the plugin, see Plugins Added to an Activity.

  • Back: Click to temporarily store the configuration for this step and return to the previous step.

  • Finished: Click to save the configuration for all steps and close the activity configuration.

  • Discard Changes: After making changes, click to close the configuration without saving changes made to any step. A message asks you to confirm that you want to discard changes.

Next Steps

After configuring a File Share Read activity, you can use it within an operation or script as described below.

Complete the Operation

After configuring a File Share Read activity, complete the configuration of the operation by adding and configuring other activities, transformations, or scripts as operation steps. You can also configure an operation's operation settings, which include the ability to chain operations together that are in the same or different workflows.

Once a File Share Read activity has been created, menu actions for that activity are accessible from the project pane in either the Workflows or the Components tabs, and from the design canvas. See Activity Actions Menu for details.

File Share Read activities can be used as a source with these operation patterns:

Other patterns are not valid using File Share Read activities. See the validation patterns on the Operation Validity page.

When ready, deploy and run the operation and validate behavior by checking the operation logs.

Using File Share Activities in Scripts

File Share Read activities can also be referenced in a script for use with script functions that use a sourceId as a parameter, including these:

Jitterbit Script Functions

  • ArchiveFile
  • Base64EncodeFile
  • DeleteFile
  • DeleteFiles
  • DirList
  • FileList
  • ReadFile

JavaScript Jitterbit Functions

  • Jitterbit.ReadFile

For more details on referencing activities in scripts, see Endpoints in Jitterbit Script or Endpoints in JavaScript.