Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Need help in SFTP -FILES_TO_GET Configuration

SumathiSomala
All-Star
All-Star

Hi team,

I am integrating SFTP connection with saviynt to download the data files and SAV file

I found the below JSON in connection guide to download the files.

I have few questions on this.

1.Is it mandatory to have both SAV and CSV/data file in same location specified in doc or we can use different file directories?

2.Can saviynt job picks multiple files at once?

eg: list1.csv, list2.csv

Since each file size should not be more than 10MB

3.Is naming convention required for data files like Account1.csv,Account2.csv as we follow for schema uploads.

3. How to Specify SAV file name in JSON?

[
{
"eic_dest_dir": "DataFiles",
"src_dir": "/home/data/",
"file_list": [
"file1.csv",
"file2.txt"
]
},
{
"eic_dest_dir": "SchemaFiles",
"src_dir": "/home/sav/",
"regex_list": [
"^.*\\.sav"
]
}
]

 

Any help would be appreciated.

Regards,
Sumathi Somala
If this reply answered your question, please Accept As Solution and give Kudos.
1 REPLY 1

DaanishJawed
Saviynt Employee
Saviynt Employee

Hi @SumathiSomala ,

1. Both SAV and CSV should be in the same location as mentioned in the Document.

2. Yes it can.

Example: Upload files to the same target directory. To simultaneously upload few files based on name and few files based on the Regex pattern, use the following format:

 

[
  {
    "eic_src_dir":"Reports",
    "target_dir":"/home/reports1/",
    "file_list":["file1.csv","file2.xlsx"],
    "regex_list":["*.zip"]
  }
]

 

 3. No naming convention is required for CSV files.

4. You can specify by using the extension .SAV in the regex section or in the file list as file1.sav.

For complete documentation on above points please refer -

https://docs.saviyntcloud.com/bundle/SFTP-Certified-v23x/page/Content/Configuring-the-Integration-fo...

Thanks.