dynpro

Disable a parameter input at selection screen

家住魔仙堡 提交于 2020-06-23 06:53:08
问题 I have screen filter at selection screen like this SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME. PARAMETERS s_werks like resb-werks DEFAULT 'X' . SELECT-OPTIONS: s_aufnr FOR in_param-aufnr, s_matnr FOR in_param-matnr, s_bldat FOR in_param-bldat. SELECTION-SCREEN END OF BLOCK a. and I want to disable just s_werks parameter but SELECT-OPTIONS . I want to disable it because it'll be exact value which is filled from table depends on the sy-uname :) How to achieve that? 回答1: You can use the OUTPUT

Problems with multiple selection screens

孤街醉人 提交于 2020-01-17 03:21:09
问题 START-OF-SELECTION is not getting triggered in my program. I am trying to fetch book details based on book name and book author using multiple selection screens in ABAP. There are two pushbuttons and based on those selection screens are opened. When I click any of the push buttons, then selection screens are opened. But after I select entries from the dropdown list and click execute button, then the transaction goes to the initial screen with the pushbuttons. The book details are not

Problems with multiple selection screens

半腔热情 提交于 2020-01-17 03:21:05
问题 START-OF-SELECTION is not getting triggered in my program. I am trying to fetch book details based on book name and book author using multiple selection screens in ABAP. There are two pushbuttons and based on those selection screens are opened. When I click any of the push buttons, then selection screens are opened. But after I select entries from the dropdown list and click execute button, then the transaction goes to the initial screen with the pushbuttons. The book details are not

How to skip mandatory fields on ABAP

六眼飞鱼酱① 提交于 2019-12-24 11:54:17
问题 I want it to skip mandatory fields when i clicked on 'İptal' button . But i don't want to control mandatory fields without "obligatory" . I want to see check mark in textboxes like screenshot. Normally 'İptal' button calls a different screen when there is no mandatory fields. Note: Screens are standard selection screens. 回答1: What you need to do is have a function code assigned to the pushbutton on the screen that has the function type "Exit". Then you can use the event AT SELECTION-SCREEN ON