diff --git a/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodename.mdx b/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodename.mdx index 9779d69cb38..5f1513c19ac 100644 --- a/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodename.mdx +++ b/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodename.mdx @@ -2,7 +2,7 @@ title: "GETNODENAME" --- -The `GETNODENAME` function provides the name of the node, depending on its type. +The `GETNODENAME` function provides the name of the node or a placeholder value that reflects the node type. ``` GETNODENAME(n DOMNODE) RETURN VARCHAR2 @@ -12,7 +12,7 @@ GETNODENAME(n DOMNODE) RETURN VARCHAR2 `n` -`DOMNode` value to provide. +`DOMNode` value you want to obtain. ## Examples diff --git a/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodevalue.mdx b/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodevalue.mdx index 8afd7f7bab0..323d2d80f06 100644 --- a/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodevalue.mdx +++ b/product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom/getnodevalue.mdx @@ -2,7 +2,7 @@ title: "GETNODEVALUE" --- -The `GETNODEVALUE` function provides the value of the node, depending on its type. +The `GETNODEVALUE` function provides the value of the node for `DOMText`-type nodes or displays NULL for other node types. ``` GETNODEVALUE(n DOMNode) RETURN VARCHAR2