A_ControllingDebitCreditCode

DDL: A_CONTROLLINGDEBITCREDITCODE SQL: AFICODECRCODE Type: view BASIC

Controlling Debit or Credit Indicator

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

Data Sources (2)

SourceAliasJoin Type
I_ControllingDebitCreditCode I_ControllingDebitCreditCode from
tkabe tkabe left_outer

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_ControllingDebitCreditCodeT _Text $projection.ControllingDebitCreditCode = _Text.ControllingDebitCreditCode

Annotations (12)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ControllingDebitCreditCode
_Text _Text

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_ControllingDebitCreditCode.
-- 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: AFICODECRCODE

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