C_OutgInvoiceCustCompanyCodeVH

DDL: C_OUTGINVOICECUSTCOMPANYCODEVH Type: view_entity CONSUMPTION

Customer

C_OutgInvoiceCustCompanyCodeVH is a Consumption CDS View that provides data about "Customer" in SAP S/4HANA. It reads from 1 data source (I_CustomerCompany) and exposes 10 fields with key fields Customer, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_CustomerCompany I_CustomerCompany from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Customer view
Consumption.ranked true view
EndUserText.label Customer view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer Sold-to Party
KEY CompanyCode CompanyCode Receiver Company Code
Country _Customer Country Venue: Ctry/Reg
CityName _Customer CityName Name
AddressSearchTerm1 _Customer AddressSearchTerm1 Search Term 1
AddressSearchTerm2 _Customer AddressSearchTerm2 Search Term 2
CustomerName _Customer CustomerName Name of Customer
_Customer _Customer
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted 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_OutgInvoiceCustCompanyCodeVH.
-- 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_OutgInvoiceCustCompanyCodeVH AS
SELECT
  Customer,
  CompanyCode,
  _Customer.Country AS Country,
  _Customer.CityName AS CityName,
  _Customer.AddressSearchTerm1 AS AddressSearchTerm1,
  _Customer.AddressSearchTerm2 AS AddressSearchTerm2,
  _Customer.CustomerName AS CustomerName,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM I_CustomerCompany
;