Fdt_Test_Carr_Cds
Carrier
Fdt_Test_Carr_Cds is a CDS View that provides data about "Carrier" in SAP S/4HANA. It reads from 1 data source (scarr) and exposes 5 fields with key fields Client, carrid. Part of development package SFDT_TEST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| scarr | scarr | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FDT_TEST_CARR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Carrier | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'FDT_TEST_CARR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Carrier'
@Search.searchable: true
define view Fdt_Test_Carr_Cds
as select from scarr
{
key scarr.mandt as Client,
@Search.defaultSearchElement: true
@EndUserText.label: 'Carrier ID'
key scarr.carrid,
@Search.defaultSearchElement: true
@EndUserText.label: 'Carrier Name'
scarr.carrname as CarrierName,
@EndUserText.label: 'Currency Code'
scarr.currcode as Currency,
@EndUserText.label: 'URL'
scarr.url as URL
}
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