Versions Compared

Key

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

A shell script which is callable by an EBS Concurrent Program.

...

NameCodeDescriptionDefault Value
Program Files Root Source Directory
FDEBS_PROG_ROOT_SOURCE_DIRSource folder for Prog files (e.g. cm).prog
File PermissionsFDEBS_FILE_PERMISSIONSTarget File Permission. Will be set to target file after deployment using chmod. eg: 755

...

N/A - Build commands not supported for this type.

Sample Deploy Commands 

@Since 5.3.0.1

Code Block
languagebash
themeRDark
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


Info

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.

Prior to 5.3.0.1, the deploy command is always relative to FND_TOP.  After upgrading FlexDeploy, you will need to re-generate the commands for Program Files to attain the updated logic above for EBS 12.2.

Code Block
languagebash
themeRDark
cp "$SOURCE_FILE" "$XXHR_TOP/bin/";
ln -sf $FND_TOP/bin/fndcpesr $XXHR_TOP/bin/program;