FNDEI_CVI_CUST_LINK_FILTER

DDL: FNDEI_CVI_CUST_LINK_FILTER SQL: FNDEIFCVI_CUST_L Type: view

Filter View for table CVI_CUST_LINK

FNDEI_CVI_CUST_LINK_FILTER is a CDS View that provides data about "Filter View for table CVI_CUST_LINK" in SAP S/4HANA. It reads from 2 data sources (cvi_cust_link, FNDEI_CVI_CUST_LINK_BLOCKINGIN) and exposes 6 fields with key fields client, partner_guid.

Data Sources (2)

SourceAliasJoin Type
cvi_cust_link cvi_cust_link from
FNDEI_CVI_CUST_LINK_BLOCKINGIN FNDEI_CVI_CUST_LINK_BLOCKINGIN inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FNDEIFCVI_CUST_L view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #AUTOMATED view
EndUserText.label Filter View for table CVI_CUST_LINK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY client cvi_cust_link client Workflow definition: Client
KEY partner_guid cvi_cust_link partner_guid Partner GUID
customer cvi_cust_link customer Sold-to Party
cruser cvi_cust_link cruser User Name
crdat cvi_cust_link crdat Generation Time
crtim cvi_cust_link crtim Time

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_CVI_CUST_LINK_FILTER.
-- 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: FNDEIFCVI_CUST_L

CREATE VIEW FNDEI_CVI_CUST_LINK_FILTER AS
SELECT
  cvi_cust_link.client AS client,
  cvi_cust_link.partner_guid AS partner_guid,
  cvi_cust_link.customer AS customer,
  cvi_cust_link.cruser AS cruser,
  cvi_cust_link.crdat AS crdat,
  cvi_cust_link.crtim AS crtim
FROM cvi_cust_link
INNER JOIN FNDEI_CVI_CUST_LINK_BLOCKINGIN ON /* join condition not captured in parsed metadata */
;