Script compilation failed at line 19 in procedure 'BusComp_PreWriteRecord':

505 Views Asked by At

I am getting the following error, when tries to save the following script.

"Script compilation failed at line 19 in procedure 'BusComp_PreWriteRecord': Syntax error at Line 31 position 59:Expected ')' (SBL-SCR-00128)"

function BusComp_PreWriteRecord ()
{

    var obj = TheApplication().GetBusObject("Service Request"); 
    var optybc = obj.GetBusComp("Service Request"); 
    optybc.ActivateField("SR Type"); 
    //optybc.ActivateField(“Typeâ€); 
    optybc.SetViewMode(3); 
    optybc.ClearToQuery(); 
    optybc.SetSearchSpec("SR Type",this.GetFieldV alue("SR Type")); 
    //optybc.SetSearchSpec(“Typeâ€,this.GetFieldV alue(“Typeâ€)); 
    optybc.ExecuteQuery(ForwardOnly); 
    if(optybc.FirstRecord()) 
    { 
        TheApplication().RaiseErrorText("Duplicate Records"); 
    } 
}

Does anyone knows the reason for the above error?

1

There are 1 best solutions below

0
On

It might be that you are missing brackets in code that is "above" PreWriteRecord() for example these methods

enter image description here

Siebel compiles all event code as one large code, so missing parentheses in other places will create issue in subsequent events.