Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 2.24 KB | None | 0 0
  1. *---------------------------------------------------------------------*
  2. *    view related data declarations
  3. *   generation date: 02.04.2015 at 17:43:47
  4. *   view maintenance generator version: #001407#
  5. *---------------------------------------------------------------------*
  6. *...processing: V_T001_MOSR.....................................*
  7. TABLES: V_T001_MOSR, *V_T001_MOSR. "view work areas
  8. CONTROLS: TCTRL_V_T001_MOSR
  9. TYPE TABLEVIEW USING SCREEN '0100'.
  10. DATA: BEGIN OF STATUS_V_T001_MOSR. "state vector
  11.           INCLUDE STRUCTURE VIMSTATUS.
  12. DATA: END OF STATUS_V_T001_MOSR.
  13. * Table for entries selected to show on screen
  14. DATA: BEGIN OF V_T001_MOSR_EXTRACT OCCURS 0010.
  15. INCLUDE STRUCTURE V_T001_MOSR.
  16.           INCLUDE STRUCTURE VIMFLAGTAB.
  17. DATA: END OF V_T001_MOSR_EXTRACT.
  18. * Table for all entries loaded from database
  19. DATA: BEGIN OF V_T001_MOSR_TOTAL OCCURS 0010.
  20. INCLUDE STRUCTURE V_T001_MOSR.
  21.           INCLUDE STRUCTURE VIMFLAGTAB.
  22. DATA: END OF V_T001_MOSR_TOTAL.
  23.  
  24. *...processing: V_T001_MOSRB....................................*
  25. TABLES: V_T001_MOSRB, *V_T001_MOSRB. "view work areas
  26. CONTROLS: TCTRL_V_T001_MOSRB
  27. TYPE TABLEVIEW USING SCREEN '0200'.
  28. DATA: BEGIN OF STATUS_V_T001_MOSRB. "state vector
  29.           INCLUDE STRUCTURE VIMSTATUS.
  30. DATA: END OF STATUS_V_T001_MOSRB.
  31. * Table for entries selected to show on screen
  32. DATA: BEGIN OF V_T001_MOSRB_EXTRACT OCCURS 0010.
  33. INCLUDE STRUCTURE V_T001_MOSRB.
  34.           INCLUDE STRUCTURE VIMFLAGTAB.
  35. DATA: END OF V_T001_MOSRB_EXTRACT.
  36. * Table for all entries loaded from database
  37. DATA: BEGIN OF V_T001_MOSRB_TOTAL OCCURS 0010.
  38. INCLUDE STRUCTURE V_T001_MOSRB.
  39.           INCLUDE STRUCTURE VIMFLAGTAB.
  40. DATA: END OF V_T001_MOSRB_TOTAL.
  41.  
  42. *.........table declarations:.................................*
  43. TABLES: T001                           .
  44. TABLES: T001_MOSR                      .
  45. TABLES: T001_MOSRB                     .
  46. TABLES: T003                           .
  47. TABLES: T003T                          .
  48. TABLES: T005                           .
  49. TABLES: T005T                          .
  50. TABLES: T007F                          .
  51. TABLES: TCURC                          .
  52. TABLES: TCURT                          .
  53. TABLES: TCURV                          .
  54. TABLES: TCURW                          .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement