I_WorkAssignmentOrglDetail

DDL: I_WORKASSIGNMENTORGLDETAIL Type: view_entity BASIC

Workforce person organizational details

I_WorkAssignmentOrglDetail is a Basic CDS View that provides data about "Workforce person organizational details" in SAP S/4HANA. It reads from 1 data source (pa0001) and exposes 4 fields with key fields WorkAssignment, WorkAssignmentStartDate.

Data Sources (1)

SourceAliasJoin Type
pa0001 pa0001 from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Workforce person organizational details view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WorkAssignment pernr Personnel no.
KEY WorkAssignmentStartDate begda Valid From
CompanyCode bukrs Value
WrkAssgmtOrglDetailsJobCode stell Job

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_WorkAssignmentOrglDetail.
-- 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_WorkAssignmentOrglDetail AS
SELECT
  pernr AS WorkAssignment,
  begda AS WorkAssignmentStartDate,
  bukrs AS CompanyCode,
  stell AS WrkAssgmtOrglDetailsJobCode
FROM pa0001
;