A_CnsldtnDebitCreditCodeT

DDL: A_CNSLDTNDEBITCREDITCODET SQL: ACSDEBITCREDITT Type: view BASIC

Debit Credit Text

A_CnsldtnDebitCreditCodeT is a Basic CDS View that provides data about "Debit Credit Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDebitCreditCodeText) and exposes 3 fields with key fields Language, DebitCreditCode.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnDebitCreditCodeText I_CnsldtnDebitCreditCodeText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSDEBITCREDITT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Debit Credit Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY DebitCreditCode DebitCreditCode Single-Character Flag
DebitCreditCodeName

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 A_CnsldtnDebitCreditCodeT.
-- 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: ACSDEBITCREDITT

CREATE VIEW A_CnsldtnDebitCreditCodeT AS
SELECT
  Language,
  DebitCreditCode,
  cast(DebitCreditCodeName as fincs_drcrk_t preserving type) AS DebitCreditCodeName
FROM I_CnsldtnDebitCreditCodeText
;