S_Ccl_User
Custom Code List User View
S_Ccl_User is a CDS View that provides data about "Custom Code List User View" in SAP S/4HANA. It reads from 1 data source (usr21) and exposes 2 fields with key field Name.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| usr21 | usr21 | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | S_V_CCL_USER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientDependent | false | view | |
| EndUserText.label | Custom Code List User View | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Name | bname | ||
| Description | techdesc |
@AbapCatalog.sqlViewName: 'S_V_CCL_USER'
@AbapCatalog.compiler.compareFilter: true
@ClientDependent: false
@EndUserText.label: 'Custom Code List User View'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
define view S_Ccl_User
as select from usr21
{
key bname as Name,
@Search.defaultSearchElement: true
//@Search.fuzzinessThreshold: 0.7
@Semantics.text: true
techdesc as Description // note: no fallback logic here to enable searching! Fallback will be done in UI layer!
}
where
mandt = $session.client
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