C_JournalEntryCustomerCard

DDL: C_JOURNALENTRYCUSTOMERCARD Type: view CONSUMPTION

Journal Entry Customer Contact Card

C_JournalEntryCustomerCard is a Consumption CDS View that provides data about "Journal Entry Customer Contact Card" in SAP S/4HANA. It reads from 1 data source (I_Customer) and exposes 23 fields with key field ContactCardID.

Data Sources (1)

SourceAliasJoin Type
I_Customer Customer from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CDOCCUSCNTCT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Journal Entry Customer Contact Card view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.private false view
Search.searchable true view
Consumption.ranked true view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID I_Customer Customer Sold-to Party
FullName I_Customer CustomerFullName Customer Name
AuthorizationGroup I_Customer AuthorizationGroup AuthorizGroup
StreetName
HouseNumber
CityName I_Customer CityName Name
PostalCode I_Customer PostalCode Postal Code
Country
PhoneNumberasPhoneNumber
MobilePhoneNumber
EmailAddress Email
DataControllerSet I_Customer DataControllerSet Data Ctrlr. Set
DataController1 I_Customer DataController1 Data Controller
DataController2 I_Customer DataController2 Data Controller
DataController3 I_Customer DataController3 Data Controller
DataController4 I_Customer DataController4 Data Controller
DataController5 I_Customer DataController5 Data Controller
DataController6 I_Customer DataController6 Data Controller
DataController7 I_Customer DataController7 Data Controller
DataController8 I_Customer DataController8 Data Controller
DataController9 I_Customer DataController9 Data Controller
DataController10 I_Customer DataController10 Data Controller
IsBusinessPurposeCompleted I_Customer IsBusinessPurposeCompleted Purpose Completed

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_JournalEntryCustomerCard.
-- 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 C_JournalEntryCustomerCard AS
SELECT
  Customer.Customer AS ContactCardID,
  Customer.CustomerFullName AS FullName,
  Customer.AuthorizationGroup AS AuthorizationGroup,
  Customer._StandardAddress.HouseNumber AS HouseNumber,
  Customer.CityName AS CityName,
  Customer.PostalCode AS PostalCode,
  cast( Customer.Country as farp_inspect_item_country_name preserving type) AS Country,
  cast( Customer._StandardAddress._DefaultMobilePhoneNumber.PhoneNumber as farp_mobile preserving type ) AS MobilePhoneNumber,
  Customer._StandardAddress._DefaultEmailAddress.EmailAddress AS EmailAddress,
  Customer.DataControllerSet AS DataControllerSet,
  Customer.DataController1 AS DataController1,
  Customer.DataController2 AS DataController2,
  Customer.DataController3 AS DataController3,
  Customer.DataController4 AS DataController4,
  Customer.DataController5 AS DataController5,
  Customer.DataController6 AS DataController6,
  Customer.DataController7 AS DataController7,
  Customer.DataController8 AS DataController8,
  Customer.DataController9 AS DataController9,
  Customer.DataController10 AS DataController10,
  Customer.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
FROM I_Customer AS Customer
;