Main Tables Views Indexes Constraints Triggers Procedures Functions Packages Sanity check Index

ACS3 Data Model

Arguments Source

ENABLED_SECTION_P

Arguments:

NameData TypeDefault ValueIn/Out
V_SECTION_IDNUMBER(38.0) IN

Returns:

VARCHAR2

Source

Source
     1: function enabled_section_p
     2:        ( v_section_id content_sections.section_id%TYPE)
     3:      return varchar
     4:      is
     5:        v_enabled_p char(1);
     6:      BEGIN
     7:        select enabled_p into v_enabled_p
     8:          from content_sections
     9:          where section_id = v_section_id;
    10: 
    11:       if v_enabled_p is null then
    12:          return 'f';
    13:        else
    14:          return v_enabled_p;
    15:        end if;
    16:      END enabled_section_p;


Generated by OraSchemaDoc, (c) Aram Kananov, 2002