Application Development 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: 

How to access XI_AF_MSG table from XI server ?

Former Member
0 Kudos

Experts,

I need to write a ABAP report using the tables XI_AF_MSG and XI_AF_MSG_AUDIT in XI server . These are AE related tables. These cannot be accessed directly since these are present in the Java Stack .

So pls tell me the complete procedure to access these tables .

Best regards,

Suhas

2 REPLIES 2

Former Member
0 Kudos

Hi,

there are two type in XI request and response ..

if you send request to r/3 you will get the respond from r/3

that is nothing but import and export..

so send the parameters to R/3 as a request to tables XI_AF_MSG ..

as a response from R/3 the new data will sit in tables XI_AF_MSG ..

or

import the table RFC_READ_TABLE..

as a request send table name to query table

IMPORTING

QUERY_TABLE = ' XI_AF_MSG '

as a response from R/3 the data will come into table..

TABLES

DATA STRUCTURE TAB512 "The data will come in this table..

See the function module as a reference..

Regards,

Prabhudas

0 Kudos

Hi Prabhu,

Thanks for ur answer.

Pls give me the exact syntax because I have tried the FM RFC_READ_TABLE already in CRM not in R3. Its throwing exception 'Table not available' .

Regards,

Suhas