cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

RFC - Data extraction

Former Member
0 Likes
1,106

I am doing a RFC and I do get data back.

I wanted to go though the results myself instead of just letting the application automoatically bind the data though a table.

I am also new to sap netweaver/web dynrpo (java), and so much of this code is auto-geneated that its hard for me to follow where its going.

I execute this statement: wdContext.nodeOutput().invalidate(); and (before or after - dont know where to put it) I wanted to create a loop and go though each row myself. I am getting back a table with over 600+ rows.

Anyone have any idea how to do this, or am I very confusing.

Plus, if someone could explain to me what the nodeOutput is doing, it would be really appreciated.

Thanks!!

View Entire Topic
Former Member
0 Likes

Thank you for all of your helpful answers in understand how web dynpro and RFC works.

I eventaully figured it out while coding, and what I was looking for was that once I execute the statement:

wdContext.currentRead_Site_InputElement().modelObject().execute();

my data is store in the modelObject, and thats where I would retrieve it from.