A collection of reusable code, programs, and database objects that provides common functionality across all E-Business products.
Object Type Identification
...
Name | Code | Description | Default Value | Supported Values |
---|
Source | SOURCE | Object Source Location Type | SCM | SCM |
Target Location | TARGET_LOCATION | Path to where the file should be deployed to. | $<PROD_TOP>/ |
|
Force | FORCE | Configuration file used to download/upload data. | TRUE |
|
Java Classpath | CLASSPATH | Specifies the current language of the session. | $CLASSPATH | Any valid language name using the OLAP DML syntax. |
DB User Property | DB_USER_PROPERTY | Property Name for Database User Name | FDEBS_DB_USERUSER (i.e. APPS) | Any FlexDeploy property containing the user name |
DB User Password | DB_PW_PROPERTY | Property Name for Database Password | FDEBS_DB_PASSWORD | Any FlexDeploy property containing the user name. Tip |
---|
Be sure to mark any custom properties as encrypted such that the password does not appear in clear text on the screen or in the execution logs. |
|
Target File Permission | FILE_PERMISSIONS | Permissions to apply to the file after it is deployed | Defaults to the project property FDEBS_FILE_PERMISSIONS |
|
...
Code Block |
---|
language | bash |
---|
theme | RDark |
---|
title | Jar File |
---|
|
cp "$SOURCE_FILE" "$JAVA_TOP/loadjava/";
loadjava -u $FDEBS_DB_USER/$FDEBS_DB_PASSWORD@"$AD_APPS_JDBC_URL" $JAVA_TOP/loadjava/Dependency.jar -force -v -r -t |
Code Block |
---|
language | bash |
---|
theme | RDark |
---|
title | Zip File |
---|
|
cp "$SOURCE_FILE" "$JAVA_TOP/loadjava/";
loadjava -u $FDEBS_DB_USER/$FDEBS_DB_PASSWORD@"$AD_APPS_JDBC_URL" $JAVA_TOP/loadjava/Dependency.zip -force -v -r -t |