Error (SBL-BPR-00187) (SBL-BPR-00100) (SBL-DAT-00225)
Hello guys,
Env: Siebel 8.1.1.6 debug build, windows server EE 2003
The system pops up an error window after I run the followed script:
############################################################################
function Service_PreInvokeMethod (MethodName, Inputs, Outputs)
{
if (MethodName == "Go")
{
var BS;
var BO;
var BC;
var PS1;
var PS2;
BS = TheApplication().GetService("EAI Transaction Service");
BO = TheApplication().GetBusObject("Service Request");
BC = BO.GetBusComp("Service Request");
BC.ActivateField("Description");
PS1 = TheApplication().NewPropertySet();
PS2 = TheApplication().NewPropertySet();
PS2.SetProperty("Is Abort", "false");
BS.InvokeMethod("BeginTransaction", PS1, PS1);
BC.NewRecord(NewAfter);
BC.SetFieldValue("Abstract", "Test TX");
BC.WriteRecord();
BC.SetFieldValue("Description","Quite a long description....... blah blah blah.... still longer ... blah blah blah.... BLAH BLAH BLAH.......");
0