Debugging Siebel eScript - Write Property Set to file

This is one of the tricks that i use to debug Siebel scripts. It is really useful if you are working on the product configurator. As most of the events in configurator have property set as argument to it, and there is no debug window to see runtime property values for the events.


For configurator i use WritePropSet method of EAI XML Write to File business service. This method prints out the property set to a file on the siebel server. here is the code for the configurator:

var ps = TheApplication().NewPropertySet();
var ps1 = TheApplication().NewPropertySet();
GetCPInstance(ps);
var bs = TheApplication().GetService("EAI XML Write to File");
var op = TheApplication().NewPropertySet();

ps.SetProperty("FileName" , "C:\\temp.xml");
bs.InvokeMethod("WritePropSet", ps, op);
similarly for business services and workflows we can have following snippet:


function Service_PreInvokeMethod (MethodName, Inputs, Outputs)
{
var ps = Inputs.Copy();
var bs = TheApplication().GetService("EAI XML Write to File");
var op = TheApplication().NewPropertySet();
ps.SetProperty("FileName" , "C:\\temp.xml");
bs.InvokeMethod("WritePropSet", ps, op);
return (ContinueOperation);
}

Above code can be use as code sniffer. Provided you use some naming sequence of the file.

Comments (8)

Loading... Logging you in...
  • Logged in as
sanashkasharma's avatar

sanashkasharma · 303 weeks ago

It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an eBook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted.
Advanced Python Training Institute in Chennai| Best Python Training institute in Chennai
It has been simply incredibly generous with you to provide openly what exactly many individuals wouldíve marketed for an eBook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted.
big data training in chennai | hadoop training in chennai | big data course in chennai | big data certification in chennai | hadoop big data training in chennai | bigdata and hadoop training in chennai | big data analytics training in chennai | hadoop course in chennai
I really appreciate this post. I’ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thx again!
hadoop admin online training
And indeed, I’m just always astounded concerning the remarkable things served by you. Some four facts on this page are undeniably the most effective I’ve had.
Top C C++ Training in Chennai |C C++ Training in Chennai
It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an eBook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted.

Advanced Python Training Institute in Chennai| Advanced Python Training institute in Chennai
From your discussion I have understood that which will be better for me and which is easy to use. Really, I have liked your brilliant discussion. I will comThis is great helping material for every one visitor. You have done a great responsible person. i want to say thanks owner of this blog.
hadoop admin online training
Thank you for sharing. I am very impressed with your knowledge.

Post a new comment

Comments by

Other Siebel Blogs

siebel-admin-l @ IT - toolbox

siebel-dev-l @ IT - toolbox