Difference between revisions of "OE.LEAF CATEGORY TYP (type)"

From dbscript Online Help
Jump to: navigation, search
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''type | OE.LEAF_CATEGORY_TYP |- |} <pre> CREATE TYPE OE.LEAF_CATEGORY_TYP FROM NOT NU...)
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
|-
+
|- valign="top"
| '''type
+
| '''Type
 
| OE.LEAF_CATEGORY_TYP
 
| OE.LEAF_CATEGORY_TYP
|-
 
 
|}
 
|}
  
 +
=== Source ===
 
<pre>
 
<pre>
CREATE TYPE OE.LEAF_CATEGORY_TYP FROM NOT NULL
+
CREATE OR REPLACE TYPE leaf_category_typ
 +
                                        UNDER category_typ
 +
    (
 +
    product_ref_list    product_ref_list_typ
 +
    , OVERRIDING MEMBER FUNCTION category_describe RETURN VARCHAR2
 +
    );TYPE BODY leaf_category_typ AS
 +
    OVERRIDING MEMBER FUNCTION  category_describe RETURN VARCHAR2 IS
 +
    BEGIN
 +
      RETURN  'leaf_category_typ';
 +
    END;
 +
  END;
 
</pre>
 
</pre>

Latest revision as of 07:15, 24 June 2010

wikibot[edit]

Type OE.LEAF_CATEGORY_TYP

Source[edit]

CREATE OR REPLACE TYPE leaf_category_typ
                                         UNDER category_typ
    (
    product_ref_list    product_ref_list_typ
    , OVERRIDING MEMBER FUNCTION  category_describe RETURN VARCHAR2
    );TYPE BODY leaf_category_typ AS
    OVERRIDING MEMBER FUNCTION  category_describe RETURN VARCHAR2 IS
    BEGIN
       RETURN  'leaf_category_typ';
    END;
   END;