I_ACMApplSettlementStatusVH

DDL: I_ACMAPPLSETTLEMENTSTATUSVH Type: view_entity BASIC

App Doc Settlement Status

I_ACMApplSettlementStatusVH is a Basic CDS View that provides data about "App Doc Settlement Status" in SAP S/4HANA. It reads from 2 data sources (tj02t, tj04) and exposes 4 fields with key fields StatusObjectCategory, SystemStatus, Language.

Data Sources (2)

SourceAliasJoin Type
tj02t Desc inner
tj04 Status from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label App Doc Settlement Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SystemStatus view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatusObjectCategory tj04 obtyp Picking area
KEY SystemStatus tj04 istat System status
KEY Language tj02t spras Off. Language
UtilitiesSystemStatusName tj02t txt30 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_ACMApplSettlementStatusVH.
-- 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.

CREATE VIEW I_ACMApplSettlementStatusVH AS
SELECT
  Status.obtyp AS StatusObjectCategory,
  Status.istat AS SystemStatus,
  Desc.spras AS Language,
  Desc.txt30 AS UtilitiesSystemStatusName
FROM tj04 AS Status
INNER JOIN tj02t AS Desc ON /* join condition not captured in parsed metadata */
;