Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

FNDEI_QASE_BLOCKINGINFO

DDL: FNDEI_QASE_BLOCKINGINFO SQL: FNDEIBQASE Type: view

Blocking View for table QASE

FNDEI_QASE_BLOCKINGINFO is a CDS View that provides data about "Blocking View for table QASE" in SAP S/4HANA. It reads from 2 data sources (FNDEI_QALS_BLOCKINGINFO, qase) and exposes 6 fields with key fields mandant, prueflos, vorglfnr, merknr, detailerg.

Data Sources (2)

SourceAliasJoin Type
FNDEI_QALS_BLOCKINGINFO FNDEI_QALS_BLOCKINGINFO left_outer
qase qase from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FNDEIBQASE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #AUTOMATED view
EndUserText.label Blocking View for table QASE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #B view
VDM.lifecycle.status #DEPRECATED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY mandant qase mandant Client
KEY prueflos qase prueflos Inspection Lot
KEY vorglfnr qase vorglfnr Node Number
KEY merknr qase merknr Characteristic
KEY detailerg qase detailerg Indiv. result
NotBlockedXthenXendasNotBlockedOnTarget

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 FNDEI_QASE_BLOCKINGINFO.
-- 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: FNDEIBQASE

CREATE VIEW FNDEI_QASE_BLOCKINGINFO AS
SELECT
  qase.mandant AS mandant,
  qase.prueflos AS prueflos,
  qase.vorglfnr AS vorglfnr,
  qase.merknr AS merknr,
  qase.detailerg AS detailerg,
  case when FNDEI_QALS_BLOCKINGINFO.NotBlocked = 'X' then 'X' end as NotBlockedOnTarget AS NotBlockedXthenXendasNotBlockedOnTarget
FROM qase
LEFT OUTER JOIN FNDEI_QALS_BLOCKINGINFO ON /* join condition not captured in parsed metadata */
;