cancel
Showing results for 
Search instead for 
Did you mean: 

How to display all column value from R3 table in a dialog

Former Member
0 Kudos

Hi all,

I am Using the following code to execute the BAPI using the wdContext.currentBAPI_PO_GETITEMS_INPUTElement().modelObject().execute() method.

//get the size of items

int size = wdContext.nodeItemlist().size();

String[] itemNameList = new String[size];

//loop through the itemlist to get the item name and item number

for(int i = 0 ; i < size ; i++)

{

String itemName = wdContext.nodeItemListNode().getItemListNodeElementAt (i).getItemName();

itemNameList<i> = itemName;

}

Now i want to display all values in "itemNameList" array in a single dialog box.

But it is very hard..

Can any one tell plz..

Thanks&Regards

Karthik.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hai all,

i got the answer. I used string buffer and received all values.