SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Список всех полей селекционного экрана



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
Мальцев
Участник
Участник



Joined: 28 Sep 2007
Posts: 31

PostPosted: Mon Nov 19, 2007 10:13 am    Post subject: Список всех полей селекционного экрана Reply with quote

Существует ли какой-нибудь функциональный модуль, позволяющий получить название всех полей на селекционном экране?
Back to top
View user's profile Send private message
july7
Старший специалист
Старший специалист



Joined: 10 Oct 2007
Posts: 109
Location: Киров

PostPosted: Mon Nov 19, 2007 10:41 am    Post subject: Reply with quote

Список всех элементов экрана содержится в таблице screen.
Back to top
View user's profile Send private message
John Doe
Модератор
Модератор


Age: 45
Joined: 05 Nov 2007
Posts: 725
Location: КраснАдар

PostPosted: Mon Nov 19, 2007 12:44 pm    Post subject: Reply with quote

Вот такой ФМ RS_SELSCREEN_INFO еще есть.
Back to top
View user's profile Send private message Blog
vga
Мастер
Мастер


Age: 200
Joined: 04 Oct 2007
Posts: 1218
Location: Санкт-Петербург

PostPosted: Tue Nov 20, 2007 10:57 am    Post subject: Reply with quote

Code:
*&---------------------------------------------------------------------*
*& Form PRINT_SELECTION_PARAMS
*&---------------------------------------------------------------------*
FORM PRINT_SELECTION_PARAMS.
  DATA: BEGIN OF SELECTIONS OCCURS 24,
              Z(2),
              LINE LIKE RALDB-INFOLINE,
            END OF SELECTIONS.
  DATA: L_VARIANT LIKE RALDB-VARIANT.

  NEW-PAGE.
  skip 5.
  SET EXTENDED CHECK OFF.
  L_VARIANT = SY-SLSET.
  CALL FUNCTION 'PRINT_SELECTIONS'
    EXPORTING
      RNAME = SY-CPROG
      RVARIANTE = L_VARIANT
      MODE = 'TABLE'
    TABLES
      INFOTAB = SELECTIONS.

  SET EXTENDED CHECK ON.

  LOOP AT SELECTIONS.
    WRITE / SELECTIONS-LINE.
  ENDLOOP.
ENDFORM. " PRINT_SELECTION_PARAMS
Back to top
View user's profile Send private message Blog Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.