DBA Data[Home] [Help]

APPS.JTF_RS_GROUP_REPORT_PUB dependencies on FND_DESCR_FLEX_COL_USAGE_VL

Line 57: segment_name fnd_descr_flex_col_usage_vl.end_user_column_name%TYPE,

53: -- Type definition to store relevent details for each segment in the DFF definition
54: TYPE segment_details_record IS RECORD
55: ( context_code fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE,
56: is_global BOOLEAN,
57: segment_name fnd_descr_flex_col_usage_vl.end_user_column_name%TYPE,
58: is_displayed BOOLEAN,
59: row_prompt fnd_descr_flex_col_usage_vl.form_left_prompt%TYPE,
60: application_column_name fnd_descr_flex_col_usage_vl.application_column_name%TYPE);
61:

Line 59: row_prompt fnd_descr_flex_col_usage_vl.form_left_prompt%TYPE,

55: ( context_code fnd_descr_flex_contexts.descriptive_flex_context_code%TYPE,
56: is_global BOOLEAN,
57: segment_name fnd_descr_flex_col_usage_vl.end_user_column_name%TYPE,
58: is_displayed BOOLEAN,
59: row_prompt fnd_descr_flex_col_usage_vl.form_left_prompt%TYPE,
60: application_column_name fnd_descr_flex_col_usage_vl.application_column_name%TYPE);
61:
62: -- Define table to store records containing relevant details of segments
63: -- Stores all the segments for all the contexts in the DFF definition

Line 60: application_column_name fnd_descr_flex_col_usage_vl.application_column_name%TYPE);

56: is_global BOOLEAN,
57: segment_name fnd_descr_flex_col_usage_vl.end_user_column_name%TYPE,
58: is_displayed BOOLEAN,
59: row_prompt fnd_descr_flex_col_usage_vl.form_left_prompt%TYPE,
60: application_column_name fnd_descr_flex_col_usage_vl.application_column_name%TYPE);
61:
62: -- Define table to store records containing relevant details of segments
63: -- Stores all the segments for all the contexts in the DFF definition
64: TYPE segment_details_table IS TABLE OF segment_details_record INDEX BY BINARY_INTEGER;