A_BR_NFTransportedVolume

DDL: A_BR_NFTRANSPORTEDVOLUME SQL: ABRNFTRANSPVOL Type: view BASIC Package: GLO_LOG_BR

Brazil Nota Fiscal Transported Volume

A_BR_NFTransportedVolume is a Basic CDS View that provides data about "Brazil Nota Fiscal Transported Volume" in SAP S/4HANA. It reads from 1 data source (I_BR_NFTransportedVolume) and exposes 12 fields with key fields BR_NotaFiscal, BR_NFTransptVolumesSequence. Part of development package GLO_LOG_BR.

Data Sources (1)

SourceAliasJoin Type
I_BR_NFTransportedVolume I_BR_NFTransportedVolume from

Annotations (18)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ABRNFTRANSPVOL view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Brazil Nota Fiscal Transported Volume view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
OData.entitySet.name A_BR_NFTransportedVolume view
ObjectModel.representativeKey BR_NFTransptVolumesSequence view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled false view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY BR_NotaFiscal BR_NotaFiscal
KEY BR_NFTransptVolumesSequence BR_NFTransptVolumesSequence
BR_NFTransportedVolumeQtyVal BR_NFTransportedVolumeQtyVal
BR_NFTransportedVolumeType BR_NFTransportedVolumeType
BR_NFTransptVolumeTrademark BR_NFTransptVolumeTrademark
BR_NFTransportedVolumeID BR_NFTransportedVolumeID
BR_NFTransptVolNetWeightUnit BR_NFTransptVolNetWeightUnit
BR_NFTransptVolumeNetWeight BR_NFTransptVolumeNetWeight
BR_NFTransptVolGrossWgtUnit BR_NFTransptVolGrossWgtUnit
BR_NFTransptVolumeGrossWeight BR_NFTransptVolumeGrossWeight
BR_NFTransportedVolumeSeal BR_NFTransportedVolumeSeal
_BR_NFDoc _BR_NFDoc
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'ABRNFTRANSPVOL'
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Brazil Nota Fiscal Transported Volume'
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@OData.entitySet.name : 'A_BR_NFTransportedVolume'
@ObjectModel: {
  representativeKey: 'BR_NFTransptVolumesSequence',
  createEnabled: true,
  updateEnabled: true,
  deleteEnabled: false
}
define view A_BR_NFTransportedVolume
  as select from I_BR_NFTransportedVolume
  association to parent A_BR_NFDocument as _BR_NFDoc on $projection.BR_NotaFiscal = _BR_NFDoc.BR_NotaFiscal
{
      //I_BR_NFTransportedVolume

      @ObjectModel.foreignKey.association: '_BR_NFDoc'
  key BR_NotaFiscal,
  key BR_NFTransptVolumesSequence,
      BR_NFTransportedVolumeQtyVal,
      BR_NFTransportedVolumeType,
      BR_NFTransptVolumeTrademark,
      BR_NFTransportedVolumeID,
      BR_NFTransptVolNetWeightUnit,
      @Semantics.quantity.unitOfMeasure: 'BR_NFTransptVolNetWeightUnit'
      BR_NFTransptVolumeNetWeight,
      BR_NFTransptVolGrossWgtUnit,
      @Semantics.quantity.unitOfMeasure: 'BR_NFTransptVolGrossWgtUnit'
      BR_NFTransptVolumeGrossWeight,
      BR_NFTransportedVolumeSeal,
      /* Associations */
      @ObjectModel.association.type: [#TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT]
      _BR_NFDoc
}