Top 34 Siebel Eai Interview Questions You Must Prepare 27.Jul.2024

Q1. What Are The Different Ways To Invoke An Eai Workflow ?

Workflows can be invoked using :-

  • A Workflow
  • A run-time Event
  • A script
  • The workflow process simulator ( for testing )

Q2. How To Import Wsdl In Siebel?

Importing WSDL in Siebel is two step process: 

  1. First, WSDL is imported into Siebel Tools using WSDL Import Wizard. It creates Integration objects and proxy business service from WSDL definition, and generates XML for run time data creation. 
  2. Secondly, XML generated  is then imported in to web client. Process is outlined in bookshelf here.

Q3. How To Convert Incoming Data To Uppercase Before Importing In Siebel?

Siebel does not support changing the case of through EAI, however it is possible to call a custom business service through data maps which can convert the case.

InvokeServiceMethod ("CustomDataMapper", "UpperCase", "InputStr='"+[Integration Field Name]+"'", "OutputStr")

Q4. What Are The Business Service Events?

• Service_PreInvokeMethod
• Service_InvokeMethod
• Service_PreCanInvokeMethod

Q5. What Is The Significance Of Name Of Integration Component Field?

Name of Integration Component Field is used to create the Siebel Message property set, It is essential to know the ICF name if script is used to get value from XML.

Q6. What Is A Rule Set?

A group of rules in a sequence, used to parse property set input until a rule is found that matches the input.

Q7. What Is The Difference Between Get And Post Http Methods?

GET:

  1. Use when URL access will not change the state of the database
  2. Use to ask for a specific piece or set of information

Example: Clicking a hyperlink uses GET

POST:

  1. Use when URL access will change the state of the database
  2. Use to post a specific piece or set of information

Example: Sending information in a Web-based form uses POST.

Q8. What Is A Siebel Data Adapter?

  • Is a user interface that enables you to create data maps for outbound and inbound data transformation
  • Is declarative — little or no programming is necessary
  • Uses the EAI Data Mapping Engine business service to execute the data transformation
  • Stores data transformation maps in the Siebel database

Q9. What Does A Eai Siebel Adapter Synchronize Method Does ?

• Changes data in a business object instance to match data in an integration object instance.
• Updates, inserts, or deletes a business component instance.

Q10. How To Generate Xml In Siebel?

Use EAI Siebel Adapter Business Service Query method and then EAI XML Converter Service Method HierToDoc to generate XML Doc.

Q11. How To Change The Source Field Of Xml Tag In Siebel Xml?

Find the Integration Component Field and update the External Field name to the new field name.

Q12. What Does An Eai Xml Read From File Business Service Do?

Reads a file and transforms data from an XML format to a property set format.

Q13. What Does A Eai Siebel Adapter Execute Method Does?

Performs a combination of operations on components of an integration object instance.

Q14. How To Change The Xml Tag In An Siebel Message?

Find the Integration object from the xml and then go to the desired integration component and update the XML Tag of desired integration component field.

Q15. What Is A Wsdl?

WSDL stands for Web Services Descriptive Language. It is an XML file which describes everything about a web server. 

Typically it contains:

  • Web service end point (URL)
  • Methods web service Support
  • Input and output arguments.
  • WSDL is technology/platform independent syntax thus it is widely accepted way of describing web services definition.

Q16. What Are The Ways Of Invoking A Business Service ?

  • A workflow process
  • A method from another business service
  • A user interface event
  • A Siebel object interface ( COM , CORBA , Java )

Q17. What Does A Eai Siebel Adapter Delete Method Does?

Deletes a business component instance.

Q18. What Is Xsd? How To Create Xsd In Siebel?

XSD is an XML Schema Definition document. It is a type of XML document which defines the structure of an XML document. It contains the structure of the XML and the data type and length of XML.

Siebel tools can generated by Generate XML Schema wizard by clicking Generate Schema Button. 

Q19. What Is A Rule?

  • A search expression to evaluate incoming data, plus
  • A business service and method to send data matching the criteria

Q20. What Does A Eai Siebel Adapter Query Method Does?

Selects data from the Siebel database Without using Siebel object interfaces.

Q21. What Are The Possible Solutions To Export Siebel Data To An External System ?

To export Siebel data to an external system we can use either one of the following solutions.

  • Enterprise Integration Manager ( EIM )
  • Object Interface
  • Workflow for EAI (Outbound)
  • EAI Dispatch service (Outbound )

Q22. What Does An Eai Xml Write To File Business Service Do?

Transforms data from a property set to an XML format and writes it to a file.

Q23. What Are The Eai Siebel Adapter Methods?

• Query
• Upsert
• Delete
• Synchronize
• Execute

Q24. What Is The Difference Between External & Internal Integration Object?

Internal Integration Object refers to Siebel Business Object for querying and saving data. External Integration Object refers to XML schema, one can not use query or insert operation on external integration object. To create external integration object, either XSD or DTD document is required.

Q25. What Is Dtd? How To Generate Dtd Of An Siebel Integration Object?

DTD is Document Type Definition, it is another form of document which describes the structure and data types of an XML document. It can also be generated through Generate Schema Button on the Siebel Integration Object.

Q26. What Are Integration Objects?

Integration objects enable the transformation of application-specific data into a common format (such as XML) that other applications can process.

Q27. What Is A Transform?

  • A specification of a target format for the output property set, plus
  • A specification of the source data in the output property set

Q28. What Are The Possible Solutions To Control A Siebel Application From An External System ?

To control a Siebel application from an external system we can use either one of the following solutions.

  • Workflow for EAI
  • Object Interface

Q29. What Is A Grammer?

Notation that defines a rule, a subset of the XPath standard.

Q30. What Does An Eai Http Transport Adapter File Business Service Do?

  • Sends/receives XML messages across the Internet to or from a port using Hypertext Transfer Protocol (HTTP)
  • Can send messages beyond corporate boundaries to Web-based applications written in Java, JavaScript, VBScript, or another Web-enabled technology
  • Transports messages in XML format by default
  • Provides synchronous connectivity
  • Supports all inbound and outbound transport methods
  • Runs within the Siebel Object Manager

Q31. What Is A Data Map?

  • Defines the relationship between the source and target format
  • Directs the mapping and transformation process

Q32. What Is The Difference Between Event And Event Handler?

• An event is a user or system action to which the Siebel application might respond
Select events are exposed through the Application Programming Interface (API)

Example: Updating a record, updating a field, and deleting a record

• An event handler is the Siebel code that executes in response to the event

Example: When the user steps off a record being edited (the event), the application responds by committing the record to the database (the event handler)

Q33. What Is The Use Of Xml Container Element?

XML container element if specified on IC then Siebel adapter will always create an XML tag before the start of child IC records, and it will always be present in XML even if no records are returned by query method.

Q34. What Is The Difference Between Integration Object And Integration Object Instance ?

• An integration object is metadata. A model of the structure of a particular data set.
• Whereas an integration object is metadata. A model of the structure of a particular data set.