I am looking for a smart solution how to retrieve the Data from a LoV from a Business Component of Siebel. I tried to read the control with,...
var controls = this.GetPM().Get("GetControls");
for(var control in controls){
var value = this.GetPM().ExecuteMethod("GetFieldValue", controls[control]);
}
And with,...
this.GetPM().Get("GetRecordSet");
But the result for a LoV is still "". Is there a way without a Business Service to get the List of Values?