I_DFS_FrcElmntPlndOpBasic

DDL: I_DFS_FRCELMNTPLNDOPBASIC SQL: IPLNDOPBASIC Type: view BASIC

Infotype for HRP6200

I_DFS_FrcElmntPlndOpBasic is a Basic CDS View that provides data about "Infotype for HRP6200" in SAP S/4HANA. It reads from 1 data source (hrp6200) and exposes 18 fields with key fields FrcElmntOrgPlanVersion, FrcElmntOrgType, ForceElementOrgID, FrcElmntOrgSubType, FrcElmntOrgPlngStatus.

Data Sources (1)

SourceAliasJoin Type
hrp6200 hrp6200 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPLNDOPBASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Infotype for HRP6200 view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY FrcElmntOrgPlanVersion plvar Plan version
KEY FrcElmntOrgType otype Type of Val.
KEY ForceElementOrgID objid Work Center
KEY FrcElmntOrgSubType subty Subtype
KEY FrcElmntOrgPlngStatus istat System status
KEY DfsAssgmtValdtyStrtDate begda Valid From
KEY DfsAssgmtValdtyEndDate endda Valid To
KEY PlannedRelOpVariationField varyf Variation field
KEY NumberOfForceElementOrg seqnr Tank ID
FrcElmntOrgInfoType infty Infotype
FrcElmntOrgRefInfoType ref_infty Infotype
FrcElmntOrgRefSubtype ref_subty Subtype
FrcElmntOrgValdtyRefStartDate ref_begda Start date
FrcElmntOrgValdtyRefEndDate ref_endda End Date
FrcElmntOrgRefVariationID ref_varyf Variation field
FrcElmntOrgRefSequenceNumber ref_seqnr IT record no.
FrcElmntOrgPlanOpCode plan_operation Function code
FrcElmntOrgPlanDelimitDate plan_gdate 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 I_DFS_FrcElmntPlndOpBasic.
-- 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: IPLNDOPBASIC

CREATE VIEW I_DFS_FrcElmntPlndOpBasic AS
SELECT
  plvar AS FrcElmntOrgPlanVersion,
  otype AS FrcElmntOrgType,
  objid AS ForceElementOrgID,
  subty AS FrcElmntOrgSubType,
  istat AS FrcElmntOrgPlngStatus,
  begda AS DfsAssgmtValdtyStrtDate,
  endda AS DfsAssgmtValdtyEndDate,
  varyf AS PlannedRelOpVariationField,
  seqnr AS NumberOfForceElementOrg,
  infty AS FrcElmntOrgInfoType,
  ref_infty AS FrcElmntOrgRefInfoType,
  ref_subty AS FrcElmntOrgRefSubtype,
  ref_begda AS FrcElmntOrgValdtyRefStartDate,
  ref_endda AS FrcElmntOrgValdtyRefEndDate,
  ref_varyf AS FrcElmntOrgRefVariationID,
  ref_seqnr AS FrcElmntOrgRefSequenceNumber,
  plan_operation AS FrcElmntOrgPlanOpCode,
  plan_gdate AS FrcElmntOrgPlanDelimitDate
FROM hrp6200
;