cancel
Showing results for 
Search instead for 
Did you mean: 

com.sap.aii.proxy.framework.core.AbstractList

Former Member
0 Kudos

Hi all,

My module structure is

1) Z_Delete_Operation_Input-> Output->a) Return

b) T_Operations->No,Name

2) T_Operations

3) EmpNo

4_ Ename

I have a table with 2 colums as No,Name.

Here the user may select multiple rows for deletion.Here the input parametrs to the module are EmpNo,Ename,T_Operations

How to pass the Selected rows data to the module.\

If i tried to set the Table data as

ModelObject.setT_Operation() the parameter for this is getting displayed as com.sap.aii.proxy.framework.core.AbstractList

can u plz tell me how to pass selected records in a tbale to the function module

Regards

Padma N

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi.

1. Create a variable

AbstractList theList;

in the studio.

2. Press Ctrl+o to find the correct imports.

3. Select "AbstractList" and press F4.

4. Expand the nodes.

Notice that AbstractList is implemented by DynamicRFCList and again implemented by for instance Bapiret2_List.

5. Alter your earlier code to

Bapiret2_List theList = new Bapiret2_List();

xxx.setReturn( theList );

Regards, Mikael.

Answers (0)