Aps_Com_Cs_D2_Inbound

DDL: APS_COM_CS_D2_INBOUND SQL: APS_COM_CS_I_2 Type: view Package: SR_APS_COM_CS

CS Draft 2.0 Inbound view

Aps_Com_Cs_D2_Inbound is a CDS View that provides data about "CS Draft 2.0 Inbound view" in SAP S/4HANA. It reads from 1 data source (aps_cs_d_inbound) and exposes 15 fields with key field db_key. It has 1 association to related views. Part of development package SR_APS_COM_CS.

Data Sources (1)

SourceAliasJoin Type
aps_cs_d_inbound Document from

Associations (1)

CardinalityTargetAliasCondition
[1..1] Aps_Com_Cs_D2_Root _Root Document.parent_key = _Root.db_key

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName APS_COM_CS_I_2 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CS Draft 2.0 Inbound view view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY db_key aps_cs_d_inbound db_key
parent_key aps_cs_d_inbound parent_key
CommSystInboundUserName aps_cs_d_inbound commsystinboundusername
SystemAuthenticationMode aps_cs_d_inbound systemauthenticationmode
CommSystInboundUserDesc aps_cs_d_inbound commsystinbounduserdesc
OAuth2GrantType aps_cs_d_inbound oauth2granttype
OAuth2ClientId aps_cs_d_inbound oauth2clientid
OAuth2RefreshAllowed aps_cs_d_inbound oauth2refreshallowed
OAuth2RefreshExpiry aps_cs_d_inbound oauth2refreshexpiry
OAuth2RefreshExpiryUnit aps_cs_d_inbound oauth2refreshexpiryunit
CreationDateTime aps_cs_d_inbound creationdatetime
CreatedByUser aps_cs_d_inbound createdbyuser
LastChangeDateTime aps_cs_d_inbound lastchangedatetime
LastChangedByUser aps_cs_d_inbound lastchangedbyuser
_Root _Root
@AbapCatalog.sqlViewName: 'APS_COM_CS_I_2'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: ' CS Draft 2.0 Inbound view'
define view Aps_Com_Cs_D2_Inbound
  as select from aps_cs_d_inbound as Document
  association [1..1] to Aps_Com_Cs_D2_Root as _Root on Document.parent_key = _Root.db_key
{
  key Document.db_key,
      Document.parent_key,
      Document.commsystinboundusername                 as CommSystInboundUserName,
      Document.systemauthenticationmode                as SystemAuthenticationMode,
      Document.commsystinbounduserdesc                 as CommSystInboundUserDesc,
      Document.oauth2granttype                         as OAuth2GrantType,
      Document.oauth2clientid                          as OAuth2ClientId,
      Document.oauth2refreshallowed                    as OAuth2RefreshAllowed,
      Document.oauth2refreshexpiry                     as OAuth2RefreshExpiry,
      Document.oauth2refreshexpiryunit                 as OAuth2RefreshExpiryUnit,

      Document.creationdatetime                        as CreationDateTime,
      Document.createdbyuser                           as CreatedByUser,
      Document.lastchangedatetime                      as LastChangeDateTime,
      Document.lastchangedbyuser                       as LastChangedByUser,

      @ObjectModel.association.type: [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
      _Root
}