cancel
Showing results for 
Search instead for 
Did you mean: 

JMS Sender Adapter with constant values

Former Member
0 Kudos

Hello Friends,

My scenario is,

1. I am having 6 Sender JMS CCs with different Queues

2. One Inbound Proxy to post the data into R/3

Sender (JMS) -


> XI -


> R/3 (Inbound Proxy)

Note: There is no Message Mapping used.

Problem: When my sender JMS adapter picks the data from JMS Queue then before sending it to Proxy I want to add some more data (lets say a kind of header info) along with the original data.

Reason: Based on this additional data I will process my data in proxy in 6 different ways.

Regards,

Sarvesh

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

.

Former Member
0 Kudos

Thanks to all..

stefan_grube
Active Contributor
0 Kudos

You can use the DynamicConfigurationBean to set constants to the message header:

http://help.sap.com/saphelp_nw04/helpdata/en/45/da2239feb22e98e10000000a155369/frameset.htm

The configuration would be something like this:

key.0 insert http://sap.com/xi/XI/System/ABC XYZ
value.0 123

Regards

Stefan

Former Member
0 Kudos

Hi,

I think you have t include mapping to pass the add-on infromation to send it to receiver R/3 system, or else go for customized adapter module on sender side which will update the incoming schema.

Thanks

swarup

Former Member
0 Kudos

If I include the mapping then I have to create 6 message mapping which is not good for mantainance point of view. And if I create only one mapping then again I have to send the addition info from sender CC only.

Any other ideas..??