cancel
Showing results for 
Search instead for 
Did you mean: 

Why Do We Need Java Adapter module ???

Former Member
0 Kudos

Hi All,

Why Do We Need Java Adapter module ???

What is the Use of it ????

Where we Write the code for this

Regards

Vamsi

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Vamsi,

Adapter modules are required to enhance the functionality of SAP XI.

Enhancements like.

1. Converting the payload (not covered with standards)

2. Changing encoding

3. Encryption and decryption

4. Creating and merging of additional attachments

Please follow the links below.

<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f013e82c-e56e-2910-c3ae-c602a67b918e">How to Create Modules for the J2EE Adapter Engine</a>

<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e21106cc-0c01-0010-db95-dbfc0ffd83b3">Adapter Module Development - Presentation</a>

*Reward points if helpful*

Regards,

Sushil.

Shabarish_Nair
Active Contributor
0 Kudos

modules are written to enhance the standard functionality of an adapter.

Read more @ http://help.sap.com/saphelp_nw04/helpdata/en/86/80163f6b5baa09e10000000a114084/content.htm

Former Member
0 Kudos

Hi,

Why do we need to enhance the standard functionality of an adapter

Regards

Vamsi

Former Member
0 Kudos

Hi

Simple when you want to achieve something which is not achieved by the normal functionality of an adapter.

Thanks

Former Member
0 Kudos

Consider a business scenario where the input file content has to verified for the debit and credit entries are balanced, the number of records in the file match with the trailer count etc. and these validations might be common for other interfaces also running in the same organization

The standard XI file adapter (sender) will not be able to validate the contents of the file when its reading the file. So in this case, we can use an adapter module ( java code ) to validate the file when it is being read itself and decide whether its valid or not.

Another example might be that you want to zip the output. you can do this using adapter modules

http://help.sap.com/saphelp_nw70/helpdata/en/45/da9358a1772e97e10000000a155369/frameset.htm

Cheer's