sdsh_cds_table_fields_info
Detailed Information about Table/View fields
sdsh_cds_table_fields_info is a CDS View that provides data about "Detailed Information about Table/View fields" in SAP S/4HANA. It reads from 2 data sources (dd02l, dd03l) and exposes 5 fields.
Annotations (1)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Detailed Information about Table/View fields | view |
@EndUserText.label: 'Detailed Information about Table/View fields'
define view entity sdsh_cds_table_fields_info as select from
dd02l inner join dd03l
on dd02l.tabname = dd03l.tabname
{
dd02l.tabname as tabname,
dd03l.fieldname as fieldname,
dd02l.tabclass as tabclass,
dd03l.shlporigin as shlporigin,
dd03l.checktable as checktable
} where dd02l.as4local = 'A' and
dd03l.as4local = 'A' and
dd03l.shlporigin = 'F' or // Domain-fixed values
( dd03l.shlporigin = 'P' and
dd03l.checktable <> ' ' and
dd03l.checktable <> '*' and
dd03l.checktable <> '0') // Check tables
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD02L",
"DD03L"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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