Dear All,
Thanks for your inputs..
We are able to acheive the above using simple Dynamic Configuration.
UDF at request mapping..
DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
DynamicConfigurationKey key1 = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "fieldName");
conf.put(key1,var1);
return "";
UDF at Response Mapping..
DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "fieldName" );
String string1 = conf.get(Variable);
return string1;
Regards,
Farooq