I_ProdAllocChkDataSnpshtType

DDL: I_PRODALLOCCHKDATASNPSHTTYPE SQL: IPACHKSNPSHT Type: view BASIC

Product Allocation Check Data Snapshot Type

I_ProdAllocChkDataSnpshtType (Basic)

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

Prod Allocation Check Data Snapshot Type · Manufacturing

I_ProdAllocChkDataSnpshtType is a Basic CDS View (Dimension) that provides data about "Product Allocation Check Data Snapshot Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ProdAllocChkDataSnapshotType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Product Allocation
Data CategoryDimension
StatusReleased
Purpose
This CDS view (code list view and corresponding text view) provides a list of allowed codes for the snapshot type of the product allocation check result and the corresponding text representation. The snapshot type indicates whether the confirmation result is shown as it would be directly after the product allocation check of the constraint (After Check), or the final confirmation result including all updates made by other basic methods to the confirmation situation (After Update). Updates can be caused, for example, by a product availability check or by users, when adapting the confirmation after the ATP check in the delivery proposal screen. This CDS view provides the data to answer the following business questions: What are the allowed codes for the product allocation check data snapshot type? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Not applicable

Structure
Fields used for filtering The views do not have any filters. Further important fields Important fields in this view include the following: Field Name Description PRODALLOCCHKDATASNAPSHOTTYPE Check Data Snapshot Type PRODALLOCCHKDATASNPSHTTYPEDESC Data Snapshot Description

SAP Business Warehouse (SAP BW) Extraction
Data extraction type Full Corresponding DataSource (Extractor) 'IPACHKSNPSHT'

Constraints
None

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentCA-ATP-PAL
CapabilitiesAnalytical Dimension, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Data Extraction, Data Provider for Value Help, Data Source for Search
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view (code list view and corresponding text view) provides a list of allowed codes for the snapshot type of the product allocation check result and the corresponding text representation. The snapshot type indicates whether the confirmation result is shown as it would be directly after the product allocation check of the constraint (After Check), or the final confirmation result including all updates made by other basic methods to the confirmation situation (After Update). Updates can be caused, for example, by a product availability check or by users, when adapting the confirmation after the ATP check in the delivery proposal screen.</p> This CDS view provides the data to answer the following business questions:<ul> <li><p>What are the allowed codes for the product allocation check data snapshot type?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProdAllocChkDataSnpshtTypeT _Text

Annotations (20)

NameValueLevelField
EndUserText.label Product Allocation Check Data Snapshot Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ObjectModel.sapObjectNodeType.name ProdAllocCheckDataSnapshotType view
ObjectModel.representativeKey ProdAllocChkDataSnapshotType view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IPACHKSNPSHT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProdAllocChkDataSnapshotType Product Allocation Check Data Snapshot Type
DomainValue domvalue_l Values for Domains: Single Value/Lower Limit
_Text _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_ProdAllocChkDataSnpshtType.
-- 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: IPACHKSNPSHT

CREATE VIEW I_ProdAllocChkDataSnpshtType AS
SELECT
  cast ( substring( domvalue_l, 1, 2 ) as prodallocchkdatasnapshottype preserving type ) AS ProdAllocChkDataSnapshotType,
  domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_ProdAllocChkDataSnpshtTypeT AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;