cancel
Showing results for 
Search instead for 
Did you mean: 

JCo -How to read "E_T_EVENT" table from "BAPI_XBP_EVENT_DEFINITIONS_GET"

Former Member
0 Kudos

Hi,

I'm running this code to get list of events (just started today with some JCo code):


        function = destination.getRepository().getFunction("BAPI_XBP_EVENT_DEFINITIONS_GET");

        function.getImportParameterList().setValue("I_EXTERNAL_USER_NAME", "myname");

        function.getImportParameterList().setValue("I_EVENTID_MASK", "%");

        function.execute(destination);


The I try to read table "E_T_EVENT" and I get an exception.

JCoTable table = function.getTableParameterList().getTable("E_T_EVENT");

This seems like a different table then I'm used to, even in SE37 it doesn't appear the same as other tables.

How do I iterate through the list of events?

Thanks!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Problem solved (by the time it took to approve this post...), I was looking for the table under Tables instead of under Export.

Thanks.