In Siebel Open UI Search center this.BusComp().InvokeMethod("GetRowId") is not working.
Hi All,
We are using Siebel 8.1.1.11+PS4 Financial Services. We have written below code to get Row Id of the drilldown record but it is not working as expected . If any one have suggestion ,Please let us know,
function WebApplet_InvokeMethod (MethodName)
{
if(MethodName== "Drilldown")
{
var strRowId = this.BusComp().InvokeMethod("GetRowId");
TheApplication().RaiseErrorText(strRowId);
return(CancelOperation);
}
return(ContinueOperation);
}
When i drill down on any record which were displayed on “Find All Results Applet" Applet i should pass the row_id of that particular record to Business service before user Navigates to the Target view.
Thanks in advance.