Fac_Ad_Cds_T030b

DDL: FAC_AD_CDS_T030B SQL: FACADV_T030B Type: view

t030b with text

Fac_Ad_Cds_T030b is a CDS View that provides data about "t030b with text" in SAP S/4HANA. It reads from 4 data sources (tbslt, tbslt, t074t, t030b) and exposes 7 fields with key field ktosl.

Data Sources (4)

SourceAliasJoin Type
tbslt credit_text left_outer
tbslt debit_text left_outer
t074t indicator_text left_outer
t030b t030b from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FACADV_T030B view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label t030b with text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ktosl t030b ktosl Transaction
bschs t030b bschs Debit
bschh t030b bschh Credit
umskz t030b umskz Special G/L Ind
bschs_text tbslt ltext Text exists
bschh_text tbslt ltext Text exists
umskz_text t074t ltext Text exists

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 Fac_Ad_Cds_T030b.
-- 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: FACADV_T030B

CREATE VIEW Fac_Ad_Cds_T030b AS
SELECT
  t030b.ktosl AS ktosl,
  t030b.bschs AS bschs,
  t030b.bschh AS bschh,
  t030b.umskz AS umskz,
  debit_text.ltext AS bschs_text,
  credit_text.ltext AS bschh_text,
  indicator_text.ltext AS umskz_text
FROM t030b
LEFT OUTER JOIN tbslt AS debit_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tbslt AS credit_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN t074t AS indicator_text ON /* join condition not captured in parsed metadata */
;