cancel
Showing results for 
Search instead for 
Did you mean: 

RFC model make from output table input table

Former Member
0 Kudos

Hi,

I have an RFC model.

The first time I excecute the rfc model, some tables are filled.

(filled in r/3 backend)

Then I want to call the RFC again, with another import parameter, but the tables are empty when I enter the BAPI.

So Do I need to copy all my model

output tables to my model input tables manually in java ?

I thought it would be automatically because in abap it is.

Or is there something else that empty's my output tables?

Thanks for reactions

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member197348
Active Contributor
0 Kudos

Hi Nicolas,

Do I need to copy all my model

output tables to my model input tables manually in java ?

Yes, you need to.

use WDCopyService.copyElements(Sourcenode, Targetnode);

is there something else that empty's my output tables?

wdContext.nodeOutput().invalidate();

Clears Output node, and refills the output node with model data.

Regards,

Siva