cancel
Showing results for 
Search instead for 
Did you mean: 

how to access Adapter Specific Message Attribute in my own adapter module

Former Member
0 Kudos

Hi,

I'm developing a mail adapter customer module. Now I have a requirement about getting the CC information from mail. Even if I

checked the option of "use mail package" when configing sender Mail Adapter, I still can not get CC information in my module

because it is not included in mail package.

I got to know CC information is included in ASMA(Adapter Specific Message Attribute), but how can I access ASMA in my module?

Till now I know there are two ways to access ASMA

1. use AF_Modules/DynamicConfigurationBean XI standard module to access ASMA.I did it as below:

add this module in front of my own module, then set key: write http://sap.com/xi/XI/System/Mail SHeaderCC and value :

<b>message.refToMessageId</b>(which message property should be put here?). I'm trying to get it by message.getRefToMessageId() in my

own module. But what happens is not as I expected, I get null instead of CC information. Which step I did wrong?

2. use mapping api

DynamicConfiguration conf = (DynamicConfiguration) <b>container</b>

.getTransformationParameters()

.get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);

DynamicConfigurationKey key = DynamicConfigurationKey.create(

“http://sap.com/xi/XI/System/Mail”,

“SHeaderCC”);

but how can I get <b>container</b> object in my module?

Is there any other way to access ASMA in customer module?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

MichalKrawczyk
Active Contributor
0 Kudos

hi,

>>>>but how can I access ASMA in my module?

have a look at this blog:

/people/daniel.graversen/blog/2006/10/05/dynamic-configuration-in-adapter-modules

and try getMessageProperty

it's also here:

in Adapter-Specific Message Attributes link

http://help.sap.com/saphelp_nw04/helpdata/en/17/50d440e14f8431e10000000a1550b0/frameset.htm

Regards,

michal

-


<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Answers (0)