cancel
Showing results for 
Search instead for 
Did you mean: 

No need to create nodeElements for model nodes ?

Former Member
0 Kudos

Hi

I'm trying to call the BapiFlightGetList Bapi. My context has two model nodes, "Bapi_Flight_Getlist_Input" and a child model node "Destination_From".

I do the following in the wdDoInit():

Bapi_Flight_Getlist_Input bapi =

new Bapi_Flight_Getlist_Input();

wdContext.nodeBapi_Flight_Getlist_Input().bind(bapi);

bapi.setDestination_From(new Bapisfldst());

This works fine !

But why didn't I had to create a nodeElement for the model node "Destination_From" before?

When using Value Nodes, I always had to create nodeElements before.

Can anybody enlight me?

Raphael

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Raphael,

this is done automatically by the rfc proxy. Because you can't know how many node elements (table lines) the RFC will return.

Best regards,

Christian