Thursday, November 24, 2016

we are back

HI All,

we are back .
Currently we moved to salesforce CRM now .

Bye Bye Siebel  !!!!!

regards
Joseph Thomas

Saturday, November 2, 2013

Open UI -->Client not opening after the updagrade to 8.1.1.11 or 8.2.2.4 -->Message: Object expected error /23030/scripts/siebel/navctrlmngr.js?_scb=8.2.2.4_SIA_[23030]_ENU

Hi ,

last week i upgraded to 8.1.1.11 .upgrade went successful . i upgraded the client and tools .
when i opened the tools it opened successful but i was not able to open the client .


issue : IE browser opens and it will show the callcenter in the top tab but it wont load the page correctly . And when i tired debug i got below error message
/****************************************************************
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E)
Timestamp: Sun, 3 Nov 2013 06:12:09 UTC


Message: Object expected
Line: 38
Char: 799
Code: 0
URI: http://jo-pc/23030/scripts/siebel/navctrlmngr.js?_scb=8.2.2.4_SIA_[23030]_ENU

********************************************************************

intially i thought i did something wrong at the time of installation . i reinstalled eveything again . downloaded again , installed 8.1.1.11 and 8.2.2.4 .. Still the same message .

Solution : as part of the upgrade we have to download new srf from oracle . we have to replace it with new it with new srf

please find the details below

Find Siebel Repository Files (SRF) as below and click "Download" button.
Name: Siebel Industry Applications Version 8.1.1.11 Siebel Repository Files
Part Number: V39883-01 
Note : follow the same for 8.2.2.4

Advice: Dont waste your time :-)

regards
Jo 
joju2002@gmail.com

Thursday, October 17, 2013

Open UI --> Custom Button In List Applet -- Not working

Hi

i tired to bring a Button in Open UI list Applet .once i mention the custom method name applet wont display properly !!!!!Anyone facing this issue ???

Regards
jo  

Scenario Config : Applet has to display only current year record at the initial load

Scenario : Applet has to display only current Year record at the initial load. But when i do a query an go it has to show all the records [ previous year records also]

ie :only on the applet load it has to show the current year records

My Solution :

 1)      At the time of applet load  --- Set one profile attribute  --This will make sure our code only fire at the time of loading the applet
a.       Set the profile attribute
b.      Set the some value to profile attribute
2
          2)In     function BusComp_PreQuery () before we entering to the code you have to make sure below two things
a.       Whether we are that active view
b.      Whether profile attribute got set or not
                                                               i.      if (TheApplication().ActiveViewName() == "<<ViewName>>" && TheApplication().GetProfileAttr("<<ProfileAttrib>>") == "<<value check>>")
                                                             ii.                      {<<Our code goes here >>           }
c.       Once we execute the code change back the profile attribute to previous value àimportant


Pseudo Code : 
function BusComp_PreQuery ()
{
               
var sSearchExpr;
               
                sSearchExpr = this.GetSearchExpr();
         if (TheApplication().ActiveViewName() == "<<ViewName>>" && TheApplication().GetProfileAttr("<<ProfileAttrib>>") == "<<value check>>")
                if (sSearchExpr != null && sSearchExpr != "")
                    {
                                var dtToday = new Date();
                                dtToday.setDate("1");
                                  dtToday.setMonth("0");
                               dtToday =dtToday.getDate() + "/" + ToNumber(dtToday.getMonth()+1) + "/" +                    dtToday.getFullYear();
                                this.SetSearchExpr("[Agreement Start Date] >='"+dtToday+"'") ;
                } // end of if sSearchExpr 
}// end of if Active View name 
               
return (ContinueOperation);
}

Agreement Start Date  à mention ur field name

Note:Please let me know if there is any other better approach to the above solution.

regards
jo
joju2002@gmail.com




Saturday, September 21, 2013

Open UI -->For list Applet /Form Applet which all js files to include [ For Desktop]

Hi All,

including the proper js files is very important in open ui. otherwise the view wont be rendering properly .

List Applet -- PM  ---[Desktop]
Include below files

<KEY Name="ContactLstPModel">
<FILE_NAME> siebel/applet.js        </FILE_NAME>
<FILE_NAME> siebel/listapplet.js    </FILE_NAME>
<FILE_NAME> siebel/pmodel.js        </FILE_NAME>
<FILE_NAME> siebel/listpmodel.js    </FILE_NAME>
<FILE_NAME> siebel/custom/<<myjsfile>>.js   </FILE_NAME>
</KEY>


List Applet --PR -- [Desktop]
Include below files

<KEY Name="ContactListPRenderer">
 <FILE_NAME> 3rdParty/jqGrid/current/js/i18n/grid.locale-en.js    </FILE_NAME>
               <FILE_NAME> 3rdParty/jqGrid/current/js/jquery.jqGrid.min.js      </FILE_NAME>
               <FILE_NAME> 3rdParty/jqgrid-ext.js                               </FILE_NAME>
               <FILE_NAME> siebel/phyrenderer.js                                </FILE_NAME>
               <FILE_NAME> siebel/jqgridrenderer.js                             </FILE_NAME>
<FILE_NAME> siebel/custom/<<myjsfile>>.js                  </FILE_NAME>
</KEY>


Form Applet --PM --[Desktop]
Include below file

<KEY Name="AccountFormPModel">
<FILE_NAME> siebel/applet.js                    </FILE_NAME>
<FILE_NAME> siebel/pmodel.js                    </FILE_NAME>
<FILE_NAME> siebel/custom/<<Myjsfile>>.js   </FILE_NAME>
</KEY>

Form Applet --PR--[Desktop]
Include beloe file

<KEY Name="AccountFormPRenderer">
<FILE_NAME> siebel/phyrenderer.js                           </FILE_NAME>
<FILE_NAME> siebel/custom/AccountFormPR.js                  </FILE_NAME>
</KEY>

Note: it is very important to extend the correct class name in our js files. 

Regards
Joseph Thomas
joju2002@gmail.com




Wednesday, September 18, 2013

Siebel Open UI: Portlet in External Application


Dear Readers,
The following screenshot shows a Siebel Case List Applet loaded in an external application as a portlet. Good feature that can be leveraged to display Siebel data in Legacy Portals.



- OptimusPrime

Monday, September 16, 2013

OpenUI Custom Theme

Dear Readers ! I was experimenting with Open UI Desktop Themes and realized the UI is thrown open for mods. This is how I ended up after 25 mins. Note the Closed Records are auto highlighted by the mods.
- OptimusPrime