TBDLSU
LOGICAL SYSTEM
TBDLSU is a CDS View that provides data about "LOGICAL SYSTEM" in SAP S/4HANA. It reads from 4 data sources (tbdls, tbdlsc, tbdlsct, tbdlst) and exposes 4 fields with key fields client, LOGSYS, LOGSYS. Part of development package SALE2.
Data Sources (4)
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | TBDLSU_SQL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | LOGICAL SYSTEM | view |
@AbapCatalog.sqlViewName: 'TBDLSU_SQL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'LOGICAL SYSTEM'
define view TBDLSU
as select from tbdls
left outer join tbdlst on tbdls.logsys = tbdlst.logsys
and tbdlst.langu = $session.system_language
{
key $session.client as client,
key tbdls.logsys as LOGSYS,
tbdlst.stext as STEXT
}
union select from tbdlsc
left outer join tbdlsct on tbdlsct.client = tbdlsc.client
and tbdlsct.logsys = tbdlsc.logsys
and tbdlsct.langu = $session.system_language
{
key tbdlsc.client as client,
key tbdlsc.logsys as LOGSYS,
tbdlsct.stext as STEXT
} where tbdlsc.client = $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