A_GoodsMvtReasonCodeText

DDL: A_GOODSMVTREASONCODETEXT SQL: AGMVTRECODET Type: view BASIC Package: ET_COMMON

Goods movement reason code text

A_GoodsMvtReasonCodeText is a Basic CDS View that provides data about "Goods movement reason code text" in SAP S/4HANA. It reads from 1 data source (I_PhysInvtryReasonCodeText) and exposes 5 fields with key fields GoodsMovementType, ReasonForPhysInvtryDifference, Language. It is exposed through 1 OData service (API_GOODSMVTREASONCODE_SRV). Part of development package ET_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_PhysInvtryReasonCodeText _GoodsMvtReasonCodeText from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName AGMVTRECODET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Goods movement reason code text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #NOT_REQUIRED view

OData Services (1)

ServiceBindingVersionContractRelease
API_GOODSMVTREASONCODE_SRV API_GOODSMVTREASONCODE_SRV V2 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementType I_PhysInvtryReasonCodeText GoodsMovementType
KEY ReasonForPhysInvtryDifference I_PhysInvtryReasonCodeText ReasonForPhysInvtryDifference
KEY Language I_PhysInvtryReasonCodeText Language
ReasonForPhysInvtryDiffText I_PhysInvtryReasonCodeText ReasonForPhysInvtryDiffText
GoodsMovementTypeName _GoodsMvmtTypeText GoodsMovementTypeName
@AbapCatalog.sqlViewName: 'AGMVTRECODET'
  @AbapCatalog.compiler.compareFilter: true
  @AbapCatalog.preserveKey: true
  @AccessControl.authorizationCheck: #NOT_REQUIRED
  @EndUserText.label: 'Goods movement reason code text'
  @ClientHandling.algorithm: #SESSION_VARIABLE
  
  @ObjectModel: {
      usageType: {
          sizeCategory: #S,
          serviceQuality: #C,
          dataClass:#CUSTOMIZING
          },
      createEnabled: false,
      updateEnabled: false
  }
  
  @VDM.viewType: #BASIC
  @VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
  
  @Metadata.ignorePropagatedAnnotations: true
  @AccessControl.personalData.blocking:#NOT_REQUIRED
  define view A_GoodsMvtReasonCodeText as select from I_PhysInvtryReasonCodeText as _GoodsMvtReasonCodeText
  association[0..1] to I_GoodsMovementTypeT as _GoodsMvmtTypeText on $projection.GoodsMovementType = _GoodsMvmtTypeText.GoodsMovementType
                                                                  and $projection.Language = _GoodsMvmtTypeText.Language
   {
   
    key _GoodsMvtReasonCodeText.GoodsMovementType,
    key _GoodsMvtReasonCodeText.ReasonForPhysInvtryDifference,
    key _GoodsMvtReasonCodeText.Language,
        _GoodsMvtReasonCodeText.ReasonForPhysInvtryDiffText,
        _GoodsMvmtTypeText.GoodsMovementTypeName
        
  };