I_DFS_DisconnectedMaterialBOM
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)
| Source | Alias | Join Type |
|---|---|---|
| makt | _makt | inner |
| mast | _Mast | inner |
| dfs_subs_staging | _stag | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 */
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA