Introduction:In SAP Cloud Integration (CI and formerly known as CPI), Groovy scripts play a crucial role in customizing and fine-tuning integration flows. Whether you're manipulating XML structures, handling data transformations, or performing comple...
Hi,
I would like to address an issue we are currently facing in our integration scenario and seek your assistance
1. integration Scenario
The integration scenario involves transferring data between two systems via a CPI interface/iFlow. If an ...
Hi,Got it, script was slightly modified to handle the dataType as in "Double" integer and here is the updated script. Give it a try now. import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
def Message process...
Hi,The following groovy should fulfill your requirement, kindly give it a try.import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
def Message processData(Message message) {
//getting the input body
...
Hi,The issue probably occurred when the interface began writing/uploading files simultaneously to the SFTP server. Essentially, it's like attempting to upload two files at the same timeRegards,Naveen