I_AR_ImportServiceDocumentType

DDL: I_AR_IMPORTSERVICEDOCUMENTTYPE SQL: IARDOCIMPRTSRVC Type: view BASIC

Document type category for Import of Services

I_AR_ImportServiceDocumentType is a Basic CDS View that provides data about "Document type category for Import of Services" in SAP S/4HANA. It reads from 1 data source (fiar_dtyp_catg) and exposes 5 fields with key fields Country, AccountingDocumentType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
fiar_dtyp_catg fiar_dtyp_catg from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CountryText _Text $projection.Country = _Text.Country

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IARDOCIMPRTSRVC 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
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Document type category for Import of Services view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Trip Ctry/Reg
KEY AccountingDocumentType blart Rep. rec. doc. type
IsRespForImportDeclaration impt_services Import of Services
DocumentTypeCategory doctyp_catg Document Type catg.
_Text _Text

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_ImportServiceDocumentType.
-- 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: IARDOCIMPRTSRVC

CREATE VIEW I_AR_ImportServiceDocumentType AS
SELECT
  land1 AS Country,
  blart AS AccountingDocumentType,
  impt_services AS IsRespForImportDeclaration,
  doctyp_catg AS DocumentTypeCategory
FROM fiar_dtyp_catg
LEFT OUTER JOIN I_CountryText AS _Text ON Country = _Text.Country  -- association [0..*]
;