Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.98 KB | None | 0 0
  1. @AbapCatalog.sqlViewName: 'ZIDOSSIERMONIT'
  2. @AbapCatalog.compiler.compareFilter: true
  3. @AbapCatalog.preserveKey: true
  4. @AccessControl.authorizationCheck: #CHECK
  5. @EndUserText.label: 'Dossier Monitor interface'
  6. @ObjectModel.compositionRoot: true
  7.  
  8. /*
  9.     Interface view for Dossier Monitor fiori element.
  10.     CURRENTLY THIS IS A TEMPLATE
  11. */
  12. //define the main data source
  13. define view ZI_DOSSIERMONIT as select from zfrb_allot
  14.  
  15. association [0..*] to ZI_DOSSIERSTATUS as _Status on $projection.iddossier = _Status.iddossier
  16.  
  17. association [0..*] to ZI_DOSSIERSUBDIV as _SubDiv on $projection.numsub = _SubDiv.numsub
  18.  
  19. association [1..*] to ZI_DOSSIERMSG as _Messages on $projection.iddossier = _Messages.iddossier
  20.  {
  21.      key zfrb_allot.iddossier,
  22.      key zfrb_allot.numsub,
  23.      zfrb_allot.numdossier,
  24.      zfrb_allot.statutbascule,
  25.      
  26.      _Status.statutdossier,
  27.      _SubDiv.numvague,
  28.      
  29.      @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
  30.       _Messages
  31.  
  32.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement