Question : when to use subprocess in workflow in siebel?
Answer : Sub-processes are are standalone workflows which are developed to perform task on one instance of the business object. They are usually used when primary workflow is working on one business object and there is a need to work on data in another business object.For example there is a workflow configured on button click of Quote record, you would use Quote BO to handle the request. However if there is a need to get Asset information, you would create another workflow based on Asset BO and send Asset Id as Object Id to handle the request.
Question :how to cheat siebel sadmin password through bs run
Answer : That's an interesting question. I think someone is trying obfuscate the user id of the current user and act like SADMIN. Well in that case user can create asynchronous server request to execute business service which will login via standard SADMIN profile in most of the implementations. Hope this helps πQuestion : how to proceed the code after raiseerrortext in siebel escript?
Answer : RaiseErrorText method on application object is an special function, it serves two purpose,- It stops the current thread of execution, if loop is getting executed control will come out of the loop
- Throws an exception to the parent calling thread.
- Shows the error on screen if user has initiated the transaction.