cross_func
Function Module <-> Function Module Include
cross_func is a CDS View that provides data about "Function Module <-> Function Module Include" in SAP S/4HANA. It reads from 1 data source (tfdir) and exposes 2 fields with key field funcname. Part of development package SEUIX.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tfdir | tfdir | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CROSS_FUNC_V | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Function Module <-> Function Module Include | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | funcname | funcname | ||
| pname | pname |
@AbapCatalog.sqlViewName: 'CROSS_FUNC_V'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Function Module <-> Function Module Include'
define view cross_func
as select from tfdir
{
key funcname,
pname,
case left(pname, 1)
when '/' then left(concat(concat(replace(pname, '/SAPL', '/L'),'U'),include),40)
else left(concat(concat(concat('L',replace(pname, 'SAPL', '')),'U'),include),40)
end as func_include
}
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