I_Intntnlartnmbcattext

DDL: I_INTNTNLARTNMBCATTEXT Type: view BASIC

International Article Number Cat - Text

I_Intntnlartnmbcattext (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

GlobTrdItemNumberCategoryText · Database & Data Management

I_Intntnlartnmbcattext is a Basic CDS View that provides data about "International Article Number Cat - Text" in SAP S/4HANA. It reads from 1 data source (tntpb) and exposes 4 fields with key fields InternationalArticleNumberCat, Language. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-MM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Search, Language-Dependent Text, Data Source for Data Extraction
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tntpb tntpb from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Intntnlartnmbcat _InternationalArticleNumberCat $projection.InternationalArticleNumberCat = _InternationalArticleNumberCat.InternationalArticleNumberCat

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IEANCATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
EndUserText.label International Article Number Cat - Text view
ObjectModel.representativeKey InternationalArticleNumberCat view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InternationalArticleNumberCat numtp Category of International Article Number (EAN)
KEY Language tntpb spras Off. Language
IntlArticleNumberCatName ntbez Description of number category
_InternationalArticleNumberCat _InternationalArticleNumberCat

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_Intntnlartnmbcattext.
-- 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.

CREATE VIEW I_Intntnlartnmbcattext AS
SELECT
  numtp AS InternationalArticleNumberCat,
  tntpb.spras AS Language,
  ntbez AS IntlArticleNumberCatName
FROM tntpb
LEFT OUTER JOIN I_Intntnlartnmbcat AS _InternationalArticleNumberCat ON InternationalArticleNumberCat = _InternationalArticleNumberCat.InternationalArticleNumberCat  -- association [1..1]
;