cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with Sender SFTP PGP file adaptor

Former Member
0 Kudos

Hello All,

I am facing an issue with Sender SFTP adaptor, we have implemented PGP module and we are on version 7.1 EHP 1/SPS8, I am trying to pull the files from an SFTP server and I want to pull all files with SAP*.txt, even though they are files in the folder, files are not being picked and get a message in RWB with 0 files found. any help highly appreciated.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I could Manage to pick the files with [SAP].*, however i am having different issue now, when number of files are more, nothing is getting picked up, in RWB I get a message no new files to pick up, 0 files found. is there any configuration setting to look to see max  number of files somewere?

Thanks,

Former Member
0 Kudos

You definitely have to use java expressions for the filenames.

F.e. if you want to pick up all files starting with 013 and 035 you can do it like this:

^((?!013|035).)*$

If your files start with SAP i would try the following:

^((?!SAP).)*$