Tuesday, July 12, 2022

OAF Setup

----## Oracle OAF Setup (prepare the env) ##--





first downlaod the right OAF Patch then unzip it and simmply run
i downloaded it from (Oracle Support > search for(note 416708.1))

(Get the right OA Framework version from 
About this page => Technology Components => OA Framework Version)
then  

===AFTER DOWNLOAD AND UNZIP THE FILE

to start the Jdev

we need to set the class path for JVM compiler from file.java to file.class

two ways to do it 
(1)- write this command in file.bat and run it to set the Env dynamicly and run the Jdev
// set class path 
set JDEV_USER_HOME=D:\ORACLE_SETUP\JDEV_OAF\JDEV_12.2.7\jdevhome\jdev   
// change dir to jdev folder => bin 
CD D:\ORACLE_SETUP\JDEV_OAF\JDEV_12.2.7\jdevbin\jdev\bin
// open the jedv
D:jdev
2ND WAY TO SET THE ENV VAR ....
(2) go to 
My Computer>Properties>Advanced>Environment Variables > new 
add those values 
variable name  : JDEV_HOME_USER 
variable Value : D:\ORACLE_SETUP\JDEV_OAF\JDEV_12.2.7\jdevhome\jdev   PLACE OF UR oaf FOLDER
 DONE ... LETS START 

OPEN BY THE .BAT FILE


NOW WE WILL CONFIGRE IT FOR WORK ..


NOW WE SET THE Environment OF Compile  (Done)









----############## 
---
so after start the Jdev lets do the connection steps as setup 
---
1 - dbc file  (About this page => Page Context )       it containts the connection info for Jdev 
 just copy 
u01/oracle/APP/fs1/inst/apps/VIS_ebs122/appl/fnd/12.0.0/secure/
and paste it into the ftp 
and copy the file into ur pc 
inside the Secure folder into OAF Jdev Folder ..


D:\ORACLE_SETUP\JDEV_OAF\ur jdev \jdevbin\oaext\dbc_files\secure
done ..

2 - DB Connection    
DONE ..
3 - set the User =>  as simulation of login User for session and reading The libraries

START CREATE NEW oaWorkSpace .. and OAProject that containts the project ..


we found our db connection ... then the dbcfile .. those alread done ..


SYSADMIN AS THE LOGIN FOR EBS 
AND UR NEEDED APPLICATION RESP .. SO I USED AS RANDOM FND FOR APPLICATION_DEVELOPER RESP
 AND APPLICATION

-----

NOW WE DONE FOR THE ENV AND THE connection and we need now to create the page ... 

so we will create 

EO , VO , AM , Page and Con
-- example of OAF Page 
https://drive.google.com/drive/folders/1NZxOacAklnwY8FhrGWKc3y9tjyXMiY3E?usp=sharing

No comments:

Post a Comment

SQL Query to Convert number into Words for Money

SELECT INITCAP ( DECODE ( FLOOR (TO_NUMBER ( :amount)), 0, '', TO_CHAR (TO_DATE...