|
ACS3 Data Model |
||||||||||||
| |||||||||||||
| Name | Data Type | Default Value | In/Out |
|---|---|---|---|
| V_SECTION_ID | NUMBER(38.0) | IN |
| 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;
|