DBA Data[Home] [Help]

APPS.FND_VSET dependencies on FND_FLEX_VALUE_SETS

Line 109: FROM fnd_flex_value_sets

105: SELECT /* $Header: AFFFVDUB.pls 120.3.12010000.1 2008/07/25 14:14:50 appldev ship $ */
106: flex_value_set_id, flex_value_set_name,
107: validation_type
108: INTO vset.vsid, vset.name, vset.validation_type
109: FROM fnd_flex_value_sets
110: WHERE flex_value_set_id = valueset_id;
111:
112: SELECT /* $Header: AFFFVDUB.pls 120.3.12010000.1 2008/07/25 14:14:50 appldev ship $ */
113: format_type, alphanumeric_allowed_flag,

Line 121: FROM fnd_flex_value_sets

117: INTO fmt.format_type, fmt.alphanumeric_allowed_flag,
118: fmt.uppercase_only_flag, fmt.numeric_mode_flag,
119: fmt.max_size, fmt.max_value, fmt.min_value,
120: fmt.longlist_flag
121: FROM fnd_flex_value_sets
122: WHERE flex_value_set_id = valueset_id;
123:
124: fmt.longlist_enabled := (fmt.longlist_flag = 'Y');
125: valueset := vset;