Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ale configuration

Former Member
0 Likes
310

hi abap experts,

im having doubt in alv's. how we configure alv's in real time.what u do in outbound, what in inbound. what r the status codes for idoc success and failures in outbound as well as inbound.

thanks in advance.

hi abap experts,

im having doubt in alv's. how we configure alv's in real time.what u do in outbound, what in inbound. what r the status codes for idoc success and failures in outbound as well as inbound.

thanks in advance.

1 REPLY 1
Read only

gopi_narendra
Active Contributor
0 Likes
288

Basic steps in ALE

1. Create a basic IDoc type (transaction we30) and the segment type (transaction we31). And release the segment type and IDoc type.

2. Create a message type (we81).

3. Assign basic IDoc type to message type (we82).

4. create logic systems for source and target systems

? Assign clients to logical system names

? create RFC destinations

? create distribution model(if required)

5. Create a report : (Outbound process)

? select the data from Z table into an internal table

? populate the control record ( EDIDC )

? populate data record ( EDIDD ) with Z table entries selected

? call the function module IDOC_DISTRIBUTE by passing control record data , data record and status record (EDIDS) and RUN THE PROGRAM TO create an outbound IDoc

6. Create a Function Module : (Inbound process)

? create a function module and make it remote enabled

? create a process code ( we42) and assign function module to process code

? Read the IDoc data and segregate into the internal table and then finally update the Z table that you want to update.

Check these links.

ALE/ IDOC

http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm

http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc

http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419

http://www.netweaverguru.com/EDI/HTML/IDocBook.htm

http://www.sapgenie.com/sapedi/index.htm

http://www.sappoint.com/abap/ale.pdf

http://www.sappoint.com/abap/ale2.pdf

http://www.sapgenie.com/sapedi/idoc_abap.htm

http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm

http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm

http://www.allsaplinks.com/idoc_sample.html

http://www.sappoint.com/abap.html

http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm

http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc

http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419

http://www.netweaverguru.com/EDI/HTML/IDocBook.htm

http://www.sapgenie.com/sapedi/index.htm

http://www.allsaplinks.com/idoc_sample.html

Regards

- Gopi