A framework for application development within E-Business Suite. The framework is also available for personalizations, customizations and custom-application development.
File Extensions
Name | Description |
---|
.java | Java programming language source file containing Java classes. |
.class | Compiled Java class |
.xml | Extensible Markup Language file format used to create common information formats and share both the format and the data using standard ASCII text. |
Attributes
Name | Attribute 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>/ $<PROD_TOP>/mds (**XML files) |
|
Java Classpath | CLASSPATH | Location of user-defined classes and packages. | $CLASSPATH |
|
Related Project Properties
Name | Description | Default Value |
---|
EBS Java Root Source Directory |
Sub-directory within project's SCM source path which contains AOLsWhere java/class/xml file's package resides. (e.g. classes). | java |
EBS Java Root Destination Directory |
Sub-directory within project's deploy path to contain AOLsTarget directory for java,class,xml files. | $JAVA_TOP |
EBS Java Classpath | Location of user-defined classes and packages. Set the classpath if needed for Java Compilation. |
|
Sample Build Commands
N/A - Build commands not supported for this type.
Sample Deploy Commands
Code Block |
---|
language | bash |
---|
theme | EclipseRDark |
---|
title | Java - copy and compile |
---|
|
cp $SOURCE_FILE $JAVA_TOP/xxt/oracle/apps/ak/xxperson/webui/;
export CLASSPATH=$CLASSPATH;
javac -Xlint:none -classpath $CLASSPATH $JAVA_TOP/xxt/oracle/apps/ak/xxperson/webui/xxPersonMainCO.java; |
...
Code Block |
---|
language | bash |
---|
theme | EclipseRDark |
---|
title | Class, XML & JPX - copy only |
---|
|
cp $SOURCE_FILE $JAVA_TOP/xxt/oracle/apps/ak/xxperson/schema/server/; |
Considerations
- All OAF Java related files must be sourced controlled under a directory structure matching the Java package structure.
...
- This is a requirement to ensure the generated deploy commands copy them to the correct location under the $JAVA_TOP. If this requirement is not met, you will need to modify each of the target location paths and re-evaluate the commands.