sfunc_ddl_modules_view
View on available function modules
sfunc_ddl_modules_view is a CDS View that provides data about "View on available function modules" in SAP S/4HANA. It reads from 3 data sources (t002, tfdir, tftit) and exposes 3 fields.
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SFUNC_FB_VIEW | view | |
| EndUserText.label | View on available function modules | view |
@AbapCatalog.sqlViewName: 'SFUNC_FB_VIEW'
@EndUserText.label: 'View on available function modules'
define view sfunc_ddl_modules_view
as select from tfdir
cross join t002
left outer join tftit on tfdir.funcname = tftit.funcname
and t002.spras = tftit.spras
{
tfdir.funcname as name,
t002.spras as language,
tftit.stext as description
}
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