I_WorkCenterResponsible

DDL: I_WORKCENTERRESPONSIBLE SQL: IPPWORKCNTRRESP Type: view BASIC Package: VDM_PP_MD_WKC

Work Center Responsible

I_WorkCenterResponsible (Basic)

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

WorkCenterResponsible · Manufacturing

I_WorkCenterResponsible is a Basic CDS View (Dimension) that provides data about "Work Center Responsible" in SAP S/4HANA. It reads from 1 data source (tc24) and exposes 4 fields with key fields Plant, WorkCenterResponsible. It has 1 association to related views. It is exposed through 3 OData services (ASQL_F2262, ASQL_F2264, ASQL_F4989). Part of development package VDM_PP_MD_WKC.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM-MD-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Data Source for Defining CDS Entities,Data Source in SQL Select,Data Source for Search,Association Target for Defining CDS Entities
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 provides the prerequisites for answering the following business questions:</p> <ul> <li> <p>Which work center responsibles are maintained in a plant?</p> </li> <li> <p>What are the names of the work center responsibles?</p> </li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tc24 tc24 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (24)

NameValueLevelField
AbapCatalog.sqlViewName IPPWORKCNTRRESP view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey WorkCenterResponsible view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Work Center Responsible view
ObjectModel.sapObjectNodeType.name WorkCenterResponsible view
Analytics.dataExtraction.enabled true view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F2262 ASQL_F2262 C2 NOT_RELEASED
ASQL_F2264 ASQL_F2264 C2 NOT_RELEASED
ASQL_F4989 ASQL_F4989 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant tc24 werks Receiving Plant
KEY WorkCenterResponsible Person Responsible for the Work Center
WorkCenterResponsibleName Work Center Responsible Name
_Plant _Plant

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_WorkCenterResponsible.
-- 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: IPPWORKCNTRRESP

CREATE VIEW I_WorkCenterResponsible AS
SELECT
  tc24.werks AS Plant,
  cast(tc24.veran as ap_veran preserving type) AS WorkCenterResponsible,
  cast(tc24.ktext as pph_veranname preserving type) AS WorkCenterResponsibleName
FROM tc24
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
;