1687
Points
Questions
32
Answers
42
-
You can try something like this.
ITable affTable= item.getTable(ItemConstants.TABLE_BOM);
Iterator it1=affTable.iterator();
while(it1.hasNext())
{
IRow row=(IRow) it1.next();
ICell cell = row.getCell(ItemConstants.ATT_BOM_REF_DES);
System.out.println(“The Ref Des is: ” + cell.getValue().toString());
cell.setValue(“Test11”);
}
}It worked for me.
- 2334 views
- 2 answers
- 0 votes
-
- 2132 views
- 3 answers
- 0 votes
-
- 2130 views
- 2 answers
- 0 votes
-
- 3504 views
- 4 answers
- 0 votes
-
Try https://docs.oracle.com/cd/E10959_06/otn/pdf/integration/B32316_01.pdf in the section for Getting and Setting list values.<a href="https://docs.oracle.com/cd/E10959_0
- 2672 views
- 1 answers
- 0 votes
-
- 3855 views
- 5 answers
- 0 votes
-
- 3289 views
- 5 answers
- 0 votes
-
- 2114 views
- 3 answers
- 0 votes
-
- 2312 views
- 2 answers
- 0 votes
-
- 2177 views
- 2 answers
- 0 votes