Fclm_Bam_Doc_Chara_V

DDL: FCLM_BAM_DOC_CHARA_V SQL: VFCLMDCHARAV Type: view

Chara Value of Bank Account Document

Fclm_Bam_Doc_Chara_V is a CDS View that provides data about "Chara Value of Bank Account Document" in SAP S/4HANA. It reads from 2 data sources (ausp, Fclm_Bam_Doc_Chara) and exposes 15 fields with key fields mandt, objek, atinn, atzhl.

Data Sources (2)

SourceAliasJoin Type
ausp a from
Fclm_Bam_Doc_Chara b inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName VFCLMDCHARAV view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Chara Value of Bank Account Document view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY mandt ausp mandt Editing Client
KEY objek ausp objek Object
KEY atinn ausp atinn Internal char.
KEY atzhl ausp atzhl Int counter
dokar
doknr
dokvr
doktl
atnam Fclm_Bam_Doc_Chara atnam Characteristic
mafid ausp mafid Record type
klart ausp klart Class Type
adzhl ausp adzhl Int. counter
atwrt ausp atwrt Char. Value
atflv ausp atflv Value from
atflb ausp atflb Value to

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 Fclm_Bam_Doc_Chara_V.
-- 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: VFCLMDCHARAV

CREATE VIEW Fclm_Bam_Doc_Chara_V AS
SELECT
  a.mandt AS mandt,
  a.objek AS objek,
  a.atinn AS atinn,
  a.atzhl AS atzhl,
  substring(a.objek,1,3) AS dokar,
  substring(a.objek,4,25) AS doknr,
  substring(a.objek,29,2) AS dokvr,
  substring(a.objek,31,3) AS doktl,
  b.atnam AS atnam,
  a.mafid AS mafid,
  a.klart AS klart,
  a.adzhl AS adzhl,
  a.atwrt AS atwrt,
  a.atflv AS atflv,
  a.atflb AS atflb
FROM ausp AS a
INNER JOIN Fclm_Bam_Doc_Chara AS b ON /* join condition not captured in parsed metadata */
;