0% found this document useful (0 votes)
39 views3 pages

Form Personalization LOV1

Uploaded by

harish
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views3 pages

Form Personalization LOV1

Uploaded by

harish
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

4/19/2018 Document 726324.

Copyright (c) 2018, Oracle. All rights reserved.

How To Customize a LOV using Form Personalization ? (Doc ID 726324.1)

In this Document

Goal
Solution
References

APPLIES TO:

Oracle Payments - Version 12.1.3 to 12.1.3 [Release 12.1]


Oracle Application Object Library - Version 11.5.10.2 to 12.2 [Release 11.5 to 12.2]
Information in this document applies to any platform.

GOAL

Provide steps to customize a List of Values (LOV) using a Form Personalization.

SOLUTION

This Feature is available from RUP3 '11i.ATG_PF.H RUP3' PATCH 4334965 and afterwards.

The following are the steps to personalize the LOV item of any Oracle E-Business Suite form by using the Forms
Personalization feature.

1. Navigate to the Form with the LOV Item you want personalized

2. Open the Personalization form from the pull down menu:

Help => Diagnostics => Custom Code=>Personalize.

3. Implement the following personalization rule. In order to clarify these steps, the section EXAMPLE will provide detailed
steps to implement this personalization on the Application Developer > Application > Forms

Seq: 10
Description: Increase the width of the LOV
Condition:
Trigger Event: WHEN-NEW-ITEM-INSTANCE
Trigger Object: < Name of the text item having the LOV in the Block_Name.Item_Name format>
Condition: Null
Processing Mode: Both
Context:
Level: Site
Value: Null

Action:
Seq: 10
Type: Builtin
Description: Create Record Group
Language: All
Builtin Type: Create Record Group From Query
Argument: < Custom SQL query to populate the data in the LOV
>
[Please note that the column must be the same as the seeded record group so that LOV column mapping do not violate]

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=16eshqf99d_389&id=726324.1 1/3
4/19/2018 Document 726324.1

Group Name: < Enter some record group name>


Seq: 20
Type: Property
Description: Attach the Record Group to the LOV
Language: All
Object Type: LOV
Target Object: < Name of the LOV >
Property Name: GROUP_NAME
Value: < Name of the Record Group created in the previous action>
EXAMPLE:

The following example will help customizing the Application Name LOV to populate the Application Name starting with "C"
in the Application Developer > Application > Forms.

1. Select the Application Developer responsibility and open the form using the navigation path Application > Forms.

2. Open the Personalization form from the pull down menu by selecting:

Help => Diagnostics => Custom Code=>Personalize.

Note: If you happen to get the message "Function not available to this responsibility", set the value of the profile
option "Utilities:Diagnostics" to Yes at Site level, save and retest. You might need to log off and log back in for
changes to take effect

3. Follow these steps to implement this personalization:

Seq: 10
Description: Increase the width of the LOV
Condition:
Trigger Event: WHEN-NEW-ITEM-INSTANCE
Trigger Object: FND_FORM.APPLICATION_NAME
Condition: Null
Processing Mode: Both
Context:
Level: Site
Value: Null

Action:
Seq: 10
Type: Builtin
Description: Create Record Group
Language: All
Builtin Type: Create Record Group From Query
Argument: select APPLICATION_NAME, APPLICATION_ID
from FND_APPLICATION_VL
where APPLICATION_NAME like 'C%'
order by APPLICATION_NAME
Group Name: RG_APPLICATION

Seq: 20
Type: Property
Description: Attach the Record Group to the LOV
Language: All
Object Type: LOV
Target Object: APPLICATION_LOV

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=16eshqf99d_389&id=726324.1 2/3
4/19/2018 Document 726324.1
Property Name: GROUP_NAME
Value: RG_APPLICATION

4. Save the personalization rule and retest the LOV.

Didn't find what you are looking for?

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=16eshqf99d_389&id=726324.1 3/3

You might also like