רשומות

מוצגים פוסטים עם התווית Administration

How to time trigger workflows through command prompt

If you have workflows in your CRM system that are required to be run everyday, but for some reason you are running them manually, this might be a good solution for you to save some time. This solution demonstrates how you can trigger your Siebel workflows at specific intervals of time on windows. For, Siebel environments on other operating systems, you will have to create a solution similar to this, the only difference being the batch file will have to be written in shell (for Linux/Unix) or the programming language that is supported by the OS. Step 1 - Write the batch file Copy the below code in a text file and save it with the .bat extension ::Set Localization   setlocal ::Gets The Parameters and sets into Environment Variables    set GTYSRV=%1    set ENTSRV=%2    set SIEBSRV=%3    set SIEBUSR=%4    set SIEBPWD=%5    chdir C:\sia81\siebsrvr\BIN       :: The workflow process name    set wf=T...

How to Optimize Siebel Application Login Time

תמונה
Recently, we've had a lot of users complaining about the homepage taking too long to load. Why does the login page take long to load? What happens when the login page loads. Below are some of the tasks that Siebel performs while loading the application. - Verifying Application Schema Version - Loading / validating State Models (checks whether or not the expiration date is greater than current date) - Verifying State Model values for transition - Loading / Validating Personalization rules and rule sets for each event on applets, Business Components, - - Business services and application - Loading / validating user profile data. - Loading / validating System preferences - Loading localized data (Phone format, date format, time zone, currency etc) - Loads user reporting hierarchy - Loads application view-responsibility data. - Message Broadcast (This can be inactivated by inactivating the Message broadcast bar) The reason behind such a behavior is that some of the static data (locali...