sgbt_nte_cds_attrdef

DDL: SGBT_NTE_CDS_ATTRDEF SQL: V_NTE_CDS_ATTDEF Type: view BASIC Package: S_GBT_NTE

Definition von Zusatzattributen

sgbt_nte_cds_attrdef is a Basic CDS View that provides data about "Definition von Zusatzattributen" in SAP S/4HANA. It reads from 1 data source (sgbt_nte_attrdef) and exposes 8 fields with key fields Objectnodetype, Notetype, AttrPosition. It has 1 association to related views. It is exposed through 7 OData services (ASQL_F0702A, ASQL_F3883, ASQL_F4443, ...). Part of development package S_GBT_NTE.

Data Sources (1)

SourceAliasJoin Type
sgbt_nte_attrdef sgbt_nte_attrdef from

Associations (1)

CardinalityTargetAliasCondition
[0..1] dd04t _data_element_text sgbt_nte_attrdef.attr_data_element = _data_element_text.rollname and _data_element_text.ddlanguage = $session.system_language and _data_element_text.as4local = 'A' and _data_element_text.as4vers = '0000'

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName V_NTE_CDS_ATTDEF view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Definition von Zusatzattributen view
VDM.viewType #BASIC view

OData Services (7)

ServiceBindingVersionContractRelease
ASQL_F0702A ASQL_F0702A C2 NOT_RELEASED
ASQL_F3883 ASQL_F3883 C2 NOT_RELEASED
ASQL_F4443 ASQL_F4443 C2 NOT_RELEASED
ASQL_F4707 ASQL_F4707 C2 NOT_RELEASED
ASQL_F4709 ASQL_F4709 C2 NOT_RELEASED
ASQL_F4710 ASQL_F4710 C2 NOT_RELEASED
ASQL_F6120 ASQL_F6120 C2 NOT_RELEASED

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Objectnodetype objectnodetype SAP Obj Node Type
KEY Notetype notetype Topic
KEY AttrPosition attr_position Position
AttrDataElement attr_data_element Data Element
AttrControlType attr_control_type UI Control Type
AttrDefaultValue attr_default_value Default Value
AttrReadOnly attr_readonly Read-only
AttrLabel _data_element_text scrtext_s ShortFieldLabel

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view sgbt_nte_cds_attrdef.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: V_NTE_CDS_ATTDEF

CREATE VIEW sgbt_nte_cds_attrdef AS
SELECT
  Objectnodetype,
  Notetype,
  attr_position AS AttrPosition,
  attr_data_element AS AttrDataElement,
  attr_control_type AS AttrControlType,
  attr_default_value AS AttrDefaultValue,
  attr_readonly AS AttrReadOnly,
  _data_element_text.scrtext_s AS AttrLabel
FROM sgbt_nte_attrdef
LEFT OUTER JOIN dd04t AS _data_element_text ON sgbt_nte_attrdef.attr_data_element = _data_element_text.rollname AND _data_element_text.ddlanguage = $session.system_language AND _data_element_text.as4local = 'A' AND _data_element_text.as4vers = '0000'  -- association [0..1]
;