- 博客(9)
- 收藏
- 关注
转载 eScript 简记
1. SetFieldValue 设置时间,SetFieldValue("FieldName","MM/DD/YYYY HH24:MI:SS"); 2.substring var newSearchStr = SearchStr.substr(0,SearchStr.length-4); SearchStr本身不会发生变化; 转载于:https://www.cnblogs....
2015-03-03 19:58:00
412
转载 Siebel script for Pre Events
Pre events should only be used for data validation, not manipulation. such as PreSetFieldValue, PreDeleteRecord and PreWriteRecord function BusComp_PreWriteRecord () {. . . . . . var cost ...
2014-09-17 17:48:00
133
转载 Siebel Performance for Script <1>
1.Code in PreGetFieldValue, PreSetFieldValue, SetFieldValue, PreCanInvokeMethod, PreInvokeMethod and InvokeMethod event handlers has been placed outside the switch on FieldName/MethodName. Wrong...
2014-09-17 17:31:00
175
转载 Siebel Presumed Child Property Set
Scripts presume the existence of a child property set. For example see the following code snippet function CheckAndImport() {. . . . . bsAdapter.InvokeMethod("Query",vInputs,vOutputs); var...
2014-09-17 17:19:00
156
转载 Siebel NextRecord And DeleteRecord In Loops Skips Record
DeleteRecord implicitly moves the record pointer to the next record in the record set. If a call to NextRecord is made after a call to DeleteRecord the record pointer will move twice. This mean...
2014-09-17 17:16:00
124
转载 Siebel 调用存储过程
BS脚本: function ExecuteOraclePrc(objectId,preferenceName) { try { var outMsgs = ""; var preference = GetPreference(preferenceName); var prefArray = prefere...
2014-09-16 18:10:00
190
转载 Siebel -- EAI Siebel Adapter
WebService调用EAI Siebel Adapter Upsert方法,传进来的不是siebel message 而是XML var bsEAI = TheApplication().GetService("EAI Siebel Adapter"); var psInSet = TheApplication().NewPropertySet(); var psOutSe...
2014-09-11 16:23:00
272
转载 Siebel 数学运算
应用场景:额度冲减 siebel中实现先占用后清除功能,需要清除前一次写入的值。 if(quotaId != ""){ with(bcQuota){ SetViewMode(AllView); ActivateField("Id"); ActivateField("Available Amount"); ...
2014-09-11 09:38:00
201
转载 Siebel EAI XML Converter
EAI XML Converter一般都会和EAI Siebel Adapter联合一起用,代码中主要是使用IntObjHierToXMLDoc方法,可以做借鉴。 后期如果整理出其他方法会持续更新 var bsQuoteMsg = TheApplication().GetService("EAI Siebel Adapter"); var psInputs = TheAppli...
2014-09-03 18:00:00
187
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅