I_SuplrActyTaskConstcyStatus

DDL: I_SUPLRACTYTASKCONSTCYSTATUS SQL: ISUPACTTSKCONSST Type: view BASIC

Consistency Status of Suplr Acty Task

I_SuplrActyTaskConstcyStatus (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_SuplrActyTaskConstcyStatus is a Basic CDS View that provides data about "Consistency Status of Suplr Acty Task" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SuplrActyTaskConsistencyStatus. It has 1 association to related views.

SAP Help Documentation

CategoryProcurement-Related Task
StatusReleased
Purpose
This view provides supported values for SUPLRACTYTASKCONSTCYSTATUS. The values and their meanings are: Two-Value Code for Consistency Status Fixed Value Description 01 Check Pending 02 Inconsistent 03 Consistent

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentSLC-ACT
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SuplrActyTaskConstcyStatusT _SuplrActyTaskConstcyStatusT $projection.SuplrActyTaskConsistencyStatus = _SuplrActyTaskConstcyStatusT.SuplrActyTaskConsistencyStatus

Annotations (12)

NameValueLevelField
EndUserText.label Consistency Status of Suplr Acty Task view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SuplrActyTaskConsistencyStatus view
AbapCatalog.sqlViewName ISUPACTTSKCONSST view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SuplrActyTaskConsistencyStatus Three-Value Code for Consistency Status
_SuplrActyTaskConstcyStatusT _SuplrActyTaskConstcyStatusT

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_SuplrActyTaskConstcyStatus.
-- 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: ISUPACTTSKCONSST

CREATE VIEW I_SuplrActyTaskConstcyStatus AS
SELECT
  cast ( substring( domvalue_l, 1, 2 ) as /srmsmc/3val_consistency_stcd preserving type) AS SuplrActyTaskConsistencyStatus
FROM dd07l
LEFT OUTER JOIN I_SuplrActyTaskConstcyStatusT AS _SuplrActyTaskConstcyStatusT ON SuplrActyTaskConsistencyStatus = _SuplrActyTaskConstcyStatusT.SuplrActyTaskConsistencyStatus  -- association [0..*]
;