R_BDTSTableFieldStructure

DDL: R_BDTSTABLEFIELDSTRUCTURE SQL: RBDTSTAB Type: view BASIC

BDTS Table field structure

R_BDTSTableFieldStructure is a Basic CDS View that provides data about "BDTS Table field structure" in SAP S/4HANA. It reads from 1 data source (dd03l) and exposes 10 fields with key fields DatabaseTable, DatabaseTableFieldName, DatabaseTableFieldPositionVal.

Data Sources (1)

SourceAliasJoin Type
dd03l dd03l from

Annotations (12)

NameValueLevelField
EndUserText.label BDTS Table field structure view
AbapCatalog.sqlViewName RBDTSTAB view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions false view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY DatabaseTable tabname Table/Constant Value
KEY DatabaseTableFieldName fieldname UI Group FieldName
KEY DatabaseTableFieldPositionVal position Test Position
DatabaseTableFieldIsKeyField keyflag Key field
ABAPDataElement rollname Repr. Data Elem
ABAPDomain domname Domain
DatabaseTableCheckTableName checktable Table Name
BDTSTableFieldABAPDataType Field Type
ABAPOutputLengthValue leng No. of Characters
ABAPDictionaryDataTypeDecimals decimals Rounding Places

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 R_BDTSTableFieldStructure.
-- 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: RBDTSTAB

CREATE VIEW R_BDTSTableFieldStructure AS
SELECT
  tabname AS DatabaseTable,
  fieldname AS DatabaseTableFieldName,
  position AS DatabaseTableFieldPositionVal,
  keyflag AS DatabaseTableFieldIsKeyField,
  rollname AS ABAPDataElement,
  domname AS ABAPDomain,
  checktable AS DatabaseTableCheckTableName,
  cast ( datatype as bdts_abap_datatype ) AS BDTSTableFieldABAPDataType,
  leng AS ABAPOutputLengthValue,
  decimals AS ABAPDictionaryDataTypeDecimals
FROM dd03l
;