How to Populate User Keys and Required Columns using Siebel EIM
It is mandatory to load the required columns of the base tables. If one or more required fields are missed, then the EIM process will fail to load the base table and generate the REQUIRED_COLS error status. To identify which are the required columns for a base table, the following query can be used:
SELECT TBL.NAME, COL.NAME
FROM S_COLUMN COL, S_TABLE TBL
WHERE COL.TBL_ID=TBL.ROW_ID
AND COL.REQUIRED='Y'
AND TBL.NAME = <<give Base Table Name here>>;
Similarly to determine the user keys for a base table, the following query can be used:
SELECT distinct TBL.NAME,
COL.NAME
FROM S_COLUMN COL,
S_TABLE TBL
WHERE COL.TBL_ID=TBL.ROW_ID
AND TBL.NAME = <<give Base Table Name here>>
AND COL.USR_KEY_SEQUENCE IS NOT NULL;
If the above query does not return any row, then that implies that the corresponding base table does not have any user key.
Related Articles:
Browse Categories
User login
Navigation
Popular content
- Autosys Job Handling (13,609)
- GE UNIVERSAL REMOTE INSTRUCTIONS (12,357)
- Siebel User properties (9,094)
- Test 1 - NC Drivers License Test - DMV Question Dump (8,770)
- Making a View "Read Only" based on a criteria: Aspect User Property (4,216)
- Siebel Application Response Measurement (SARM) (4,144)
- Siebel Predefined Queries (PDQ) – Reference (4,080)
- Siebel Server Component Event Logging (3,662)
- Strategies for Building Team Cohesion (3,153)
- How to create the EBC’s in Siebel (3,085)
Readers who viewed this page, also viewed:
- Siebel Standard interactivity configuration tips (57.1%)
- Will EIM interfere or affect Visual Basic code built into the application? (42.9%)
- How should EXPORT MATCHES and DELETE MATCHES be used in Siebel? (42.9%)
- Siebel Analytics Web Services (42.9%)
- Generating user and group list from Analytics Repository using VB Script (42.9%)
- Disable the button to prevent the double click in Siebel (42.9%)
- Browser Scripting in Standard Interactivity (42.9%)
- Siebel Development Standards (42.9%)
- Siebel EAI Adapter: skiptree and skipnode operations in Execute Method (42.9%)
- Is it possible to modify Siebel Message Property Set without using custom business service (scripting option)? (28.6%)
