Posts

Showing posts from February, 2016

Remove The Siebel Loading Logo and text

Image
Siebel Version: 8.2.2.2 Requirement: Oracle Siebel usually has a waiting logo or symbol that appears when we navigate from one view to other or when  loading of some kind takes place, like the image below. Solution: The css behind the view is basic.css we add an attribute and value: visibility:  hidden; under the class mask -"div.siebui-mask-splash" and "#mask div.siebui-mask-content" Refer the Image below: Clear cache and Reload. Voila the loading image is gone!!

Add CSS for siebel Applet Formsection Labels through out the application

Image
The Following code is added in theme-base.css file which is found at D:\Siebel\8.2.2.0.0\Client_1\PUBLIC\enu\FILES .mceGridField .FormSection {    border: 4px solid grey; background-color: grey; float: left; /* font-style: italic; */ font-weight: bolder; font-size: medium; color: black; } this provides the following output.

IFrame Resize in Open UI

Image
Problem: In open UI the IFrame is small and needs to be resized. Reason: additional parameters need to be set to Symbolic URL in case of Open UI , but the same works fine and the size is also large in case of Siebel HI. Solution: Go to Administration-Integration->Symbolic URL Administration, under the Symbolic url list query for the Symbolic URL entry that is being used in the applet add a parameter IFrame and Value=iFrame width=100% height=500 frameBorder=On. Logout and login again the issue is solved.