You must use the TABLESstatement to declare the sscrfieldsstructure in the ABAP program.After the AT SELECTION-SCREEN event has been processed, the system displays the selection screen again. The only way to exi
Solved: Hi all, I have a problem. Is there some way to creat selection-screen button (the same radiobutton group) in different blocks. the err message is [A parameter of
SAP Managed Tags: ABAP Development Hello, Did you check the p_down radio-button & did an F4 on p_file ? After this in the debug mode you find that in the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file, the value for p_up = 'X' ? Can you try like this & check ? PA...
There are 4 radio buttons in total. The requirement is, when I select the radio button p_rd1 it should validate only the s_prod field mentioned under the radio button p_rd3. When I select the radio button p_rd2 it should validate both the fields s_prod and p_loc mentioned under th...
For dynamic programming, the same properties, events, and aggregations as in the View Designer are available.Bear in mind the different spellings.Dynamic Programming of PropertiesView Designer Name Runtime Name Type activateAccessKey ACTIVATE_ACCESS_KEY WDY_BOOLEAN contextMenuBehaviour CONTEXT_MENU_...
at selection-screen output. if a = 'X'. endif. if b = 'X'. endif. break-point. regards, amit m. Reply Former Member In response to Former Member 2006 Jan 13 8:03 AM 0 Kudos 2,950 SAP Managed Tags: SAP Inside Track, ABAP Development Hello, I want to do following...
SAP Managed Tags: UI Web Dynpro ABAP, Virtualization hi my task is this i have created two radiobutton in the view layout , if i choose first radio button then a form should open there we can fill the student records where i can submit the details and resume of a candidates . i am...
SAP Managed Tags ABAP Connectivity Hi buddy, the problem in your code is you missed the most important part of the code. SELECTION-SCREEN BEGIN OF SCREEN <screen no>. ... ... ... SELECTION-SCREEN END OF SCREEN <screen no>. And then you have to call the screen under START-OF-SELE...
SAP Managed Tags: ABAP Development Yes suresh you are correct, he is doing some modification in at selection-screen output , he might be clearing the values of two radiobuttons or he assigned two radiobuttons values as 'X' . in both the cases it will dump. Regards vijay Reply Former ...
DATA:gr_gridTYPEREFTOlcl_demo.START-OF-SELECTION.CALLSCREEN100.MODULEpboOUTPUT.CREATEOBJECTgr_grid.gr_grid->show_grid().ENDMODULE. To show you a real example... I prepared few lines in Excel: After running the ABAP report (code above) I got this screen: ...