C_SupplierActivityDescription

DDL: C_SUPPLIERACTIVITYDESCRIPTION SQL: CSUPLRACTYDESC Type: view CONSUMPTION

Supplier Activity Description

C_SupplierActivityDescription is a Consumption CDS View that provides data about "Supplier Activity Description" in SAP S/4HANA. It reads from 1 data source (I_SuplrActyDescription) and exposes 3 fields with key field SuplrActyUUID.

Data Sources (1)

SourceAliasJoin Type
I_SuplrActyDescription I_SuplrActyDescription from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CSUPLRACTYDESC view
EndUserText.label Supplier Activity Description view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SuplrActyUUID SuplrActyUUID
SuplrActyDescription SuplrActyDescription
Language Report Text Language

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 C_SupplierActivityDescription.
-- 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: CSUPLRACTYDESC

CREATE VIEW C_SupplierActivityDescription AS
SELECT
  SuplrActyUUID,
  SuplrActyDescription,
  cast(Language as /srmsmc/language preserving type) AS Language
FROM I_SuplrActyDescription
;