cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Created an iFlow to receive a file and send it to an SFTP server

lgutiegt
Explorer
0 Kudos
202

Hi Everyone

I’ve created an iFlow in SAP Integration Suite (Cloud Integration) that is designed to receive a file and forward it to an SFTP server. The iFlow is deployed and seems to be working

lgutiegt_1-1747961286266.png

 

lgutiegt_0-1747961265048.png

lgutiegt_2-1747961399777.png

When trying to test the API with CURL, I get an error.

curl -v -X POST https://xxxx-iflmap.hcisbp.us2.hana.ondemand.com/http/uploadSFTP -u s-user:pass -H "Content-Type: application/octet-stream" --data-binary "@archivo.txt"

Error: X-message-code: PWD_WRONG

lgutiegt_3-1747961546775.png

Questions:

Can I use an s-user, or does it have to be a technical user?

What other possible causes could there be?

 

Thanks you

 

 

 

 

Accepted Solutions (1)

Accepted Solutions (1)

lgutiegt
Explorer
0 Kudos

Hi Everyone

After reviewing the documentation, I can conclude:
1. I can call an iflow from an SAP BTP Web UI (html5) application with an S-user.
2. The problem was the lack of roles. I found the necessary ones in the documentation:

Cloud Integration - How to Setup Secure HTTP Inbou... - SAP Community

To configure and deploy Integrations flows in WebUI your user needs the Group Role AuthGroup.IntegrationDeveloper or Single Roles WebToolingWorkspace.Read,
WebTooling.IntegrationFlowConfigure, GenerationAndBuild.generationandbuildcontent and
NodeManager.deploycontent.

Thansk you @alex_bundschuh 

 

Answers (1)

Answers (1)

alex_bundschuh
Product and Topic Expert
Product and Topic Expert
lgutiegt
Explorer
0 Kudos
Hi Alex, Thanks for your reply. I'll check my configuration against the documentation. If I get any success, I'll let you know what I was missing.