I_BPAddrDepdntIntlLocNumberTP

DDL: I_BPADDRDEPDNTINTLLOCNUMBERTP SQL: IBUPADDRILNTP Type: view TRANSACTIONAL

Addr Dep InterLocNum

I_BPAddrDepdntIntlLocNumberTP is a Transactional CDS View that provides data about "Addr Dep InterLocNum" in SAP S/4HANA. It reads from 1 data source (I_BPAddrDepdntIntlLocNumber) and exposes 10 fields with key fields BusinessPartner, AddressID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BPAddrDepdntIntlLocNumber BusinessPartnerAddrDepILN from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartnerTP _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBUPADDRILNTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Addr Dep InterLocNum view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #TRANSACTIONAL view
ObjectModel.writeDraftPersistence BUPADDRILN_D view
Search.searchable true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner I_BPAddrDepdntIntlLocNumber BusinessPartner Issuing Authority
KEY AddressID I_BPAddrDepdntIntlLocNumber AddressID Ship-to address
InternationalLocationNumber1 I_BPAddrDepdntIntlLocNumber InternationalLocationNumber1 Location no. 1
InternationalLocationNumber2 I_BPAddrDepdntIntlLocNumber InternationalLocationNumber2 Location no. 2
InternationalLocationNumber3 I_BPAddrDepdntIntlLocNumber InternationalLocationNumber3 Check digit
AuthorizationGroup I_BPAddrDepdntIntlLocNumber AuthorizationGroup AuthorizGroup
BusinessPartnerForEdit _BusinessPartner BusinessPartner Issuing Authority
AddressIDForEdit I_BPAddrDepdntIntlLocNumber AddressID Ship-to address
FormattedAddress
_BusinessPartner _BusinessPartner

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_BPAddrDepdntIntlLocNumberTP.
-- 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: IBUPADDRILNTP

CREATE VIEW I_BPAddrDepdntIntlLocNumberTP AS
SELECT
  BusinessPartnerAddrDepILN.BusinessPartner AS BusinessPartner,
  BusinessPartnerAddrDepILN.AddressID AS AddressID,
  BusinessPartnerAddrDepILN.InternationalLocationNumber1 AS InternationalLocationNumber1,
  BusinessPartnerAddrDepILN.InternationalLocationNumber2 AS InternationalLocationNumber2,
  BusinessPartnerAddrDepILN.InternationalLocationNumber3 AS InternationalLocationNumber3,
  BusinessPartnerAddrDepILN.AuthorizationGroup AS AuthorizationGroup,
  _BusinessPartner.BusinessPartner AS BusinessPartnerForEdit,
  BusinessPartnerAddrDepILN.AddressID AS AddressIDForEdit,
  cast( ' ' as abap.sstring( 260 ) ) AS FormattedAddress
FROM I_BPAddrDepdntIntlLocNumber AS BusinessPartnerAddrDepILN
LEFT OUTER JOIN I_BusinessPartnerTP AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [1..1]
;