I_CARecnclnSDSystTypeText

DDL: I_CARECNCLNSDSYSTTYPETEXT SQL: ICARECNSDSTTEXT Type: view BASIC

Reconcile SD System Type Text

I_CARecnclnSDSystTypeText is a Basic CDS View that provides data about "Reconcile SD System Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields CARecnclnSDSystType, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ICARECNSDSTTEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey CARecnclnSDSystType view
EndUserText.label Reconcile SD System Type Text view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CARecnclnSDSystType
KEY Language ddlanguage Lang.
CARecnclnSDSystTypeText ddtext Short text
_Language _Language

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 I_CARecnclnSDSystTypeText.
-- 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: ICARECNSDSTTEXT

CREATE VIEW I_CARecnclnSDSystTypeText AS
SELECT
  cast ( substring( domvalue_l, 1, 2 ) as casdsystype_kk ) AS CARecnclnSDSystType,
  ddlanguage AS Language,
  ddtext AS CARecnclnSDSystTypeText
FROM dd07t
;