...
Find the section rem Database parameters = Access to the database hosting the Siebel PeopleSoft repository:
rem for Oracle : oracle rem for DB2 : db2 SET DBTYPE=<PARAM> | You must set this option to match the target RDBMS. For example for Oracle Server:
|
rem either a host or an IP SET SERVER_NAME=<PARAM> SET PORTNUMBER=<PARAM> SET DATABASE_NAME=<PARAM> | Enter the three fields, for example, for Oracle Server:
Hints:
|
rem <CHOOSE> %JDBC_URL_ORACLE_SID% or %JDBC_URL_ORACLE_SERVICE% SET JDBC_URL_ORACLE=%JDBC_URL_ORACLE_SID% | When targeting an Oracle Server, you must choose one parameter or the other. E.g. if you define a Service name in
|
...
Situation | Message | What should you do? |
---|---|---|
When the execution is successful. | Extraction was successful ! | Nothing. |
When an error is identified, the return code of the extraction is interpreted and a functional message ERROR_MESSAGE is displayed. | Error while extracting Siebel PeopleSoft Project : %ERROR_MESSAGE%
|
|
...
- The name of the Vanilla application or Analysis schema
- Definition of Siebel PeopleSoft specific rule contextual parameters
...
Code Block |
---|
<PeoplesoftProjectConfig vanillaApplication="[application_name_or_analysis_schema_name]"> <SiebelApplication<PeopleSoftApplication name="[siebelpeoplesoft_app_name]" vanillaName="[app_name_in_vanilla]"/> <QualityRule id="[rule_id]"> <Parameter name="[parameter_name]" value="[parameter_value]"/> </QualityRule> <QualityRuleGroup name="companyPrefix" active="[true_or_false]"> <QualityRule id="[rule_id]" active="[true_or_false]"> <Parameter name="[parameter_name]" value="[parameter_value]"/> </QualityRule> </QualityRuleGroup> </PeoplesoftProjectConfig> |
...