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

SAP Cloud Platform Integration: Call Groovy Script with parameters

Florian_Kube
Participant
11,383

Hello,

I am using groovy scripts for logging in different steps. Since I do not want to copy the scripts repeatedly and change just two values, I thought there should be the possibility to use parameters.

Here is the script I want to use:

import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
def Message logpayload(Message message, String nameOfAttachment, String mimeType ) {
    def payload = message.getBody(String.class);                            
    def messageLog = messageLogFactory.getMessageLog(message);
    messageLog.setStringProperty("Logging", nameOfAttachment);
    messageLog.addAttachmentAsString(nameOfAttachment, payload, mimeType);
    return message;
}

I configurate it like this:

However, when I run it I get the following exception. Does anyone have an Idea how I could solve this issue?


java.lang.NoSuchMethodException: No signature of method: org.codehaus.groovy.jsr223.GroovyScriptEngineImpl.logpayload(message, "FlatFile.txt", "text/plain")() is applicable for argument types: (com.sap.gateway.ip.core.customdev.processor.MessageImpl) values: [com.sap.gateway.ip.core.customdev.processor.MessageImpl@737f25ed]

Thank you,

Florian

Accepted Solutions (1)

Accepted Solutions (1)

MortenWittrock
SAP Mentor
SAP Mentor

Hi Florian

CPI expects the signature of your Script step function to be:

Message functionName(Message message)

You can, however, add as many functions with arbitrary signatures to your script file, as you need.

You could, therefore, change your logPayload method to be:

def void logPayload(Message message, String nameOfAttachment, String mimeType) 

and then add any number of functions calling it, like:

def Message logInitialXml(Message message) {
   logPayload(message, 'initialXML.xml', 'application/xml')
   message // In Groovy, this is equivalent to return message
}

That would remove the duplicated code.

Let me know how it works out.

Regards,

Morten

Answers (4)

Answers (4)

bharathsai_r
Explorer

Thanks to Morten for this solution, just to complete this answer for the benefit of other readers trying to figure out how to use the 'Script Function' feature, when configuring the Script Function name under 'Processing' tab, mention only the script name (no need of parenthesis or passing the 'message' parameter, this is implicitly understood by CPI that only a 'message' parameter can be passed through the Script Function), screenshots below showing the incorrect and correct approach (had to figure this out with few trial and errors as I couldn't find any documentations with examples of using this feature).

Wrong :

Correct :

KeshavDesai
Explorer
0 Likes

This.

So, to surmise, user defined functions in Groovy scripts for CPI iFlows:

1. Must have only one argument and that's message - hence we only need to specify the Script Function name like Bharath has shown in the 'correct' screenshot.

2. processData - which appears by default when we create a groovy script, is not mandatory to be implemented.

7a519509aed84a2c9e6f627841825b5a - please comment if these assumptions are right?

dominic4
Active Participant

Hi Florian,


another solution would be to use properties or header variables. You can than access them with

map = message.getHeaders();
myVar = map.get("variableName");

or

map = message.getProperties();
myVar = map.get("variableName");

Can be another solution that might be more flexibility but adds more cpi specific code.

Regards,

Dominic

MatthiasFricke
Participant
0 Likes

The post of Dominic is the one!

Thanks

Matthias

Florian_Kube
Participant
0 Likes

Hey Morten,

thank you very much. With the void function it didn't worked for me. So thats the code how it works for me.

import com.sap.gateway.ip.core.customdev.util.Message
import java.util.HashMap
def Message logInitialFlatFile(Message message) {
   message = logPayload(message, "initialFlatFile.txt", "text/plain")
}

def Message logInitialXml(Message message) {
   message = logPayload(message, "initialXML.xml", "application/xml")
}

def Message logPayload(Message message, String nameOfAttachment, String mimeType ) {
    def payload = message.getBody(String.class);
    def messageLog = messageLogFactory.getMessageLog(message)        
    messageLog.setStringProperty("Logging", nameOfAttachment)        
    messageLog.addAttachmentAsString(nameOfAttachment, payload, mimeType)
    return message
}
MortenWittrock
SAP Mentor
SAP Mentor

Hi Florian. Glad you could use it. As for void, use

def logPayload(Message message, String nameOfAttachment, String mimeType )

instead, and it should work. That requires changing the code as for the return statements.

Or you can leave it as it is now, if you prefer.

Regards,

Morten

RaviRIyer
Participant
0 Likes
Hi Florian, were you able to invoke a method in Class A from another groovy script, where Class A is loaded as a Master Script under global references to the Iflow ?