cancel
Showing results for 
Search instead for 
Did you mean: 

SAP PI Table which stores Dynamicconfiguration(filename) for file sender

Former Member
0 Kudos

Hello All,

What is the SAP PI table in which SOAP header elements are getting stored. In my scenario, i need to find out the message ID for a specific file name which is picked by file sender, as file name is stored under Dynamicconfiguration of SOAP header node...

Regards,

Sreenivas.

Accepted Solutions (0)

Answers (2)

Answers (2)

prateek
Active Contributor
0 Kudos

Your scenario is not very clear. For a specific run of message, there will be Message ID and filename both present in Dynamic Configuration. So what is it that you want to extract and for what purpose?

Regards,

Prateek

shweta_walaskar2
Contributor
0 Kudos

Hi Sreenivas,

I am not sure if I have understood your requirement correctly but can't you achieve this using a UDF:

String headerField;

java.util.Map map;

AbstractTrace trace=container.getTrace();

map = container.getTransformationParameters();

String key = "MessageId";

headerField = (String) map.get(key);

return headerField;

Let us know.

Regards,

Shweta