Activating OLD used password for FND User

on Thursday, April 29, 2010

Oracle Applications by default restrict you to reset the old earlier used password. The reason being all OLD passwords are stored in FND_USER_PREFERENCES table. We can use the following queries to see all the entries (though all passwords will be in encrypted format)

select *
from applsys.fnd_user_preferences
where user_name =
'SYSADMIN'
and module_name =
'PWDVALREUSE'

In order to reset/reuse the earlier USED password, one can delete all the entries from above mentioned table

DELETE
from applsys.fnd_user_preferences
where user_name =
'SYSADMIN'
and module_name = 'PWDVALREUSE';

COMMIT;

Differences of OAM, OEM, AMP

on Monday, April 12, 2010

OAM Oracle Applications Manager is the base console that is shipped with Oracle E-Business Suite.

OEM Oracle Enterprise Manager comes in three editions; Oracle Enterprise Manager Database Control, Oracle Enterprise Manager Application Server Control, and Oracle Enterprise Manager Grid Control. The first two are the base consoles that are shipped with Oracle Database and Oracle Application Server, respectively, and they provide similar kind of functionalities as Oracle Applications Manager. Oracle Enterprise Manager Grid Control is Oracle's flagship management product, providing enterprise class management capabilities and support for ITIL best practices.

AMP Application Management Pack, specifically Application Management Pack for Oracle E-Business Suite, is a product that extends and runs on Oracle Enterprise Manager Grid Control to provide advanced management capabilities specifically for Oracle E-Business Suite.

How is OAM different from OEM/AMP?

OAM is the baseline console that is bundled as part of Oracle E-Business Suite. It is a tool designed primarily for administrative tasks such as configuring E-Business Suite parameters, identifying patches to apply, and looking up the real time status of E-Business components from a single E-Business Suite instance. Conceptually, it is similar to Oracle Database Control, which is another similar administrative utility that Oracle provides for administering a single Oracle database instance.

OEM, specifically the Oracle Enterprise Manager Grid Control, provides advanced value added management capabilities for E-Business Suite administrators who need the extra support that only OEM can provide. Through OEM, E-Business Suite administrators can proactively monitor their E-Business Suite environments, track configuration changes, troubleshoot problems, and automate manual intensive tasks such as cloning E-Business Suite environments. Features such as synthetic transaction based monitoring, service level management; configuration analysis, historical metrics, and cloning automation exist only in OEM and not OAM. These value added capabilities help improve the service levels of E-Business Suite applications while at the same time reduce operational costs.

It is not an either-or decision to choose between OAM and OEM. In fact, we designed OEM to complement OAM - OEM is the advanced tool for proactive management and automation, OAM supports basic administrative tasks. Furthermore, because OEM and OAM were built on the same Oracle Fusion Middleware UIX user interface framework and the Application Management Pack for Oracle E-Business Suite contains numerous integration points with OAM, E-Business Suite administrators can seamlessly navigate between the two tools to accomplish various tasks.

Migrating Discoverer between two Databases

on Thursday, April 8, 2010

Discoverer consists of the End User LayerTM (EUL), Business Areas (BA), and workbooks. The EUL is essentially a set of application tables, views, and sequences that store the metadata information. This is organized into one or more logical Business Areas. For example, an EUL may contain a Human Resources Business Area and a Marketing Business Area.

Workbooks are reports that have been defined using metadata stored in the EUL. Workbooks can either be saved as files on your local machine or stored centrally in the database.

Please Note: When you save a workbook, Discoverer refers to the folders and items in the workbook using an internal identifier (id) rather than the folder name or item name. This means that the administrator can change folder names and item names without affecting any existing workbooks.

Moving a Complete EUL and Associated Workbooks

1.1 When to use

  • Want to move a complete EUL and all workbooks saved in the database.
  • The EUL are the only tables stored under a database username.

1.2 Advantages

  • Simplest method of moving the Discoverer environment.
  • Keeps all the internal identifiers between the EUL and the saved workbooks intact.

1.3 Disadvantages

  • When you import, you have to be aware of any possible issues with other EUL's that may already exist in the database. (Details below)

1.4  Steps

  1. Take a database backup of the EUL Owner's schema.  This backup contains all of the business areas, the EUL tables and workbooks saved to the database.
  2. Restore from the backup into the new EUL owner on the new database.  It is recommended that this database user owns no other tables.

1.5 Potential Issues

  1. Discoverer Release 3.0.8 supports only one public EUL per instance. If there is another public EUL already existing on the target database, when you import the new EUL, it will make this new imported EUL the new public EUL
  2. Release 3.1 supports multiple EUL's. If there is more than one EUL available on the target database, the first time you log into the User Edition, you should go to the Tools -> Options -> EUL tab and ensure your default EUL is pointing to the correct EUL.
  3. If the owner of the data tables is different in the new database, you may need to go into the Discoverer Administration Edition and do a File -> Refresh.
  4. Any registered PL/SQL functions are still registered in the EUL. If the function doesn't exist in the target database, then the item will obviously be unavailable.

 Moving Individual Business Areas and Workbooks

2.1 When to use

  • When you want to move one or more Business Areas between EULs.
  • When you want to move Business Areas to a new database.
  • When you want to move an EUL and the original EUL owner also owns other database objects you don't wish moved.

2.2 Advantages

  • Enables fine control over movement of business areas and workbooks.

2.3 Disadvantages

  • Need to be methodical about moving workbooks.

2.4 Moving individual business area(s)

  1. In the Administration Edition, open the business area(s) you wish to move.
  2. Select the Business Area(s).
  3. Click on File -> Export.
  4. Re-connect the Administration Edition to the new EUL in the new user/database.
  5. Click on File -> Import.

Note that a business area export does not export any workbooks that use the Business Area. If you also wish to move workbooks, either saved in the database or saved on the file system, then you should perform the following steps. As mentioned before, workbooks store the folders and items used with internal IDs. If you now export a business area and import it into a new EUL, the IDs of the folders and items are changed during the import process. (This is because the original IDs may be already used by other folders and items already existing in the target EUL). When you run an existing workbook against a "moved" Business Area, it matches folders, items, joins, etc., on names, not IDs. If this workbook is then saved again, the IDs within the workbook are matched with the new IDs in the "moved" Business Area, and everything is synchronized again.

NOTE. With Discoverer 3.0.8.x, any PL/SQL functions registered within the Business Area are not exported as part of the Business Area. With Release 3.1, registered PL/SQL functions are exported. If the function itself doesn't exist in the target database, then the item will obviously be unavailable.

2.5 Moving workbooks

  1. {Optional} Open all existing workbooks saved to the file system and save them again to the file system. (The reason for this is that the administrator may have changed folder, item, or join names since this workbook was saved. At the moment, this is not an issue, as the workbook uses internal IDs to match. However, when we move the workbook, we need to match on names; therefore, we need to ensure that the names in the workbook match the latest names in the business area).
  2. Open all existing workbooks stored in the database and save them to the file system.
  3. Export the Business Area(s) as outlined above.
  4. Create the new EUL on the target database
  5. Import the Business Area(s).
  6. Open the workbooks against the new EUL, but don't run them. (This matches up the IDs again.) Save them, either to the database or to the file system, whichever is preferred.
  7. Refresh the Business Area. (File -> Refresh)

2.6 Potential Issues

  1. If you have folders that cross multiple Business Areas, you should export all the Business Areas it refers to in one export file.
  2. Note that you cannot have more than one folder with the same name in an EUL. If you are importing a Business Area into an EUL that is already populated, be careful of renaming folders. The workbooks you are moving will look for the folder name the first time you open it, until the IDs get back in synchronization. If the folder name is changed during the import process, there is a risk that the workbook may pick up the wrong folder.

If a workbook has an associated bitmap (in the title or as part of the parameter dialogue), the location of the bitmap is hard-coded to a directory and so may need to be modified.

Enable Date Tracking Popup

on Sunday, April 4, 2010

This setup will turn on the switch that allows the effective date tracking in HRMS to pop up when someone navigates into Oracle employee record so that users do not forget to date track.

Navigation...Application Developer -> Profile -> System

…………………...Uncheck Site and check the Application

…………….……..Application Field : Human Resources

……………….…..Profile field : DateTrack : Reminder


<<Click to view image in large size>>

Press the find button and then a screen will popup


<<Click to view image in large size>>

In the Application field where we have the white background we need to give the value as 'Always pop warning window' and then save the form.



<<Click to view image in large size>>