C_ProjectBillingCustomerCard
Project Billing - Customer Contact Card
C_ProjectBillingCustomerCard is a Consumption CDS View that provides data about "Project Billing - Customer Contact Card" in SAP S/4HANA. It reads from 1 data source (I_Customer) and exposes 24 fields with key field Customer. It is exposed through 3 OData services (MANAGEPROJBILLGREQUEST_SD, PROJECTBILLINGELEMENT_SD, UI_PROJECTBILLINGELEMENT). Part of development package ODATA_PROJBILLINGELEMENT_LIST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Customer | Customer | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | Project Billing - Customer Contact Card | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | false | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.representativeKey | Customer | view |
OData Services (3)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| MANAGEPROJBILLGREQUEST_SD | UI_MNGPROJBILLGREQ_SB_V2 | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
| PROJECTBILLINGELEMENT_SD | UI_PROJBILLGELMNT_SB_V2 | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
| UI_PROJECTBILLINGELEMENT | UI_PROJECTBILLINGELEMENT | V4 | C1 | NOT_RELEASED |
Fields (24)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Customer | I_Customer | Customer | |
| CustomerName | I_Customer | CustomerName | ||
| CustAddressNumber | ||||
| AuthorizationGroup | I_Customer | AuthorizationGroup | ||
| CustomerAccountGroup | I_Customer | CustomerAccountGroup | ||
| StreetName | ||||
| HouseNumber | ||||
| CityName | I_Customer | CityName | ||
| PostalCode | I_Customer | PostalCode | ||
| Country | I_Customer | Country | ||
| MobilePhoneNumber | ||||
| EmailAddress | ||||
| DataController1 | I_Customer | DataController1 | ||
| DataController2 | I_Customer | DataController2 | ||
| DataController3 | I_Customer | DataController3 | ||
| DataController4 | I_Customer | DataController4 | ||
| DataController5 | I_Customer | DataController5 | ||
| DataController6 | I_Customer | DataController6 | ||
| DataController7 | I_Customer | DataController7 | ||
| DataController8 | I_Customer | DataController8 | ||
| DataController9 | I_Customer | DataController9 | ||
| DataController10 | I_Customer | DataController10 | ||
| DataControllerSet | I_Customer | DataControllerSet | ||
| IsBusinessPurposeCompleted | IsBusinessPurposeCompleted |
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #REQUIRED
}
@EndUserText.label: 'Project Billing - Customer Contact Card'
@ObjectModel.usageType: {
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #L
}
@Search.searchable: true
@VDM: {
viewType: #CONSUMPTION,
private: false
}
@Metadata.allowExtensions: true
@ObjectModel: {
semanticKey: ['Customer'],
representativeKey: 'Customer'
}
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view entity C_ProjectBillingCustomerCard
as select from I_Customer as Customer
{
@Semantics.contact.type: #ORGANIZATION
@Search: {defaultSearchElement: true,fuzzinessThreshold: 0.85,ranking: #HIGH}
@ObjectModel.text.element: [ 'CustomerName' ]
key Customer.Customer,
@Semantics.name.fullName: true
@Semantics.text: true
Customer.CustomerName,
@Semantics.text: true
concat(concat_with_space(concat_with_space( concat_with_space( Customer._AddressRepresentation.HouseNumber, Customer.StreetName,1), Customer.CityName,1 ) ,Customer.Country,1), Customer.PostalCode) as CustAddressNumber,
@UI.hidden: true
Customer.AuthorizationGroup,
@UI.hidden: true
Customer.CustomerAccountGroup,
-- ADDRESS
@Semantics.address.street: true
@Semantics.text: true
Customer.StreetName,
@Semantics.address.number: true
Customer._AddressRepresentation.HouseNumber,
@Semantics.address.city: true
@Semantics.text: true
@UI.fieldGroup: [{ position: 40 , qualifier: 'CustomerFieldGroup'}]
Customer.CityName,
@Semantics.address.zipCode: true
Customer.PostalCode,
@Semantics.address.country:true
Customer.Country,
-- END ADDRESS
@Semantics.telephone.type: [ #WORK ]
@Consumption.filter.hidden: true
//@UI.fieldGroup: [{ position:'20', qualifier: 'CustomerFieldGroup'}]
Customer._AddressRepresentation._CurrentDfltLandlinePhoneNmbr.PhoneAreaCodeSubscriberNumber as PhoneNumber,
@Semantics.telephone.type: [ #CELL ]
@Consumption.filter.hidden: true
Customer._AddressRepresentation._CurrentDfltMobilePhoneNumber.PhoneAreaCodeSubscriberNumber as MobilePhoneNumber,
@EndUserText.label: 'Email'
@Semantics.eMail: {
type: [#WORK],
address: true
}
@Consumption.filter.hidden: true
//@UI.fieldGroup: [{ position:'30', qualifier: 'CustomerFieldGroup'}]
Customer._AddressRepresentation._CurrentDfltEmailAddress.EmailAddress as EmailAddress,
//Adding 10 fields for DCP 10+1 development
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController1,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController2,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController3,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController4,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController5,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController6,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController7,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController8,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController9,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataController10,
@UI.hidden: true
@Consumption.hidden: true
Customer.DataControllerSet,
//ATC fix 'With optional element' 2402
@Consumption.hidden: true
@UI.hidden: true
IsBusinessPurposeCompleted
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA