In order to run R12, use JRE 1.5.10 which is located under the http://
After installing this, Internet Explorer and Firefox can run the R12 forms screens properly.
You may need to make adjustments on the Java Runtime settings in order your browser can use the proper version of Java. Check the following settings;
Settings -> Control Panel Java -> Java -> Java Application Runtime Settings
Sunday, October 26, 2008
R12 and JRE 1.5.10
Posted by tekmen at 8:16 PM 0 comments
Labels: E-Business, Tips
Saturday, September 06, 2008
The "Show Log" feature in R12
- Log Search: OAM_BF_SYSLOG_READ_ONLY_MENU (Log Search: Read Only) Menu
- Log Delete: OAM_BF_SYSLOG_DELETE (Log Delete) function
- Log Setup: OAM_BF_SYSLOG_CONFIG (Log Setup) function
- Full access (Search/Configure/Delete): OAM_BF_SYSLOG_ALL_MENU (Log Search: All Functions) Menu.
Posted by tekmen at 8:31 PM 0 comments
Labels: E-Business, Tips
Sunday, July 06, 2008
OAF JDeveloper Version
How to find the correct version of JDeveloper to use with E-Business Suite 11i or Release 12 - Use Metalink Note:416708.1
In order to find the information regarding your installation use the link of your EBusiness Installation;
http://host:port/OA_HTML/OAInfo.jsp
NOTE : Starting from 12.0.4 the page http://host:port/OA_HTML/OAInfo.jsp is not supported anymore, instead we need to login to Applications and select “About this Page” link. It will show us the OAF level and much more information.
Posted by tekmen at 2:44 PM 0 comments
Labels: E-Business, OAF, Tips
Thursday, June 26, 2008
Java class header Info
strings -a ArCusOvrCO.class | grep '$Header'and, the output will look like;
Posted by tekmen at 5:47 PM 0 comments
Labels: E-Business, OAF, Tips
Tuesday, May 13, 2008
Timezone in APPS
For time zone support to be activated, the system administrator must ensure that each of the following is true:
- Oracle E-Business Suite version 11i10 or higher
- Oracle RDBMS 9i or higher
- The database must be configured to use the time zone file 'timezlrg.dat' rather than the 'timezone.dat' file
- The database must be started in the standard corporate time zone
- Profile 'Server Timezone' (SERVER_TIMEZONE_ID) must be set at the Site level, and must be set to the same standard corporate time zone as the database
- Profile 'Client Timezone' (CLIENT_TIMEZONE_ID) must be set at the user level
- Profile 'Enable Timezone Conversions' (ENABLE_TIMEZONE_CONVERSIONS) must be set to 'Yes' ('Y') at the Site level.
- Profile 'Concurrent: Multiple Time Zones' (CONC_MULTI_TZ) should be set to 'No' (N) at the Site level
Posted by tekmen at 8:34 PM 0 comments
Labels: Documentation, E-Business, Tips
Wednesday, April 16, 2008
HRMS - fnd_session tip
INSERT INTO fnd_sessions
(session_id
,effective_date)
(SELECT userenv('sessionid')
,SYSDATE
FROM dual
WHERE NOT EXISTS (SELECT 'c'
FROM fnd_sessions s1
WHERE userenv('sessionid') = s1.session_id));
Posted by tekmen at 8:13 PM 0 comments
Labels: E-Business, Tips
Wednesday, March 26, 2008
Getting the Dependencies
- USER_DEPENDENCIES returns the dependencies of the objects owned by the current user.
- ALL_DEPENDENCIES returns the dependencies of the objects visible to the current user (so it's a superset of the former)
- DBA_DEPENDENCIES returns the dependencies of the all database objects. It requires SYSDBA privileges.
select name, type, referenced_owner, referenced_name, referenced_type
from user_dependencies
whose results can be read as "The object name of type type depends on the object referenced_name of type referenced_type owned by referenced_owner (as implied by the use of user_dependencies, the owner of the name object is the current user). The referenced_owner column is useful to filter out various Oracle objects such as DUAL.
Tuesday, February 26, 2008
APPEND into tables
insert /*+ append */ into customer select (. . .) from customer_xx;
Posted by tekmen at 1:56 PM 0 comments
Monday, January 21, 2008
Selecting sample data from table
Sometimes you may need to select a percentage of data from the table to create test data. The following statement will select approximately 0.2 percent of the data in the table;
select * from RA_CUSTOMER_TRX_ALL sample(0.2);
Posted by tekmen at 7:52 PM 0 comments
Sunday, January 06, 2008
Commit, commit_form and forms_ddl
commit
this is db command (only), not FORMS and if:
- form has upPOSTed statements they may be ignored
- form not fire PRE, POST, ON - commit triggers
forms_ddl(commit)
commit_form
- It fires commit for all the database blocks on the form
- it commits the all the DML transactions if any executed and pendig for commit .
Posted by tekmen at 8:04 AM 0 comments
