I_DFS_DisconnectedMaterialBOM

DDL: I_DFS_DISCONNECTEDMATERIALBOM SQL: IDISMATLBOM Type: view BASIC

Disconnected Material BOM

I_DFS_DisconnectedMaterialBOM is a Basic CDS View that provides data about "Disconnected Material BOM" in SAP S/4HANA. It reads from 3 data sources (makt, mast, dfs_subs_staging) and exposes 11 fields with key fields DfsDisconnectedSubscriptionID, DefenseDisconnectedObjectType, DefenseDisconnectedObjectKey.

Data Sources (3)

SourceAliasJoin Type
makt _makt inner
mast _Mast inner
dfs_subs_staging _stag from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IDISMATLBOM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label Disconnected Material BOM view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY DfsDisconnectedSubscriptionID dfs_subs_staging subscription_id Subscription Id
KEY DefenseDisconnectedObjectType dfs_subs_staging object_type Type
KEY DefenseDisconnectedObjectKey dfs_subs_staging object_key UUID
DfsDisconnectedObjectStatus dfs_subs_staging status Workflow Status
DfsDisconnectedSourceObjectID dfs_subs_staging source_object Source object
CreatedByName dfs_subs_staging created_by Version Created By
MobileUserCreationDateTime dfs_subs_staging created_ts Time Stamp
ChangedByName dfs_subs_staging changed_by User Name
MobileUserChangeDateTime dfs_subs_staging changed_ts Time Stamp
Material makt matnr Vehicle Model
MaterialName makt maktx Product Description

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_DisconnectedMaterialBOM.
-- 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: IDISMATLBOM

CREATE VIEW I_DFS_DisconnectedMaterialBOM AS
SELECT
  _stag.subscription_id AS DfsDisconnectedSubscriptionID,
  _stag.object_type AS DefenseDisconnectedObjectType,
  _stag.object_key AS DefenseDisconnectedObjectKey,
  _stag.status AS DfsDisconnectedObjectStatus,
  _stag.source_object AS DfsDisconnectedSourceObjectID,
  _stag.created_by AS CreatedByName,
  _stag.created_ts AS MobileUserCreationDateTime,
  _stag.changed_by AS ChangedByName,
  _stag.changed_ts AS MobileUserChangeDateTime,
  _makt.matnr AS Material,
  _makt.maktx AS MaterialName
FROM dfs_subs_staging AS _stag
INNER JOIN mast AS _Mast ON /* join condition not captured in parsed metadata */
INNER JOIN makt AS _makt ON /* join condition not captured in parsed metadata */
;