Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Deploys Uploads the RPD to a target environment and replaces , then updates connection pool and password information as needed.Property replacement on variables and connection pool information is supported via a configuration file that should reside in an SCM repository.  For more information on Property Replacement for OBIEE, see RPD Configuration Fileinformation 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.

Environment/Instance Properties

Weblogic

Property Name

Property Code

Required

Description

OBIEE Server Port

FDOBIEE_SERVER_PORTYesThe managed server port number for OBIEEOracle Middleware Home (MW_HOME)FD_ORACLE_MW_HOMEYesThe oracle middleware home (which has sub folders such as oracle_common, wlserver, coherence*, etc.) (e.g. /u01/oracle/products/fmw)
Oracle BI HomeFD_ORACLE_BI_HOMENo

The oracle BI home. (e.g.

9502 or 9704

/oracle/Middleware/Oracle_Home/Oracle_BI1)

OBIEE Server HostFDOBIEE_SERVER_HOSTYesThe managed server host name for OBIEE.

OBIEE Server Port

FDOBIEE_SERVER_PORTYesThe managed server port number for OBIEE.(e.g. 9502 or 9704)
OBIEE Server Use SSLFDOBIEE_SERVER_USE_SSLYesCheck if the connection to the managed server should be made using t3s. Otherwise, it will be made using t3. Defaults to false.
OBIEE Server UserFDOBIEE_USERYesThe user to log into OBIEE. Should have sufficient privileges to move and upload data.
OBIEE Server PasswordFDOBIEE_PASSWORDYesThe password for the user to login to OBIEE.
OBIEE RPD NameFDOBIEE_RPD_NAMEYesThe RPD name on the OBIEE server. (e.g. liverpd). Do not put .rpd extension on this value.
OBIEE RPD PasswordFDOBIEE_RPD_PASSWORDYesThe RPD password on the OBIEE server.
Oracle Middleware Home (MW_HOME)FD_ORACLE_MW_HOMEYesThe oracle middleware home (which has subfolders such as oracle_common, wlserver, coherence*, etc.) (e.g. /u01/oracle/products/fmw)
Oracle BI HomeFD_ORACLE_BI_HOME11G

Required for OBI 11G. Not used in 12C.

The oracle BI home. (e.g. /oracle/Middleware/Oracle_Home/Oracle_BI1)

OBIEE RPD Source PasswordFDOBIEE_SOURCE_RPD_PASSWORDNoThe 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 DirectoryFDWLS_DOMAIN_DIRECTORY11GNoWeblogic WebLogic Domain Directory.(e.g. /u01/oracle/config/domains/soa_domain)
WebLogic Admin Domain DirectoryFDWLS_ADMIN_DOMAIN_DIRECTORYNo
Weblogic Admin Listen PortFDWLS_ADMIN_LISTEN_PORT11GThe admin server port, (e.g. 7001) Not used in 12C.
FDWLS_ADMIN_LISTEN_ADDRESS11GThe admin server host address, (e.g. localhost) Not used in 12C.FDWLS_ADMIN_USE_SSL11GCheck if the WLST connection to the admin server should be made using t3s. otherwise it will be made using t3

Project Properties

Property Name

Property Code

Required

Description





...

Input Name

Input Code

Required

Description

Config Connection Pool JSON FileFDOBIEE_INP_CONN_POOL_CONFIGJSON_FILENoConfig file name for RPD property replacement. Config

You can create connection pool JSON file using link, use datamodel.sh listconnectionpool command.

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

  1. Save
config
  1. JSON file during build operation as artifact, or
  2. Extract it from SCM during deploy workflow or
  3. Use absolute path to location on server. (not recommended as it requires manual setup on server)
See RPD Configuration File for details.
Code Block
languagejs
themeRDark
{
    "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}}'"
        }
    ]
}


Outputs

Output Name

Required

Description




...