Anybody ever looking for a list of standard CPI message headers and properties:
These properties can be used, for instance, in Groovy functions like this (where SAPMessageID is the property from above link):
def String getMessageID(String dummy, MappingContext context){ String msgid = context.getProperty("SapMessageId"); return msgid; }
Alternatively, in certain input fields, you can access them like this:
${property.SapMessageId}