I_AuthzdPosOrgStrucAssgdInfo

DDL: I_AUTHZDPOSORGSTRUCASSGDINFO SQL: IAUTHPOSFE Type: view COMPOSITE

Position FMPO FE Org Structure

I_AuthzdPosOrgStrucAssgdInfo is a Composite CDS View that provides data about "Position FMPO FE Org Structure" in SAP S/4HANA. It reads from 1 data source (I_DFS_ObjStructureRelationship) and exposes 40 fields with key field DfsAssgmtUUID.

Data Sources (1)

SourceAliasJoin Type
I_DFS_ObjStructureRelationship _ObjStructureRelationship from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IAUTHPOSFE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label Position FMPO FE Org Structure view

Fields (40)

KeyFieldSource TableSource FieldDescription
KEY DfsAssgmtUUID DfsAssgmtUUID Assigment GUID
ForceElementOrgSrceID DfsObjectID Object ID
DfsPositionID DfsPositionRelatedObjectID ID rel.object
DfsAssgmtUsageType DfsAssgmtUsageType Usage Type
DfsObjectValdtyStartDate DfsObjectValdtyStartDate Start date
DfsObjectValdtyEndDate DfsObjectValdtyEndDate End Date
DfsPositionRelatedObjectType DfsPositionRelatedObjectType Rel.obj.type
DfsObjectPlngStatus DfsObjectPlngStatus Planning status
DfsPositionSourceUUID DfsPositionSourceUUID GUID 32
FlxblMatlPlngObjectUUID FlxblMatlPlngObjectUUID FMPO UUID
DfsPositionSourceID DfsPositionSourceID Object ID
FlxblMatlPlngObjectID FlxblMatlPlngObjectID FMPO ID
FlxblMatlPlngObjVariantUUID FlxblMatlPlngObjVariantUUID Variant UUID
FlxblMatlPlngObjVariantID FlxblMatlPlngObjVariantID Variant ID
DfsObjectRelshpBtwnObj DfsObjectRelshpBtwnObj Relnship
DfsAssgmtSourceType DfsAssgmtSourceType Source Object Type
DfsAssgmtType DfsAssgmtType Assignment Type
DfsAssgmtStatusCode DfsAssgmtStatusCode Status
DfsAssgmtValdtyStrtDate DfsAssgmtValdtyStrtDate Valid From (Date)
DfsAssgmtValdtyEndDate DfsAssgmtValdtyEndDate Valid To (Date)
DfsAssgmtSourceObjectType DfsAssgmtSourceObjectType Source Type
DfsAssgmtNmbrOfAssgdMatl Quantity
DfsAssgmtMinNmbrOfAssgdMatl Minimum Quantity
DfsAssgmtMaxNmbrOfAssgdMatl Maximum Quantity
DfsAssgmtMaterialIndicatorCode DfsAssgmtMaterialIndicatorCode Material Indicator
DfsAssgmtMaterialIndicatorDesc DfsAssgmtMaterialIndicatorDesc
DfsAssgmtCorrectionValue DfsAssgmtCorrectionValue Adjustment Value
DfsAssgmtMaterialCategory DfsAssgmtMaterialCategory Matl Category
DfsAssgmtMaterialCategoryDesc DfsAssgmtMaterialCategoryDesc
DfsAssgmtMaterialWeightingRate DfsAssgmtMaterialWeightingRate Weighting Factor
DfsAssgmtIsUsedForMassMatlPlng _UniversalAssignment DfsAssgmtIsUsedForMassMatlPlng Mass Creation Ind
_ObjHeader _ObjHeader
_AssignmentType _AssignmentType
_MaterialCategory _MaterialCategory
_MaterialIndicator _MaterialIndicator
_PositionObject _PositionObject
_UsageType _UsageType
_ValdtyEndDate _ValdtyEndDate
_ValdtyStrtDate _ValdtyStrtDate
_StatusAttributes _StatusAttributes

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_AuthzdPosOrgStrucAssgdInfo.
-- 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: IAUTHPOSFE

CREATE VIEW I_AuthzdPosOrgStrucAssgdInfo AS
SELECT
  DfsAssgmtUUID,
  DfsObjectID AS ForceElementOrgSrceID,
  DfsPositionRelatedObjectID AS DfsPositionID,
  DfsAssgmtUsageType,
  DfsObjectValdtyStartDate,
  DfsObjectValdtyEndDate,
  DfsPositionRelatedObjectType,
  DfsObjectPlngStatus,
  DfsPositionSourceUUID,
  FlxblMatlPlngObjectUUID,
  DfsPositionSourceID,
  FlxblMatlPlngObjectID,
  FlxblMatlPlngObjVariantUUID,
  FlxblMatlPlngObjVariantID,
  DfsObjectRelshpBtwnObj,
  DfsAssgmtSourceType,
  DfsAssgmtType,
  DfsAssgmtStatusCode,
  DfsAssgmtValdtyStrtDate,
  DfsAssgmtValdtyEndDate,
  DfsAssgmtSourceObjectType,
  cast(DfsAssgmtNmbrOfAssgdMatl as abap.int8) AS DfsAssgmtNmbrOfAssgdMatl,
  cast(DfsAssgmtMinNmbrOfAssgdMatl as abap.int8) AS DfsAssgmtMinNmbrOfAssgdMatl,
  cast(DfsAssgmtMaxNmbrOfAssgdMatl as abap.int8) AS DfsAssgmtMaxNmbrOfAssgdMatl,
  DfsAssgmtMaterialIndicatorCode,
  DfsAssgmtMaterialIndicatorDesc,
  DfsAssgmtCorrectionValue,
  DfsAssgmtMaterialCategory,
  DfsAssgmtMaterialCategoryDesc,
  DfsAssgmtMaterialWeightingRate,
  _UniversalAssignment.DfsAssgmtIsUsedForMassMatlPlng AS DfsAssgmtIsUsedForMassMatlPlng
FROM I_DFS_ObjStructureRelationship AS _ObjStructureRelationship
;