Book Image

Oracle E-Business Suite R12 Integration and OA Framework Development and Extension Cookbook

By : Andy Penver
Book Image

Oracle E-Business Suite R12 Integration and OA Framework Development and Extension Cookbook

By: Andy Penver

Overview of this book

Oracle's suite of applications is used by many major businesses and public sector organizations throughout the world. Oracle E-Business Suite is the most comprehensive suite of integrated, global business applications that enable organizations to make better decisions, reduce costs, and increase performance. The book will show you how to build different types of extensions with different toolsets. It will take you from start to finish with fully working examples.This book will show readers a wide variety of step-by-step examples of how to extend Oracle E-Business Suite Release 12 in a number of areas. The book focuses on OA Framework personalization and development, WebADI, and BI Publisher. It will take readers through the process of how to get started and what tools are needed. It will explain how to develop working examples and how to deploy them within Oracle E-Business Suite Release 12. Learn how to extend Oracle E-Business Suite (EBS) Release 12, using detailed examples to work through how various components are configured and how we can extend standard functionality. The book focuses on OA Framework personalization and development, desktop integration (formerly WebADI), and BI Publisher and each chapter will introduce the topic before going through working examples from start to finish. There are plenty of detailed illustrations throughout each chapter giving clear instructions of what we are doing and why. Each topic will develop a solution that will utilize common core components of a subject area. It focuses on starting an extension right from the beginning to deploying it within E-Business Suite. At the end of each chapter the reader will have a good understanding of what they need to do for each area to take away and start using it in practice. Each chapter will detail how to build an extension in the supported manner and also comes with complete, fully tested code and scripts that can be downloaded.
Table of Contents (15 chapters)
Oracle E-Business Suite R12 Integration and OA Framework Development and Extension Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Setting the personalization profile options


There are three profile options that allow us to personalize self-service screens. The three profile options are as follows:

  • Personalize Self-Service Defn: When set to Yes, a Personalize Page link will appear at the top of each self-service page

  • F ND: Personalization Region Link Enabled: When set to Yes, a Personalize Region link will appear on each region of a self-service page

  • FND: Diagnostics: When set to Yes, an About this Page link will appear at the bottom of each self-service page

How to do it...

To set the three profile options, perform the following steps:

  1. Log in to Oracle with XXUSER and select the Functional Administrator responsibility.

  2. Navigate to Core Services | Profiles.

  3. In the Name field of the Search screen, type Personalize%.

  4. Click on the Go button.

You will see that the Personalize Self-Service Defn profile option value is set to No at site level, as shown in the following screenshot (circled):

We are now going to update the profile option to Yes at user level for the XXUSER user:

  1. Click on the Update Value (pencil) icon.

  2. Click on the User tab and click on the Add Another Row button:

  3. In the User field, enter the name of our user, XXUSER.

  4. Navigate to the Value field and click on the list icon.

  5. Click on the Go button.

  6. Click on the Quick Select icon for the Yes value as shown in the following screenshot:

  7. When you are returned to the Profiles screen, click on the Update button and wait for the confirmation that the record has been saved.

  8. Now navigate to Core Services | Profiles to return to the profiles screen.

We will now check to see if the value has been set. To do this, perform the following steps:

  1. In the Name field of the Search screen, type Personalize%.

  2. In the Access Levels region, enter XXUSER in the User field.

  3. Click on the Go button.

The value we set for our user will be displayed as shown in the following screenshot. We can see that there is a Personalize Page link that has now appeared as a result of setting the profile option to Yes.

We are now going to set the values for the other two profiles options at user level in the same way.

Repeat these steps but this time set the FND: Personalization Region Link Enable profile option to Yes.

We can now see that the personalize region links are now displayed in the self-service page, as shown in the following screenshot:

We are now going to set the value of the FND: Diagnostics profile option at site level in the same way:

  1. In the Name field of the Search region, enter FND: Diagnostics.

  2. Click on the Go button.

  3. Click on the Update Value (pencil) icon.

  4. Under the Site tab, set the Site Value field to Yes.

  5. Click the Update button and wait for the confirmation that the record has been saved.

  6. Now navigate to Core Services | Profiles to return to the Profiles screen.

  7. In the Name field of the Search screen, type FND: Diagnostics.

  8. Click on the Go button.

We can now see that the About this Page link is now displayed in the self-service page, as shown in the following screenshot:

How it works...

We have set the profile options that enable links on self-service pages. This will provide access to the required links on the screen so that we can create our personalizations.