rpdUploadAndConfigure
Uploads the RPD to a target environment, then updates connection pool information using provided JSON file, which is done by invoking updateconnectionpool command. Property replacement is done on JSON file, which will allow you to update environment specific information in JSON file at update time. This operation is slightly different than rpdDeploy, as it uploads RPD file first as is and then performs connection pool update and is only supported for OBIEE 12c.
Target Properties
Property Name | Property Code | Required | Description |
---|---|---|---|
Oracle Middleware Home (MW_HOME) |
| Yes | The oracle middleware home (which has sub folders such as oracle_common, wlserver, coherence*, etc.) (e.g. |
Oracle BI Home |
| No | The oracle BI home. (e.g. |
OBIEE Server Host |
| Yes | The managed server host name for OBIEE. |
OBIEE Server Port |
| Yes | The managed server port number for OBIEE.(e.g. |
OBIEE Server Use SSL |
| Yes | Check if the connection to the managed server should be made using t3s. Otherwise, it will be made using t3. Defaults to false. |
OBIEE Server User |
| Yes | The user to log into OBIEE. Should have sufficient privileges to move and upload data. |
OBIEE Server Password |
| Yes | The password for the user to login to OBIEE. |
OBIEE RPD Name |
| Yes | The RPD name on the OBIEE server. (e.g. |
OBIEE RPD Password |
| Yes | The RPD password on the OBIEE server. |
OBIEE RPD Source Password |
| No | The RPD password from the Source Environment. Used if the RPD password changes between environments. If source password is different than rpd password then password will be updated on rpd prior to upload. |
WebLogic Domain Directory |
| No | WebLogic Domain Directory.(e.g. |
WebLogic Admin Domain Directory |
| No |
Inputs
Input Name | Input Code | Required | Description |
---|---|---|---|
Connection Pool JSON File |
| No | You can create connection pool JSON file using link, use Example for listconnectionpoolcd /oracle/Middleware/Oracle_Home/user_projects/domains/bi01/bitools/bin
./datamodel.sh listConnectionpool -SI ssi -U weblogic -P welcome1 -V true -O /var/tmp/connectionpool.json FlexDeploy will perform property replacement on this file, so you can use ${{...}} notation to replace environment specific values. JSON file can be absolute path or relative to artifacts folder. If you are using config file from temp folder, then use FD_TEMP_DIR variable to indicate absolute path (using groovy expression for input). You can either
{
"Title": "List Connection Pools",
"Conn-Pool-Info": [
{
"uid": "215297b0-0c83-1000-8029-0a0a0b690000",
"connPool":"BSC",
"parentName":"\"BSC\"",
"user": "BSC",
"password": "${{FDBI_BSC_PASSWORD}}",
"dataSource":"VALUEOF(BSC_DSN)",
"appServerName":"''"
},
{
"uid": "80d01383-0bd5-0000-714b-e31d00000000",
"connPool":"HR",
"parentName":"\"HR\"",
"user": "HR",
"password": "${{FDBI_HR_PASSWORD}}",
"dataSource":"VALUEOF(FDBI_HR_DSN)",
"appServerName":"''"
}
],
"Variables-In-Conn-Pool": [
{
"uid": "23829710-0c83-1000-8029-0a0a0b690000",
"variable": "BI_EE_HOME",
"value": "'${{FD_ORACLE_BI_HOME}}'"
},
{
"uid": "80d01384-0bd5-0000-714b-e31d00000000",
"variable": "BSC_DSN",
"value": "'${{FDBI_BSC_DSN}}'"
},
{
"uid": "fc3b8480-0c61-1000-8421-0af052d90000",
"variable": "HR_DSN",
"value": "'${{FDBI_HR_DSN}}'"
}
]
} |
Artifacts
This operation consumes an archive file of the RPD artifact. This artifact can be created by the rpdBuild operation.
Endpoint Selection
This operation delegates endpoint selection to the workflow developer. The workflow editor will default the selection to "All", which selects all available endpoints associated to the Target. Selecting a specific resource will result in selection of endpoints associated to the Target which have that resource defined.
Endpoint Execution
This operation delegates endpoint execution to the workflow developer. The workflow editor will default to "Any", which will execute on any one of the selected endpoints, which will be randomly picked from selected endpoints or a specific endpoint where previous step may have executed. Changing this value to "All" to will result in execution on all selected endpoints.
- style