A_ControllingDebitCreditCodeT

DDL: A_CONTROLLINGDEBITCREDITCODET SQL: AFICODECRCODET Type: view BASIC

Controlling Debit or Credit Indicator Text

A_ControllingDebitCreditCodeT is a Basic CDS View that provides data about "Controlling Debit or Credit Indicator Text" in SAP S/4HANA. It reads from 2 data sources (I_ControllingDebitCreditCodeT, tkabe) and exposes 4 fields with key fields ControllingDebitCreditCode, Language. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_ControllingDebitCreditCodeT I_ControllingDebitCreditCodeT from
tkabe tkabe left_outer

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_ControllingDebitCreditCode _ControllingDebitCreditCode $projection.ControllingDebitCreditCode = _ControllingDebitCreditCode.ControllingDebitCreditCode

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName AFICODECRCODET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Controlling Debit or Credit Indicator Text view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ControllingDebitCreditCode
KEY Language Language Report Text Language
ControllingDebitCreditCodeName ControllingDebitCreditCodeName Short text
_ControllingDebitCreditCode _ControllingDebitCreditCode

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_ControllingDebitCreditCodeT.
-- 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: AFICODECRCODET

CREATE VIEW A_ControllingDebitCreditCodeT AS
SELECT
  cast(tkabe.beknz_ld as co_belkz preserving type ) AS ControllingDebitCreditCode,
  Language,
  ControllingDebitCreditCodeName
FROM I_ControllingDebitCreditCodeT
LEFT OUTER JOIN tkabe ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN A_ControllingDebitCreditCode AS _ControllingDebitCreditCode ON ControllingDebitCreditCode = _ControllingDebitCreditCode.ControllingDebitCreditCode  -- association [1..1]
;