I_BPAddressIndependentEmailTP

DDL: I_BPADDRESSINDEPENDENTEMAILTP SQL: IBPADDINDEMAILTP Type: view TRANSACTIONAL

Transactional Processing view for Address Independent Email

I_BPAddressIndependentEmailTP is a Transactional CDS View that provides data about "Transactional Processing view for Address Independent Email" in SAP S/4HANA. It reads from 1 data source (I_BPAddressIndependentEmail) and exposes 14 fields with key fields BusinessPartner, AddressID, Person, OrdinalNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BPAddressIndependentEmail BPAddressIndependentEmail from

Associations (1)

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

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IBPADDINDEMAILTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Transactional Processing view for Address Independent Email view
ObjectModel.writeEnabled true view
ObjectModel.writeDraftPersistence ADDINDEMAILTP_D view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #TRANSACTIONAL view
ObjectModel.representativeKey AddressID view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.draftEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner I_BPAddressIndependentEmail BusinessPartner Issuing Authority
KEY AddressID I_BPAddressIndependentEmail AddressID Ship-to address
KEY Person I_BPAddressIndependentEmail Person Person/ Farm/ Field
KEY OrdinalNumber I_BPAddressIndependentEmail OrdinalNumber Sequence Number
AddressIDForEdit I_BPAddressIndependentEmail AddressIDForEdit Address Number
OrdinalNumberForEdit I_BPAddressIndependentEmail OrdinalNumberForEdit Sequence Number
IsDefaultEmailAddress I_BPAddressIndependentEmail IsDefaultEmailAddress Standard addr.
EmailAddress I_BPAddressIndependentEmail EmailAddress E-Mail Address
SearchEmailAddress I_BPAddressIndependentEmail SearchEmailAddress E-Mail Address
IsHomeEmailAddress I_BPAddressIndependentEmail IsHomeEmailAddress Home Address
CommNumberIsNotUsed I_BPAddressIndependentEmail CommNumberIsNotUsed Do not use
AuthorizationGroup I_BPAddressIndependentEmail AuthorizationGroup AuthorizGroup
AddressCommunicationRemarkText I_BPAddressIndependentEmail AddressCommunicationRemarkText Notes
_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_BPAddressIndependentEmailTP.
-- 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: IBPADDINDEMAILTP

CREATE VIEW I_BPAddressIndependentEmailTP AS
SELECT
  BPAddressIndependentEmail.BusinessPartner AS BusinessPartner,
  BPAddressIndependentEmail.AddressID AS AddressID,
  BPAddressIndependentEmail.Person AS Person,
  BPAddressIndependentEmail.OrdinalNumber AS OrdinalNumber,
  BPAddressIndependentEmail.AddressIDForEdit AS AddressIDForEdit,
  BPAddressIndependentEmail.OrdinalNumberForEdit AS OrdinalNumberForEdit,
  BPAddressIndependentEmail.IsDefaultEmailAddress AS IsDefaultEmailAddress,
  BPAddressIndependentEmail.EmailAddress AS EmailAddress,
  BPAddressIndependentEmail.SearchEmailAddress AS SearchEmailAddress,
  BPAddressIndependentEmail.IsHomeEmailAddress AS IsHomeEmailAddress,
  BPAddressIndependentEmail.CommNumberIsNotUsed AS CommNumberIsNotUsed,
  BPAddressIndependentEmail.AuthorizationGroup AS AuthorizationGroup,
  BPAddressIndependentEmail.AddressCommunicationRemarkText AS AddressCommunicationRemarkText
FROM I_BPAddressIndependentEmail AS BPAddressIndependentEmail
LEFT OUTER JOIN I_BusinessPartnerTP AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [1..1]
;