I_ApplicationStatusValueHelp

DDL: I_APPLICATIONSTATUSVALUEHELP SQL: IAPPLDOCSTAT Type: view BASIC

Application Status Details

I_ApplicationStatusValueHelp is a Basic CDS View that provides data about "Application Status Details" in SAP S/4HANA. It reads from 2 data sources (tj02t, tj04) and exposes 2 fields with key field ContractApplicationStatus.

Data Sources (2)

SourceAliasJoin Type
tj02t Desc inner
tj04 Status from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IAPPLDOCSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.supportedCapabilities #CDS_MODELING_DATA_SOURCE view
EndUserText.label Application Status Details view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ContractApplicationStatus tj04 istat System status
TrdgContrApplStsName 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_ApplicationStatusValueHelp.
-- 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: IAPPLDOCSTAT

CREATE VIEW I_ApplicationStatusValueHelp AS
SELECT
  Status.istat AS ContractApplicationStatus,
  Desc.txt30 AS TrdgContrApplStsName
FROM tj04 AS Status
INNER JOIN tj02t AS Desc ON /* join condition not captured in parsed metadata */
;