P_AR_SupplierCAI

DDL: P_AR_SUPPLIERCAI SQL: PARSUPPLIERCAI Type: view CONSUMPTION Package: GLO_FIN_IS_VAT_AR

Print Authorization Code for Suppliers

P_AR_SupplierCAI is a Consumption CDS View that provides data about "Print Authorization Code for Suppliers" in SAP S/4HANA. It reads from 1 data source (P_AR_SupplierCAIValidityPerd) and exposes 6 fields with key fields Supplier, BusinessPlace, AR_OfficialDocumentClass, AR_PrintCharacter, ValidityEndDate. Part of development package GLO_FIN_IS_VAT_AR.

Data Sources (1)

SourceAliasJoin Type
P_AR_SupplierCAIValidityPerd AR_SupplierCAI from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PARSUPPLIERCAI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Supplier P_AR_SupplierCAIValidityPerd Supplier Supplier
KEY BusinessPlace P_AR_SupplierCAIValidityPerd BusinessPlace Business place
KEY AR_OfficialDocumentClass P_AR_SupplierCAIValidityPerd AR_OfficialDocumentClass
KEY AR_PrintCharacter P_AR_SupplierCAIValidityPerd AR_PrintCharacter
KEY ValidityEndDate P_AR_SupplierCAIValidityPerd ValidityEndDate ValidTo
AR_CAI P_AR_SupplierCAIValidityPerd AR_CAI

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 P_AR_SupplierCAI.
-- 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: PARSUPPLIERCAI

CREATE VIEW P_AR_SupplierCAI AS
SELECT
  AR_SupplierCAI.Supplier AS Supplier,
  AR_SupplierCAI.BusinessPlace AS BusinessPlace,
  AR_SupplierCAI.AR_OfficialDocumentClass AS AR_OfficialDocumentClass,
  AR_SupplierCAI.AR_PrintCharacter AS AR_PrintCharacter,
  AR_SupplierCAI.ValidityEndDate AS ValidityEndDate,
  AR_SupplierCAI.AR_CAI AS AR_CAI
FROM P_AR_SupplierCAIValidityPerd AS AR_SupplierCAI
;