I_SAFTSupTaxRegnNmbr

DDL: I_SAFTSUPTAXREGNNMBR SQL: ISAFTSUPREGN Type: view BASIC Package: GLO_FIN_IS_SAFT_GEN

SAF-T Registration Number Suppliers

I_SAFTSupTaxRegnNmbr is a Basic CDS View that provides data about "SAF-T Registration Number Suppliers" in SAP S/4HANA. It reads from 1 data source (P_SAFTSUPTAXREGNNMBR) and exposes 3 fields with key fields Supplier, Country. Part of development package GLO_FIN_IS_SAFT_GEN.

Data Sources (1)

SourceAliasJoin Type
P_SAFTSUPTAXREGNNMBR P_SAFTSUPTAXREGNNMBR from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISAFTSUPREGN view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label SAF-T Registration Number Suppliers view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY Country Country Venue: Ctry/Reg
SupplierVATRegistration SupplierVATRegistration VAT Registration No.

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_SAFTSupTaxRegnNmbr.
-- 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: ISAFTSUPREGN

CREATE VIEW I_SAFTSupTaxRegnNmbr AS
SELECT
  Supplier,
  Country,
  SupplierVATRegistration
FROM P_SAFTSUPTAXREGNNMBR
;