Skip to main content

Posts

Multiple Positions of a single user in Siebel

What is Position in Siebel? A position represent an actual job position in your organization. It determines the records that Siebel CRM displays to each user. A position can be a formal job title, such as the actual job title that the developer uses. It can also be any descriptive text. For example, Developer 1, Developer 2, and so forth. To log in to a Siebel application, an employee must be assigned a position. When you create positions and position skills, it is recommended that you do the following: To determine reporting relationships between positions and parent positions, refer to the organization chart for your company. Because you choose parent positions as you create new positions, start at the top of the organization chart and work your way down. Note that there is typically one position that does not include a parent position. For example, the CEO position typically does not report to a higher level. Multiple positions of a single user: It is Not possible to assign multiple...

How to get Service Name through Oracle Oracle Developer

To see what services are available in the database use following queries: select name from V$SERVICES ; select name from V$ACTIVE_SERVICES ; The V$ views are mainly dynamic views of system metrics. They are used for performance tuning, session monitoring, etc. So access is limited to DBA users by default The easiest way of finding the database name is: select * from global_name ; This view is granted to PUBLIC, so anybody can query it.

The Siebel Server Either Busy Or Experiencing Difficulties

Issue:   When trying to access Siebel app url, server is returning below: Error: The Server You Are Trying to Access is Either Busy Or Experiencing Difficulties Possible Reasons: Check if Siebel App services are running. If services are running and you are receiving the same Go to log folder and open the latest log file " PSCcObjMr_ara_test " and go to the end. Logs: 2021 2021-03-14 16:44:00 2021-03-14 16:44:00 +0400 00000003 001 003f 0001 09 PSCcObjMr_ara_test 39845995 14192 13008 E:\Siebel\8.2.2.0.0\ses\siebsrvr\log\PSCcObjMr_ara_test_0038_39845995.log 8.2.2.4 [23030] ARA ObjMgrSessionLog    Error    1    00000135604d4060:0    2021-03-14 16:44:00    (model.cpp (5980)) SBL-DAT-60237: حدث خطأ أثناء تحميل ملف الدليل diccache.dat. ObjMgrCTLog    Error    1    00000135604d4060:0    2021-03-14 16:44:00    (ctxtmgr.cpp (4567)) SBL-SVC-0020...

Siebel App Service Unavailable HTTP Error 503

When trying to access, browser is returning below error: Error: Service Unavailable HTTP Error 503. The service is unavailable. Reason: This error occurs usually when default pool stopped. Solution: Go to Siebel web server, from the start open Internet Information Services (IIS) Manager and click on "Application Pools" From the Application Pools, right click on "DefaultAppPool" and from menu click on "Start". Wait for some time and re try to access the Siebel app url.

How to import wsdl in Siebel Tools

Please your wsdl file in Temp folder. E:\siebel\8.2.2.0.0\Tools_1\TEMP Open Siebel Tools and Login. Click on "New" button, "New Object Wizards" window will open go to "EAI" tab and select "Web Services". Click "OK". On "WSDL Import Wizard" provide the Project and specify the wsdl file using "Browse" button and click "Next>". In Next window click on "Finish" button. On Finish below objects will be created in the repository. in Tools Integration Object(s) Business Service(s) and in application Outbound web services. See Also: How to host middle ware or website on iis manager for Siebel How to create and publish Inbound Web Service in Siebel based on Workflow

How to host middle ware or website on iis manager for Siebel

Go to web server and paste the published code on below path (you can chose any path) : C:\inetpub\wwwroot Now from Start  (press windows key) type iis and open "Internet Information Services (IIS) Manager". Right click on "Site" folder and from menu click on "Add Website.." Provide the "Site name", "Physical path" (from step 1) and "Port" and click "OK" button. All done. For testing right click on newly added and from menu go to "Mange Website" and from its child menu click on "Browse". Site will be open in default browser. In my case I need to access the asmx page so I added my asmx page path (after the default folder selected in physical path) . In case if it is middle ware for external service, from "Service Description" link get the wsdl definition (copy the code from <wsdl:definitions to </wsdl:definitions> and save as ".wsdl" using notepad) and import in Sie...

How to sort and add search specification in Siebel Applet Load script

Normally we use Search specification filed in Applet List, but sometime we have to add long search expression which Search specification field can not contain (max length is 255 characters). For that we can add search specification in applet load server scripts. Right click on applet and from menu click on "Edit Server Scripts". From functions list click on "WebApplet_Load". First get the bussiness component by follow below script var oBusComp = this .BusComp () ; Now add with (The ' with ' statement adds the given object to the head of this scope chain during the evaluation of its statement body.) and statement Add Sort specification as below SetSortSpec( "Created(DESCENDING)" ); Now write search specification on the desired fields for mvl field you need to use "EXISTS". var Search1 = "EXISTS ([Case Contacts] = '" + case_id + "')" Using AND/OR you can extend the search specification. var Search1 = "...