hi
i have called my RFC init() for the firsttime
which populates the data in the itemlistboxes
next time iam calling the same RFC in a button
after the RFC is called second time
data in the itemlistboxes are gettig blank or invalidated
is that this problem is due to calling the same RFC
twice or may be problem with any code
Zlgs_Car_Data carData= new Zlgs_Car_Data();
carData.setP_Make(gCarMake);
carData.setP_Body_Type(gCarBodyType);
//carData.setP_Fuel_Typ(gCarFuelType);
carData.setP_Model(gCarModel);
carData.setP_Year(gCarFromYear);
carData.setP_Year(gCarToYear);
wdContext.currentZlgf001_Outfit_Match_InputElement().modelObject().addIt_Car(carData);
wdThis.wdGetCustomerCompController().executeZlgf001_Outfit_Match_Input();
can any one help me out ?