P_Cfd_Software_Component
Custom Fields: Software Component
P_Cfd_Software_Component is a CDS View that provides data about "Custom Fields: Software Component" in SAP S/4HANA. It reads from 3 data sources (tdevc, dlv_systc, tadir) and exposes 6 fields with key fields ProgrammId, ObjectType, ObjectName.
Data Sources (3)
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Custom Fields: Software Component | view |
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Custom Fields: Software Component'
define view entity P_Cfd_Software_Component
as select from tadir as tadir
inner join tdevc as package on package.devclass = tadir.devclass
left outer join dlv_systc as swc_changeability on swc_changeability.dlvunit = package.dlvunit
{
key tadir.pgmid as ProgrammId,
key tadir.object as ObjectType,
key tadir.obj_name as ObjectName,
tadir.devclass as Devclass,
package.dlvunit as SoftwareComponent,
swc_changeability.changeable as SoftwareComponentChangeability
}
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