I_CATransfStatusFromSDBillgVH

DDL: I_CATRANSFSTATUSFROMSDBILLGVH SQL: ICATRANSFSTSSDVH Type: view BASIC

Transfer Status From SD Billg

I_CATransfStatusFromSDBillgVH is a Basic CDS View that provides data about "Transfer Status From SD Billg" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field CATransferStatusFromSDBilling.

Data Sources (1)

SourceAliasJoin Type
dd07l l from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICATRANSFSTSSDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey CATransferStatusFromSDBilling view
Search.searchable true view
Consumption.ranked true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Transfer Status From SD Billg view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CATransferStatusFromSDBilling Transfer Status
DomainValue dd07l domvalue_l Lower Value
CATransfStatusFromSDBillgText t ddtext Short 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 I_CATransfStatusFromSDBillgVH.
-- 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: ICATRANSFSTSSDVH

CREATE VIEW I_CATransfStatusFromSDBillgVH AS
SELECT
  cast ( substring( l.domvalue_l, 1, 1 ) as docstat_kk ) AS CATransferStatusFromSDBilling,
  l.domvalue_l AS DomainValue,
  t.ddtext AS CATransfStatusFromSDBillgText
FROM dd07l AS l
;