EBS Object Types - Program Files
A shell script which is callable by an EBS Concurrent Program.
Object Type Identification
Files with extensions .prog are included regardless of location
File Extensions
Name | Description |
---|---|
.prog | A shell script which is callable by a Concurrent Program. |
Object Type
Name | Code |
---|---|
Program Files |
|
Object Type Attributes
Name | Code | Description | Default Value | Supported Values |
---|---|---|---|---|
Source |
| Object Source Location Type | SCM | SCM |
Target Location |
| Path to where the file should be deployed. | $<PROD_TOP>/bin/ | |
Target File Permissions |
| Permissions to apply to the file after it is deployed | Defaults to the project property FDEBS_FILE_PERMISSIONS | |
Rollback Source Type |
| Where to retrieve file when initiating a rollback deployment. | Project Version
| Project Version, SCM Revision, Backup Repository, and Rollback File SCM Revision and Rollback File options are only available when the project has SCM details configured, and Backup Repository should only be used if the FlexDeploy server and project are configured to take backups. |
Rollback File |
| The associated file to deploy which will roll back this file. Only applicable when Rollback Source Type is Rollback File |
| Any project file sourced from SCM |
Related Project Properties
Name | Code | Description | Default Value |
---|---|---|---|
Program Files Root Source Directory |
| Source folder for Prog files (e.g. cm). | prog |
File Permissions |
| Target File Permission. Will be set to target file after deployment using chmod. eg: 755 |
Sample Build Commands
N/A - Build commands not supported for this type.
Sample Deploy Commands
cp "$SOURCE_FILE" "$XXHR_TOP/bin/";
if [ "$EBS_EDITIONED" = "true" ]; then
ln -sf ../../../fnd/12.0.0/bin/fndcpesr $XXHR_TOP/bin/program;
else
ln -sf $FND_TOP/bin/fndcpesr $XXHR_TOP/bin/program;
fi
Note that EBS_EDITIONED is a FlexDeploy managed variable which is set based on the presence of FILE_EDITION variable in the environment source script. This variable will be present in EBS 12.2+ only, and therefore, the soft link will be created relative to FND_TOP for prior EBS versions.
Related content
- style