I_ProdAllocCheckMethodT

DDL: I_PRODALLOCCHECKMETHODT Type: view_entity BASIC Package: PAL_COMMON

Product Allocation Check Method - Text

I_ProdAllocCheckMethodT (Basic)

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

Manufacturing

I_ProdAllocCheckMethodT is a Basic CDS View that provides data about "Product Allocation Check Method - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ProdAllocCheckMethod. It has 1 association to related views. Part of development package PAL_COMMON.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentCA-ATP-PAL-2CL
CapabilitiesData Source for Data Extraction,Language-Dependent Text,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source in SQL Select,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 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
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
EndUserText.label Product Allocation Check Method - Text view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IPACHKMETHODT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey ProdAllocCheckMethod view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY ProdAllocCheckMethod Product Allocation Check Method
ProdAllocCheckMethodDesc Product Allocation Check Method Description
DomainValue domvalue_l Values for Domains: Single Value/Lower Limit
_ProdAllocCheckMethod _ProdAllocCheckMethod
_Language _Language

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_ProdAllocCheckMethodT.
-- 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_ProdAllocCheckMethodT AS
SELECT
  cast( ddlanguage as spras preserving type ) AS Language,
  cast( substring( domvalue_l, 1, 2 ) as prodalloccheckmethod preserving type ) AS ProdAllocCheckMethod,
  cast( ddtext as prodalloccheckmethoddesc preserving type ) AS ProdAllocCheckMethodDesc,
  domvalue_l AS DomainValue
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;