Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member184789
Active Contributor

Here I would discuss the use of custom namespace & custom field in dynamic configuration to share data between two message mappings.I had created a message mapping between the DESADV.DELVRY07 IDoc & a target structure. For mapping of a certain target field, I had the condition of populating based on the value of a qualifier say if QUALF=006 then populate from NTANF. I cannot provide the actual target structure so I have created a sample structure while creating this blog. Here is what the logic was like:

However, in the next release of the project, for another market the requirement was to populate the target field with NTANF when QUALF had a different value say 007. Also I was asked to not to manipulate the above existing mapping which was being used for previous market. So I created a new operation mapping which would have two message mappings:

1. The existing mapping in which I populate target when QUALF=006

2. A new message mapping with target structure as source as well as target, in this one I would populate the target field when QUALF=007.

Now I had to send the value of NTANF when QUALF=007 to the second mapping, but  this value was not being sent at all to the target field in the first mapping. So I had to share data between the two message mappings such that the value of a field in first mapping is available to the target field in the second mapping. I tried using Global variable but it did not work for me as it works within the same message mapping. So the solution was to use custom namespace in dynamic configuration.

Here is how the value of NTANF when QUALF = 007 was populated in a custom field in dynamic configuration:

1. A UDF created as shown below whose input will be the value of NTANF when QUALF =007:

2. Now the required value is being populated in this custom field as shown below. The local variable 'var1'  to which the output of the UDF is mapped to is not being used anywhere in the mapping.

3. Now in the second mapping I am retrieving the value from this custom field from another UDF as shown below. Note that the name of custom field & custom namespace given in UDF are exactly the same as in the UDF in first message mapping.

4. The field into which NTANF corresponding to QUALF=007 is to be populated is mapped from the UDF as shown below:

5. Now the two mappings are added into operation mapping as shown below.

6. Now here I am testing it in the Operation mapping level. For QUALF=006 I have NTANF as 20130702 while for QUALF=007, I have NTANF as 20130709:

7. When I execute from Step1 to Step 1 i.e first message mapping, I get value of NTANF corresponding to QUALF =006:

8. When I tested from Step1 to Step2 i.e both mappings are executed one after the other, I got the value of NTANF corresponding to QUALF=007:

Thus I was able to share data between two message mapping using dynamic configuration.

References:

1.http://help.sap.com/saphelp_erp2004/helpdata/en/75/8e0f8f3b0c2e4ea5f8d8f9faa9461a/content.htm

2.http://help.sap.com/javadocs/pi/sp3/xpi/com/sap/aii/mapping/api/DynamicConfiguration.html

7 Comments
Labels in this area