R_SrvcConfItemPartnerAddressTP

DDL: R_SRVCCONFITEMPARTNERADDRESSTP Type: view_entity TRANSACTIONAL

Partner Address For Service Conf Item

R_SrvcConfItemPartnerAddressTP is a Transactional CDS View that provides data about "Partner Address For Service Conf Item" in SAP S/4HANA. It reads from 1 data source (I_SrvcDocPartnerAddress) and exposes 40 fields with key fields ServiceConfirmation, ServiceConfirmationItem, CustMgmtPartnerFunction, CustMgmtBusinessPartner. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SrvcDocPartnerAddress I_SrvcDocPartnerAddress from

Associations (1)

CardinalityTargetAliasCondition
[0..1] R_ServiceConfirmationTP _ServiceConfirmationTP $projection.ServiceConfirmation = _ServiceConfirmationTP.ServiceConfirmation

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Partner Address For Service Conf Item view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (40)

KeyFieldSource TableSource FieldDescription
KEY ServiceConfirmation ServiceDocument Transaction ID
KEY ServiceConfirmationItem ServiceDocumentItem Service Document
KEY CustMgmtPartnerFunction CustMgmtPartnerFunction
KEY CustMgmtBusinessPartner CustMgmtBusinessPartner
AddresseeFullName AddresseeFullName Full Name
CityName CityName Name
CorrespondenceLanguage CorrespondenceLanguage Language
Country Country Venue: Ctry/Reg
DistrictName DistrictName District
EmailAddress EmailAddress E-Mail Address
FaxAreaCodeSubscriberNumber FaxAreaCodeSubscriberNumber Fax
FaxExtensionNumber FaxExtensionNumber Extension
FaxNumberCountry FaxNumberCountry Country/Region
FormOfAddress FormOfAddress Title Key
HouseNumber HouseNumber House Number
MobileNumber MobileNumber Telephone
MobilePhoneCountry MobilePhoneCountry Country/Region
OrganizationName1 OrganizationName1 Name
OrganizationName2 OrganizationName2 Name 2
OrganizationName3 OrganizationName3 Name 3
OrganizationName4 OrganizationName4 Name 4
PersonFamilyName PersonFamilyName
PersonGivenName PersonGivenName
PhoneExtensionNumber PhoneExtensionNumber Extension
PhoneNumber PhoneNumber Telephone no.
PhoneNumberCountry PhoneNumberCountry
POBox POBox PO Box
POBoxPostalCode POBoxPostalCode PO Box Postal Code
PostalCode PostalCode Postal Code
Region Region Venue Region
StreetName StreetName Text
StreetPrefixName1 StreetPrefixName1 Street 2
StreetPrefixName2 StreetPrefixName2 Street 3
StreetSuffixName1 StreetSuffixName1 Street 4
StreetSuffixName2 StreetSuffixName2 Street 5
TaxJurisdiction TaxJurisdiction Tax Jurisdiction
TransportZone TransportZone Transport Zone
_SrvcConfItemPartnerTP _SrvcConfItemPartnerTP
_ServiceConfirmationTP _ServiceConfirmationTP
_ServiceConfirmationItemTP _ServiceConfirmationItemTP

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 R_SrvcConfItemPartnerAddressTP.
-- 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 R_SrvcConfItemPartnerAddressTP AS
SELECT
  ServiceDocument AS ServiceConfirmation,
  ServiceDocumentItem AS ServiceConfirmationItem,
  CustMgmtPartnerFunction,
  CustMgmtBusinessPartner,
  AddresseeFullName,
  CityName,
  CorrespondenceLanguage,
  Country,
  DistrictName,
  EmailAddress,
  FaxAreaCodeSubscriberNumber,
  FaxExtensionNumber,
  FaxNumberCountry,
  FormOfAddress,
  HouseNumber,
  MobileNumber,
  MobilePhoneCountry,
  OrganizationName1,
  OrganizationName2,
  OrganizationName3,
  OrganizationName4,
  PersonFamilyName,
  PersonGivenName,
  PhoneExtensionNumber,
  PhoneNumber,
  PhoneNumberCountry,
  POBox,
  POBoxPostalCode,
  PostalCode,
  Region,
  StreetName,
  StreetPrefixName1,
  StreetPrefixName2,
  StreetSuffixName1,
  StreetSuffixName2,
  TaxJurisdiction,
  TransportZone
FROM I_SrvcDocPartnerAddress
LEFT OUTER JOIN R_ServiceConfirmationTP AS _ServiceConfirmationTP ON ServiceConfirmation = _ServiceConfirmationTP.ServiceConfirmation  -- association [0..1]
;