Dileep Kumar
Newbie
Karma: 0
Posts: 26
|
 |
« Reply #2 on: February 09, 2012, 05:47:49 am » |
|
Hai
This is dileep kumar S........ I tried the below code it is working fine .....
This is the sample code which is used in custom code to get rows value( add row ) of any object.
MboSetRemote mboset=getMboSet("$relationshipname","objectname( workorder)","XID=:XID(where clause"); int rows=mboset.count(); for(int i=0;i<rows;i++) { MboRemote mbo=mboset.getMbo(i); // getting rows ( 0 , 1, 2 ,3 ) int quantity=mbo.getInt("XQUANTITY"); //getting attribute value }
|