DBA Data[Home] [Help]

APPS.JTF_RS_GROUP_REPORT_PUB dependencies on FND_DESCRIPTIVE_FLEXS_VL

Line 44: FROM FND_DESCRIPTIVE_FLEXS_VL

40: -- Cursor definition to verify if the DFF definition associated with the groups table is frozen.
41: CURSOR c_DFF_frozen
42: IS
43: SELECT 1
44: FROM FND_DESCRIPTIVE_FLEXS_VL
45: WHERE DESCRIPTIVE_FLEXFIELD_NAME = 'JTF_RS_GROUPS'
46: AND FREEZE_FLEX_DEFINITION_FLAG = 'Y';
47:
48: r_DFF_frozen c_DFF_frozen%ROWTYPE;

Line 75: p_flexfield_name IN fnd_descriptive_flexs_vl.descriptive_flexfield_name%TYPE )

71: * Uses FND_DFLEX APIs to populate segment and context details into a local table all_segment_details_tab
72: * A record is created for each segment in each context in the DFF definition.
73: */
74: PROCEDURE populate_segment_details_table ( p_appl_short_name IN fnd_application.application_short_name%TYPE,
75: p_flexfield_name IN fnd_descriptive_flexs_vl.descriptive_flexfield_name%TYPE )
76: IS
77: k INTEGER := 0;
78: flexfield fnd_dflex.dflex_r;
79: flexinfo fnd_dflex.dflex_dr;