C_JITOutbContactPersonOvw

DDL: C_JITOUTBCONTACTPERSONOVW SQL: CJITOUTBCPOVW Type: view CONSUMPTION

Consumption view for contact person

C_JITOutbContactPersonOvw is a Consumption CDS View that provides data about "Consumption view for contact person" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 8 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner I_BusinessPartner from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CJITOUTBCPOVW view
AbapCatalog.compiler.compareFilter true view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consumption view for contact person view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
AbapCatalog.preserveKey true view
Consumption.semanticObject JustInTimeCommunicationGroup view
ObjectModel.representativeKey BusinessPartner view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
FirstName FirstName First Name
LastName LastName Last Name
CityName City
CountryName Country/Region
CompanyPostalCode Postal Code
PhoneNumber Phone Number
EmailAddress Email Address

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 C_JITOutbContactPersonOvw.
-- 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: CJITOUTBCPOVW

CREATE VIEW C_JITOutbContactPersonOvw AS
SELECT
  BusinessPartner,
  FirstName,
  LastName,
  _CurrentDefaultAddress._StandardAddress.CityName AS CityName,
  _CurrentDefaultAddress._StandardAddress._Country._Text[1: Language = $session.system_language].CountryName AS CountryName,
  _CurrentDefaultAddress._StandardAddress.CompanyPostalCode AS CompanyPostalCode,
  _CurrentDefaultAddress._StandardAddress.PhoneNumber AS PhoneNumber,
  _CurrentDefaultAddress._StandardAddress._DefaultCorpEmailAddress.EmailAddress AS EmailAddress
FROM I_BusinessPartner
;