I_FlxMtPlObjModelUnassigned

DDL: I_FLXMTPLOBJMODELUNASSIGNED SQL: IFLXMODUNASSIGN Type: view COMPOSITE

View to get fmpos for materials

I_FlxMtPlObjModelUnassigned is a Composite CDS View that provides data about "View to get fmpos for materials" in SAP S/4HANA. It reads from 2 data sources (I_FlxMtPlObjVarModel, I_DFS_UnrstrcdStkOnPlntStorLoc) and exposes 4 fields with key fields Material, Plant, StorageLocation.

Data Sources (2)

SourceAliasJoin Type
I_FlxMtPlObjVarModel _FlxMtPlObjVarModel from
I_DFS_UnrstrcdStkOnPlntStorLoc _UnrstrcdStkOnPlntStorLoc inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLXMODUNASSIGN 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 View to get fmpos for materials view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
FlxblMatlPlngObjectUUID I_FlxMtPlObjVarModel FlxblMatlPlngObjectUUID FMPO UUID

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_FlxMtPlObjModelUnassigned.
-- 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: IFLXMODUNASSIGN

CREATE VIEW I_FlxMtPlObjModelUnassigned AS
SELECT
  Material,
  Plant,
  StorageLocation,
  _FlxMtPlObjVarModel.FlxblMatlPlngObjectUUID AS FlxblMatlPlngObjectUUID
FROM I_FlxMtPlObjVarModel AS _FlxMtPlObjVarModel
INNER JOIN I_DFS_UnrstrcdStkOnPlntStorLoc AS _UnrstrcdStkOnPlntStorLoc ON /* join condition not captured in parsed metadata */
;