Monday, January 23, 2012

IsPrimaryMVG field is not exported in Query / Query Page

Rather we can expose the field "SSA Primary Field" that will help to find which is the "Primary" record in MVG

Monday, December 26, 2011

EAI Object Manager Parameters for Tracing SQL and Log

EAI Siebel Adapter Performance

EAI Query Specification
EAI Siebel Adapter
EAI UI Data Services Events
Web Service Inbound
SQL Error
SQL Parse and Execute
SQL Slow Query
Workflow Performance


Friday, December 23, 2011

How to use OPATCH to install QF?

How to Install QF from 8.1.1.1 using oPatch [ID 845450.1]

Basic Rules:

1. To apply Patch on Mobile Web Client/Tools, change directory to webclient\OPatch & Tools\OPatch folder
2. Run the command "OPatch apply




"

Friday, December 16, 2011

Visibility

HOWTO use session management web services to log in as SADMIN and create data under a different user ? [ID 747584.1]

Tuesday, December 13, 2011

Visibility Search Spec of Siebel





My Quotes - [Sales Team Rep Id] = PositionId() AND [IsPCQuoteType] = 'N'


My Team's Quotes - [Sales Rep Reports To] = PositionId() AND [IsPCQuoteType] = 'N'


All Quotes  - [Organization Id] = OrganizationId() AND [IsPCQuoteType] = 'N'


All Quotes Across Organization - No Search Spec





How to increase the EAI object manager log

To produce the EAI Object Manager detailed log, Please log in to server manager command line and issue the command:




Eg: srvrmgr> change evtloglvl %=5 for comp EAIObjMgr_ENU
Eg: srvrmgr> change param enableserviceargtracing=true for comp EAIObjMgr_ENU



After you get the logs, reset the object manager log to the usual level:

Eg: srvrmgr> change evtloglvl %=1 for comp EAIObjMgr_ENU
Eg: srvrmgr> change param enableserviceargtracing=false for comp EAIObjMgr_ENU



Some logs should be generated on LOG directory.
- Logs with dmp extension.
- EAI Component log.






Tuesday, May 17, 2011

How to genererate Session Toke Id when Integrating with External Application?

When there is a need to Integrate with External Application like ASP or JSP Siebel Requires to generate a session token which is called GUIDs in web world.



What are GUIDs?


GUIDs or Global Unique Identifiers are Unique IDs generated in software applications to uniquely identify any particular entity. Row Ids are unique across a Siebel environment hence cannot be used as a unique identfier when integrating with other applications, the GUIDs are unique globally.






To generate a GUID, the following Business Service can be used.

Business Service: FINS Teller Converter Extensions
Method: GenerateID

Inputs: IDType Value: GUID
Outputs: GUID in the PropertySet Value






Code:


Input.SetProperty("IDType", "GUID");
bsTeller = TheApplication().GetService("FINS Teller Converter Extensions");
bsTeller.InvokeMethod("GenerateID", Input, Output);
GUIDValue = Output.GetValue();



Sample GUIDs: B5065590-930E-11DE-A110-00212837A7C6, B5065591-930E-11DE-A110-00212837A7C6

Thanks to ZAP My Siebel for providing the above valuable information