I_JP_InvcSmmryRcpntMultiAddrVH

DDL: I_JP_INVCSMMRYRCPNTMULTIADDRVH Type: view_entity COMPOSITE Package: GLO_FIN_JP

Recipients by Multiple Addresses

I_JP_InvcSmmryRcpntMultiAddrVH is a Composite CDS View that provides data about "Recipients by Multiple Addresses" in SAP S/4HANA. It reads from 2 data sources (I_BPCustomerMultiAddrVH, P_JP_invcsummaryhierarch) and exposes 21 fields with key fields AddressID, BusinessPartner, Customer. Part of development package GLO_FIN_JP.

Data Sources (2)

SourceAliasJoin Type
I_BPCustomerMultiAddrVH _Customer from
P_JP_invcsummaryhierarch _Isjphierarchy inner

Annotations (14)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Analytics.technicalName IJPINVCSMMRYRCPNTMULTIADDRVH view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Customer view
Search.searchable true view
EndUserText.label Recipients by Multiple Addresses view
Consumption.ranked true view
Feature SW:Q2C_MULTIPLE_BP_ADDRESSES3, SW:Q2C_MULTIPLE_BP_ADDRESSES2 view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY AddressID I_BPCustomerMultiAddrVH AddressID Ship-to address
KEY BusinessPartner I_BPCustomerMultiAddrVH BusinessPartner Issuing Authority
KEY Customer I_BPCustomerMultiAddrVH Customer Sold-to Party
CompanyCode P_JP_invcsummaryhierarch bukrs Value
Country I_BPCustomerMultiAddrVH Country Venue: Ctry/Reg
CityName I_BPCustomerMultiAddrVH CityName Name
StreetName I_BPCustomerMultiAddrVH StreetName Text
PostalCode I_BPCustomerMultiAddrVH PostalCode Postal Code
StandardUsage I_BPCustomerMultiAddrVH StandardUsage Standard Address
CustomerName I_BPCustomerMultiAddrVH CustomerName Name of Customer
CustomerAccountGroup I_BPCustomerMultiAddrVH CustomerAccountGroup Account group
AuthorizationGroup I_BPCustomerMultiAddrVH AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_BPCustomerMultiAddrVH IsBusinessPurposeCompleted Purpose Completed
BusinessPartnerType I_BPCustomerMultiAddrVH BusinessPartnerType Undefined range (can be used for patch levels)
AddressValidityStartDate I_BPCustomerMultiAddrVH AddressValidityStartDate
AddressValidityEndDate I_BPCustomerMultiAddrVH AddressValidityEndDate
AddressUsage I_BPCustomerMultiAddrVH AddressUsage Address Type
OrganizationBPName1 I_BPCustomerMultiAddrVH OrganizationBPName1 Name 1
OrganizationBPName2 I_BPCustomerMultiAddrVH OrganizationBPName2 Name 2
BusPartAddrLayoutStdIsHidden I_BPCustomerMultiAddrVH BusPartAddrLayoutStdIsHidden
DataControllerSet I_BPCustomerMultiAddrVH DataControllerSet Data Ctrlr. Set

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_JP_InvcSmmryRcpntMultiAddrVH.
-- 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_JP_InvcSmmryRcpntMultiAddrVH AS
SELECT
  _Customer.AddressID AS AddressID,
  _Customer.BusinessPartner AS BusinessPartner,
  _Customer.Customer AS Customer,
  _Isjphierarchy.bukrs AS CompanyCode,
  _Customer.Country AS Country,
  _Customer.CityName AS CityName,
  _Customer.StreetName AS StreetName,
  _Customer.PostalCode AS PostalCode,
  _Customer.StandardUsage AS StandardUsage,
  _Customer.CustomerName AS CustomerName,
  _Customer.CustomerAccountGroup AS CustomerAccountGroup,
  _Customer.AuthorizationGroup AS AuthorizationGroup,
  _Customer.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _Customer.BusinessPartnerType AS BusinessPartnerType,
  _Customer.AddressValidityStartDate AS AddressValidityStartDate,
  _Customer.AddressValidityEndDate AS AddressValidityEndDate,
  _Customer.AddressUsage AS AddressUsage,
  _Customer.OrganizationBPName1 AS OrganizationBPName1,
  _Customer.OrganizationBPName2 AS OrganizationBPName2,
  _Customer.BusPartAddrLayoutStdIsHidden AS BusPartAddrLayoutStdIsHidden,
  _Customer.DataControllerSet AS DataControllerSet
FROM I_BPCustomerMultiAddrVH AS _Customer
INNER JOIN P_JP_invcsummaryhierarch AS _Isjphierarchy ON /* join condition not captured in parsed metadata */
;