I_AddressNonDeliverableReasonT

DDL: I_ADDRESSNONDELIVERABLEREASONT Type: view_entity BASIC

Address Non-Deliverable Reason - Text

I_AddressNonDeliverableReasonT (Basic)

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

Cross Applications

I_AddressNonDeliverableReasonT is a Basic CDS View that provides data about "Address Non-Deliverable Reason - Text" in SAP S/4HANA. It reads from 1 data source (tsad12t) and exposes 4 fields with key fields Language, AddressNonDeliverableReason.

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
tsad12t tsad12t from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey AddressNonDeliverableReason view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IBPADNONDLRSNT view
EndUserText.label Address Non-Deliverable Reason - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY AddressNonDeliverableReason undeliver Not Deliverable Flag
AddressNonDeliverableReasonTxt undeli_tx Reason for Non-Delivery (Text)
AddrNonDeliverableReasonDesc undeli_dc Non-Deliverable Reason Description

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_AddressNonDeliverableReasonT.
-- 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_AddressNonDeliverableReasonT AS
SELECT
  langu AS Language,
  undeliver AS AddressNonDeliverableReason,
  undeli_tx AS AddressNonDeliverableReasonTxt,
  undeli_dc AS AddrNonDeliverableReasonDesc
FROM tsad12t
;