I_AR_SupplierCAI

DDL: I_AR_SUPPLIERCAI SQL: IARSUPPLIERCAI Type: view BASIC Package: GLO_LOG_AR

Determining Print Auth Code for Vendors

I_AR_SupplierCAI is a Basic CDS View that provides data about "Determining Print Auth Code for Vendors" in SAP S/4HANA. It reads from 1 data source (j_1apack1) and exposes 7 fields with key fields Supplier, Country, BusinessPlace, AR_OfficialDocumentClass, AR_PrintCharacter. Part of development package GLO_LOG_AR.

Data Sources (1)

SourceAliasJoin Type
j_1apack1 j_1apack1 from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IARSUPPLIERCAI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Determining Print Auth Code for Vendors view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Supplier lifnr Vendor no.
KEY Country land1 Trip Ctry/Reg
KEY BusinessPlace brnch Business Place
KEY AR_OfficialDocumentClass doccls Document Class
KEY AR_PrintCharacter j_1aprtchr Prnt. Character
KEY AR_CAIValidityDate j_1apacvd PAC Valid-To Date
AR_CAI j_1apac Print Auth. Code

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_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: IARSUPPLIERCAI

CREATE VIEW I_AR_SupplierCAI AS
SELECT
  lifnr AS Supplier,
  land1 AS Country,
  brnch AS BusinessPlace,
  doccls AS AR_OfficialDocumentClass,
  j_1aprtchr AS AR_PrintCharacter,
  j_1apacvd AS AR_CAIValidityDate,
  j_1apac AS AR_CAI
FROM j_1apack1
;