FND_CORPORATE_BRANDING_IMAGE: To Customize corporate branding image for Oracle Applications.
FND_COLOR_SCHEME:To change Java Color Scheme.
FND_LOOK_AND_FEEL:To change Java Look and Feel, to generic or to oracle.
Definition is the actual Database Package name and the function.
3. Describe the code:
FUNCTION get_plan_year
( -- Input values --
p_date_earned IN DATE
)
RETURN DATE
IS
--
l_out_date DATE;
--
BEGIN
select start_date
i nto l_out_date
from BEN_YR_PERD
where p_date_earned between start_date and end_date;
RETURN l_out_date;
END get_plan_year;
-----------------------------------------------------------
END amri_ff_ben;
4. To see the register parameters for that function click in the button Context Usages:
also using next query we can see the parameter in the back end:
SELECT context_id
,context_name
,data_type
,fl.meaning
FROM ff_contexts, hr_lookups fl
WHERE fl.lookup_code = data_type
AND fl.lookup_type = 'DATA_TYPE'
and context_name = 'DATE_EARNED'
Parameters button do not have anything define in this case, because there are not any user defined parameter.
5. Find the Fast Formula definition.
Total Compensation > Basic > Write Formulas > query up formula you need.
6. Press Edit button. (sample script)
/************************************************************************
FORMULA NAME: AGE_AS_OF_PLAN_YEAR
FORMULA TYPE : Age Determination Date
DESCRIPTION : The Age determination date is 01-MAR-YYYY.
*************************************************************************
Change History:Name Date Description
----------------------------------------------------------------------------------------
Initial Version
**************************************************************************
FORMULA TEXT: Logic in simple terms.*
***************************************************************************/
/*=========== DATABASE ITEM DEFAULTS BEGIN =========*/
/*=========== DATABASE ITEM DEFAULTS ENDS==========*/
/*============ INPUT VALUES DEFAULT BEGIN ===========*/
/*============== INPUT VALUES DEFAUT ENDS ==========*/
/*================= INPUTS SECTION BEGIN =============*/
/*================== INPUTS SECTION ENDS ============*/
/*================ FORMULA SECTION BEGIN ============*/
DEFAULT FOR l_plan_date is '01-JAN-1951'(date)
l_plan_date = GET_PLAN_YEAR() /*this is the call to the external function*/
return l_plan_date
/*================ FORMULA SECTION END ==============*/
7. if you change the PLSQL, then you have to compile the formula.
to find the invalid plsql use following query:
sELECT object_type, object_name, status, last_ddl_time
FROM all_objects
WHERE owner = 'APPS'
and status != 'VALID'
AND object_type LIKE 'PACKA%%'
AND object_name LIKE 'FFP_%'
--OR object_name LIKE 'FFW_%'
but do not compile using sql*plus instea use the program:
$FF_TOP/bin/FFXBCP apps/apps 0 Y %% %%
or
$FF_TOP/bin/FFXBCP apps/apps 0 Y %% %formula_group%
or
Processes and Reports -> Submit Processes and Reports and Select Bulk Compile of Formulas
good luck.
3.- Configure the JDEV_USER_HOME environment variable using Windows XP or Windows 2000 .
My example: C:\installjdev\jdevhome\jdev
4.-Obtaining a Database Connection File.
$ cd $FND_TOP/secure
6.-Assigning ToolBox Responsibilities.
connect to oracle application and as system administartor assign following responsiblities to the jdeveloper user or users.
7.-Launching JDeveloper and Configuring the Database Connection and User.
create a shortcut: jdevbin\jdev\bin\jdevw.exe, e.g. C:\installjdev\jdevbin\jdev\bin\jdevw.exe
you can put it in to your desktop for easy access.
further information:
Metalink account required.
Oracle Application Framework Support Guidelines for Customers
Oracle Application Framework Support Guidelines for Customers Release 12
Oracle Application Framework Release 11i Documentation Roadmap
Oracle Application Framework Development FAQ Release 11i (11.5.10)
Oracle Application Framework Development FAQ Release 12