cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove empty row from rfc table output.

Former Member
0 Kudos

Hello,

I am using adaptive rfc and printing table output. The table rows start from 2nd row, the first row being empty. How can I remove the empty first row.

Here is what I tried.


wdContext.nodeDataSource().nodeTableOutput().moveNext();

and


wdContext.nodeDataSource().nodeTableOutput().moveTo(1);

Neither of them worked. Any clue is appreciated.

Srinivas

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

IWDNodeElement first = wdContext.nodeDataSource().nodeTableOutput().getElementAt(0);
wdContext.nodeDataSource().nodeTableOutput().removeElement(first);

Armin

Answers (0)