/ISDFPS/wo_cp_equi

DDL: /ISDFPS/WO_CP_EQUI SQL: /ISDFPS/MCP_EQUI Type: view

Equipments without Change Protection

/ISDFPS/wo_cp_equi is a CDS View that provides data about "Equipments without Change Protection" in SAP S/4HANA. It reads from 2 data sources (/isdfps/pm_cp, equi) and exposes 1 field.

Data Sources (2)

SourceAliasJoin Type
/isdfps/pm_cp cp left_outer
equi eq from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName /ISDFPS/MCP_EQUI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.dataMaintenance #LIMITED view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality D view
ObjectModel.usageType.dataClass MIXED view
ObjectModel.usageType.sizeCategory S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Equipments without Change Protection view

Fields (1)

KeyFieldSource TableSource FieldDescription
equnr equi equnr Equipment

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 /ISDFPS/wo_cp_equi.
-- 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: /ISDFPS/MCP_EQUI

CREATE VIEW /ISDFPS/wo_cp_equi AS
SELECT
  eq.equnr AS equnr
FROM equi AS eq
LEFT OUTER JOIN /isdfps/pm_cp AS cp ON /* join condition not captured in parsed metadata */
;