I_RegionalStructureCheckStatus

DDL: I_REGIONALSTRUCTURECHECKSTATUS SQL: IRGNLSTRUCCHKSTS Type: view BASIC

Regional Structure Check Status

I_RegionalStructureCheckStatus (Basic)

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

RegionalStructureCheckStatus · Cross Applications

I_RegionalStructureCheckStatus is a Basic CDS View (Dimension) that provides data about "Regional Structure Check Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field RegionalStructureCheckStatus. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Business Address Service
Purpose
This view provides supported values for RegionalStructureCheckStatus . The values and their meanings are: Value Meaning Not Checked C Checked Against City Index D Differs from City Index

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_RegionalStrucCheckStatusText _Text $projection.RegionalStructureCheckStatus = _Text.RegionalStructureCheckStatus

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IRGNLSTRUCCHKSTS view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Regional Structure Check Status view
ObjectModel.representativeKey RegionalStructureCheckStatus view
ObjectModel.sapObjectNodeType.name RegionalStructureCheckStatus view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY RegionalStructureCheckStatus City file test status
_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_RegionalStructureCheckStatus.
-- 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: IRGNLSTRUCCHKSTS

CREATE VIEW I_RegionalStructureCheckStatus AS
SELECT
  cast ( domvalue_l as ad_checkst ) AS RegionalStructureCheckStatus
FROM dd07l
LEFT OUTER JOIN I_RegionalStrucCheckStatusText AS _Text ON RegionalStructureCheckStatus = _Text.RegionalStructureCheckStatus  -- association [0..*]
;