I_ProdAllocChkRstrcnStatus

DDL: I_PRODALLOCCHKRSTRCNSTATUS Type: view_entity BASIC Package: PAL_COMMON

Product Allocation Check Restriction Status

I_ProdAllocChkRstrcnStatus (Basic)

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

Prod Allocation Check Restriction Status · Manufacturing

I_ProdAllocChkRstrcnStatus is a Basic CDS View (Dimension) that provides data about "Product Allocation Check Restriction Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ProdAllocChkRstrcnStatus. It has 1 association to related views. Part of development package PAL_COMMON.

SAP Help Documentation

CategoryCDS Views for Product Allocation
Data CategoryDimension
StatusRestriction Status Description
Purpose
This CDS view (code list view and corresponding text view) provides a list of allowed codes for the restriction status of a product allocation sequence constraint, and the corresponding text representation. The restriction status indicates which constraint restricted the product allocation check result to quickly identify the allocation object and characteristic value combination that do not have enough quantities to fulfill the request. This CDS view provides the data to answer the following business questions: Which are the allowed codes for the restriction status of product allocation sequence constraints? 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. Important fields Important fields in this view include the following: Field Name Description PRODALLOCCHKRSTRCNSTATUS Restriction Status PRODALLOCCHKRSTRCNSTATUSDESC Restriction Status Description

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

Constraints
None

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentCA-ATP-PAL-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Provider for Value Help,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageManufacturing for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view (code list view and corresponding text view) provides a list of allowed codes for the restriction status of a product allocation sequence constraint, and the corresponding text representation. The restriction status indicates which constraint restricted the product allocation check result to quickly identify the allocation object and characteristic value combination that do not have enough quantities to fulfill the request.</p> This CDS view provides the data to answer the following business questions:<ul> <li> <p>Which are the allowed codes for the restriction status of product allocation sequence constraints?</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_ProdAllocChkRstrcnStatusT _Text

Annotations (18)

NameValueLevelField
EndUserText.label Product Allocation Check Restriction Status view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName IPACHKRSTATUS view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ObjectModel.sapObjectNodeType.name ProdAllocChkRestrictionStatus view
ObjectModel.representativeKey ProdAllocChkRstrcnStatus view
AccessControl.authorizationCheck #NOT_REQUIRED 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 ProdAllocChkRstrcnStatus Product Allocation Check Restriction Status
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_ProdAllocChkRstrcnStatus.
-- 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_ProdAllocChkRstrcnStatus AS
SELECT
  cast ( substring( domvalue_l, 1, 2 ) as prodallocchkrstrcnstatus preserving type ) AS ProdAllocChkRstrcnStatus,
  domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_ProdAllocChkRstrcnStatusT AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;