I_SupplierConfControlKey

DDL: I_SUPPLIERCONFCONTROLKEY SQL: ISUPLCONFCTRLK Type: view BASIC

Control Key for Supplier Confirmation

I_SupplierConfControlKey (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Supplier Confirmation Control Key · Database & Data Management

I_SupplierConfControlKey is a Basic CDS View that provides data about "Control Key for Supplier Confirmation" in SAP S/4HANA. It reads from 1 data source (t163l) and exposes 2 fields with key field SupplierConfirmationControlKey. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentMM
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t163l t163l from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SupplierConfControlKeyText _Text _Text.SupplierConfirmationControlKey = $projection.SupplierConfirmationControlKey and _Text.Language = $session.system_language

Annotations (14)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ISUPLCONFCTRLK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.sapObjectNodeType.name SupplierConfirmationControlKey view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Control Key for Supplier Confirmation view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SupplierConfirmationControlKey bstae Confirmation Control Key
_Text _Text

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_SupplierConfControlKey.
-- 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: ISUPLCONFCTRLK

CREATE VIEW I_SupplierConfControlKey AS
SELECT
  bstae AS SupplierConfirmationControlKey
FROM t163l
LEFT OUTER JOIN I_SupplierConfControlKeyText AS _Text ON _Text.SupplierConfirmationControlKey = SupplierConfirmationControlKey AND _Text.Language = $session.system_language  -- association [0..1]
;