SAP SystemCopy REL Functions
The SAP system copy library provides the following REL function to be used as preconditions in chains.
REL Function | Description |
---|---|
String getConfiguration(String jobId, String configName, String key) | Get the value for the provided key from the configuration table SAPSystemCopy_Configuration_<configName> |
String getData(String jobId, String configName, String key) | Get the value for the provided key from the data table SAPSystemCopy_Data_<configName> |
boolean hasConfiguration(String jobId, String configName, String key) | Check if the value for the provided key exists in the configuration table SAPSystemCopy_Configuration_<configName> |
boolean hasData(String jobId, String configName, String key) | Check if the value for the provided key exists in the data table SAPSystemCopy_Data_<configName> |
tip
Define a process in a chain to run only in the ECC system using the following precondition: =SAPSYSTEMCOPY.Custom_SAPSystemCopy.getConfiguration(jobId, chainParameters.CONFIG_NAME, 'TYPE')==='ECC'
sscpTopic