P_Cfd_Software_Component

DDL: P_CFD_SOFTWARE_COMPONENT Type: view_entity Package: S_CFD_REPOSITORY_DB

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. Part of development package S_CFD_REPOSITORY_DB.

Data Sources (3)

SourceAliasJoin Type
tdevc package inner
dlv_systc swc_changeability left_outer
tadir tadir from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Custom Fields: Software Component view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProgrammId tadir pgmid
KEY ObjectType tadir object
KEY ObjectName tadir obj_name
Devclass tadir devclass
SoftwareComponent tdevc dlvunit
SoftwareComponentChangeability dlv_systc changeable
@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
}