InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What Are The Business Service Events? |
|
Answer» • Service_PreInvokeMethod • Service_PreInvokeMethod |
|
| 2. |
What Is The Difference Between Event And Event Handler? |
|
Answer» • An event is a user or system action to which the Siebel application might respond 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) • An event is a user or system action to which the Siebel application might respond 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) |
|
| 3. |
What Is The Difference Between Get And Post Http Methods? |
|
Answer» GET:
EXAMPLE: CLICKING a hyperlink uses GET POST:
Example: Sending information in a Web-based form uses POST. GET: Example: Clicking a hyperlink uses GET POST: Example: Sending information in a Web-based form uses POST. |
|
| 4. |
What Does An Eai Http Transport Adapter File Business Service Do? |
Answer»
|
|
| 5. |
What Does An Eai Xml Read From File Business Service Do? |
|
Answer» READS a FILE and TRANSFORMS data from an XML FORMAT to a PROPERTY set format. Reads a file and transforms data from an XML format to a property set format. |
|
| 6. |
What Does An Eai Xml Write To File Business Service Do? |
|
Answer» TRANSFORMS data from a PROPERTY set to an XML FORMAT and WRITES it to a file. Transforms data from a property set to an XML format and writes it to a file. |
|
| 7. |
What Is A Grammer? |
|
Answer» NOTATION that DEFINES a RULE, a SUBSET of the XPath standard. Notation that defines a rule, a subset of the XPath standard. |
|
| 8. |
What Is A Rule? |
Answer»
|
|
| 9. |
What Is A Data Map? |
| Answer» | |
| 10. |
What Is A Siebel Data Adapter? |
Answer»
|
|
| 11. |
What Does A Eai Siebel Adapter Execute Method Does? |
|
Answer» PERFORMS a combination of OPERATIONS on components of an integration OBJECT instance. Performs a combination of operations on components of an integration object instance. |
|
| 12. |
What Does A Eai Siebel Adapter Synchronize Method Does ? |
|
Answer» • CHANGES data in a business object instance to match data in an integration object instance. • Changes data in a business object instance to match data in an integration object instance. |
|
| 13. |
What Does A Eai Siebel Adapter Delete Method Does? |
|
Answer» DELETES a BUSINESS COMPONENT INSTANCE. Deletes a business component instance. |
|
| 14. |
What Does A Eai Siebel Adapter Query Method Does? |
|
Answer» Selects data from the SIEBEL DATABASE WITHOUT using Siebel object interfaces. Selects data from the Siebel database Without using Siebel object interfaces. |
|
| 15. |
What Are The Eai Siebel Adapter Methods? |
|
Answer» • Query • Query |
|
| 16. |
What Are The Different Ways To Invoke An Eai Workflow ? |
|
Answer» Workflows can be INVOKED using :- Workflows can be invoked using :- |
|
| 17. |
What Is The Difference Between Integration Object And Integration Object Instance ? |
|
Answer» • An INTEGRATION OBJECT is METADATA. A model of the structure of a particular data set. • An integration object is metadata. A model of the structure of a particular data set. |
|
| 18. |
What Are Integration Objects? |
|
Answer» Integration objects enable the transformation of application-specific DATA into a common FORMAT (such as XML) that other applications can process. Integration objects enable the transformation of application-specific data into a common format (such as XML) that other applications can process. |
|
| 19. |
What Are The Ways Of Invoking A Business Service ? |
| Answer» | |
| 20. |
What Are The Possible Solutions To Export Siebel Data To An External System ? |
|
Answer» To export Siebel DATA to an external system we can use EITHER one of the following solutions.
To export Siebel data to an external system we can use either one of the following solutions. |
|
| 21. |
What Are The Possible Solutions To Control A Siebel Application From An External System ? |
|
Answer» To CONTROL a Siebel application from an external system we can use either ONE of the following solutions. To control a Siebel application from an external system we can use either one of the following solutions. |
|
| 22. |
How To Convert Incoming Data To Uppercase Before Importing In Siebel? |
|
Answer» 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") 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") |
|
| 23. |
How To Import Wsdl In Siebel? |
|
Answer» Importing WSDL in Siebel is two step process:
Importing WSDL in Siebel is two step process: |
|
| 24. |
What Is A Wsdl? |
|
Answer» WSDL stands for Web SERVICES Descriptive Language. It is an XML file which describes EVERYTHING about a web server. Typically it contains:
WSDL stands for Web Services Descriptive Language. It is an XML file which describes everything about a web server. Typically it contains: |
|
| 25. |
What Is Dtd? How To Generate Dtd Of An Siebel Integration Object? |
|
Answer» 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. 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. |
|
| 26. |
What Is Xsd? How To Create Xsd In Siebel? |
|
Answer» 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. 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. |
|
| 27. |
What Is The Use Of Xml Container Element? |
|
Answer» 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. 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. |
|
| 28. |
What Is The Significance Of Name Of Integration Component Field? |
|
Answer» 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. 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. |
|
| 29. |
How To Change The Source Field Of Xml Tag In Siebel Xml? |
|
Answer» Find the INTEGRATION COMPONENT Field and update the EXTERNAL Field NAME to the NEW field name. Find the Integration Component Field and update the External Field name to the new field name. |
|
| 30. |
How To Change The Xml Tag In An Siebel Message? |
|
Answer» 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. 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. |
|
| 31. |
What Is The Difference Between External & Internal Integration Object? |
|
Answer» Answer :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. |
|