C_DFS_PosPlndOpTP

DDL: C_DFS_POSPLNDOPTP SQL: CPOSPLNDOPTP Type: view CONSUMPTION

Position Planned Operation - TP

C_DFS_PosPlndOpTP is a Consumption CDS View that provides data about "Position Planned Operation - TP" in SAP S/4HANA. It reads from 1 data source (I_DFS_FrcElmntPlndOp) and exposes 18 fields with key fields FrcElmntOrgPlanVersion, FrcElmntOrgType, ForceElementOrgID, FrcElmntOrgSubType, FrcElmntOrgPlngStatus.

Data Sources (1)

SourceAliasJoin Type
I_DFS_FrcElmntPlndOp I_DFS_FrcElmntPlndOp from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPOSPLNDOPTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Position Planned Operation - TP view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY FrcElmntOrgPlanVersion FrcElmntOrgPlanVersion Plan version
KEY FrcElmntOrgType FrcElmntOrgType Object type
KEY ForceElementOrgID ForceElementOrgID Object ID Processor
KEY FrcElmntOrgSubType FrcElmntOrgSubType Subtype
KEY FrcElmntOrgPlngStatus FrcElmntOrgPlngStatus Planning status
KEY DfsAssgmtValdtyStrtDate DfsAssgmtValdtyStrtDate Valid From (Date)
KEY DfsAssgmtValdtyEndDate DfsAssgmtValdtyEndDate Valid To (Date)
KEY PlannedRelOpVariationField PlannedRelOpVariationField
KEY NumberOfForceElementOrg NumberOfForceElementOrg IT record no.
FrcElmntOrgInfoType FrcElmntOrgInfoType Infotype
FrcElmntOrgRefInfoType FrcElmntOrgRefInfoType
FrcElmntOrgRefSubtype FrcElmntOrgRefSubtype
FrcElmntOrgValdtyRefStartDate FrcElmntOrgValdtyRefStartDate
FrcElmntOrgValdtyRefEndDate FrcElmntOrgValdtyRefEndDate
FrcElmntOrgRefVariationID FrcElmntOrgRefVariationID
FrcElmntOrgRefSequenceNumber FrcElmntOrgRefSequenceNumber
FrcElmntOrgPlanOpCode FrcElmntOrgPlanOpCode
FrcElmntOrgPlanDelimitDate FrcElmntOrgPlanDelimitDate Delimit date

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 C_DFS_PosPlndOpTP.
-- 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: CPOSPLNDOPTP

CREATE VIEW C_DFS_PosPlndOpTP AS
SELECT
  FrcElmntOrgPlanVersion,
  FrcElmntOrgType,
  ForceElementOrgID,
  FrcElmntOrgSubType,
  FrcElmntOrgPlngStatus,
  DfsAssgmtValdtyStrtDate,
  DfsAssgmtValdtyEndDate,
  PlannedRelOpVariationField,
  NumberOfForceElementOrg,
  FrcElmntOrgInfoType,
  FrcElmntOrgRefInfoType,
  FrcElmntOrgRefSubtype,
  FrcElmntOrgValdtyRefStartDate,
  FrcElmntOrgValdtyRefEndDate,
  FrcElmntOrgRefVariationID,
  FrcElmntOrgRefSequenceNumber,
  FrcElmntOrgPlanOpCode,
  FrcElmntOrgPlanDelimitDate
FROM I_DFS_FrcElmntPlndOp
;