[Home] [Help]
2728: ff.ENABLED,
2729: f.datatype,
2730: f.system_flag,
2731: ff.EDITABLE
2732: from pon_form_section_fields ff,
2733: pon_fields f
2734: where form_id = p_form_id
2735: and f.field_code(+) = ff.field_code
2736: order by sequence_number;
2894: ff.ENABLED,
2895: f.datatype,
2896: f.system_flag,
2897: ff.EDITABLE
2898: from pon_form_section_fields ff,
2899: pon_fields f
2900: where form_id = p_level1_section_id
2901: and f.field_code(+) = ff.field_code
2902: order by sequence_number;
3029: ff.ENABLED,
3030: f.datatype,
3031: f.system_flag,
3032: ff.EDITABLE
3033: from pon_form_section_fields ff,
3034: pon_fields f
3035: where form_id = p_level2_section_id
3036: and f.field_code(+) = ff.field_code
3037: order by sequence_number;
3114: CURSOR v_repeating_section_id_cursor is
3115: SELECT
3116: DISTINCT FS.FORM_ID SECTION_ID
3117: FROM
3118: PON_FORM_SECTION_FIELDS FSF,
3119: PON_FORMS_SECTIONS FS
3120: WHERE
3121: FSF.SECTION_ID = FS.FORM_ID
3122: AND