top of page
Search

Add LOV to a Profile

Writer's picture: mdvorkinmdvorkin

1. Define custom lookup XXX_TEST_LOOKUP (Application Developer --> Lookups)


2. Define custom profile (Application Developer --> Profiles)


3. Use SQL validation:


SQL="SELECT MEANING, LOOKUP_CODE

INTO :VISIBLE_OPTION_VALUE , :PROFILE_OPTION_VALUE

FROM FND_LOOKUPS

WHERE LOOKUP_TYPE = 'XXX_TEST_LOOKUP'

ORDER BY LOOKUP_CODE"

COLUMN="Meaning(*)"

HEADING="\"Test List Of Values\"(*)"

5 views0 comments

Recent Posts

See All

Get DDL for Oracle object

set feed off set long 1000000 set longchunksize 1000000 set pages 0 set lines 32767 set trimspool on set feed off set wrap on set...

Cancelled scheduled concurrent requests

This SQL query returns all concurrent requests that were scheduled in the past and are not scheduled currently. It can be used for...

Foreign key constraint violation

/* This PL/SQL script checks violations of foreign key constraints Example of the tables: CREATE TABLE temp_supplier ( supplier_id...

Kommentarer


bottom of page