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

ACS3 Data Model

Arguments Source

CONTENT_SECTION_ID_TO_KEY

Arguments:

NameData TypeDefault ValueIn/Out
V_SECTION_IDNUMBER(38.0) IN

Returns:

VARCHAR2

Source

Source
     1: function content_section_id_to_key (v_section_id IN content_sections.section_id%TYPE)
     2:      return varchar
     3:      IS
     4:         v_section_key content_sections.section_key%TYPE;
     5: 
     6:      BEGIN
     7: 	select section_key into v_section_key
     8: 	from content_sections
     9: 	where section_id=v_section_id;
    10: 
    11: 	return v_section_key;
    12:      END content_section_id_to_key;


Generated by OraSchemaDoc, (c) Aram Kananov, 2002