Home Tips and Tricks Dialog Programming
|
|
|
|
Dialog Programming
|
Written by Dany Charbonneau
|
|
Wednesday, 23 May 2007 |
To avoid the standard F4 help to be show, insert the event PROCESS ON-VALUE-REQUEST request in the program and add a field statement for the field that should trigger the F4 help. In the module called from PROCESS ON-VALUE-REQUEST request, call function module F4IF_FIELD_VALUE_REQUEST. Example: |
|
Read more...
|
|
|
Written by Manoj Nair
|
|
Thursday, 12 April 2007 |
1. define group name(s) for the columns to be hidden 2. Add the following code... (define) controls tbl_ctrl type tableview ... wa like tbl_ctrl-cols. loop at tbl_ctrl-cols into wa. if wa-screen-group1 = <group defined for the column> wa-invisible = 1. modify tbl_ctrl-cols from wa endif endloop |
|
|
Written by Anon.
|
|
Tuesday, 10 April 2007 |
|
add the following code in PBO loop at screen. if screen-name = 'NAME_OF_FIELD_HERE_IN_CAPS'. set attributes of screen such as REQUIRED, INPUT, OUTPUT, INTENSIFIED, INVISIBLE, ACTIVE, DISPLAY_3D, VALUE_HELP to 1(ON) or 0(OFF) e.g. screen-output = 1. modify screen. endif. endloop if the field is part of a table control, put the above code within the the loop...endloop of the table control in PBO |
|
|
Written by Anon.
|
|
Thursday, 01 March 2007 |
|
|
|
Read more...
|
|
|
Written by sasmito
|
|
Monday, 19 February 2007 |
|
Sometimes we need to use recording added to our enhancement program. If the recording consists of a table control such as in VL31N and you need to select or deselect some line items ... |
|
Last Updated ( Tuesday, 20 February 2007 )
|
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Thursday, 08 February 2007 |
|
BACK %EX RW PRI %SC %SC+ P-- P- P+ P++ Back Exit Cancel Print Search Search Again Duhhhh!!! |
|
|
Written by Paul Kjaer
|
|
Wednesday, 31 January 2007 |
|
If you are in Object Browser looking at the module program, you can highlight the screens and click the print button. Click no to print immediately, then go into System -- Services -- Output Control to select the spool request and then go into List -- Save -- Local File. (Of course, you can send it to a printer to see documentation on your screen). |
|
|
Written by Francois Henrotte
|
|
Wednesday, 31 January 2007 |
|
The option to download dynpros does not appear in the menu structure in 4.x. The function is there but you just don't have access through the menu. Type 'UTDL' in the command field to dowload a dynpro (you must be in display or change mode). To upload it into another system for example, create a new dynpro and enter in edit mode. Type 'UTUL' in the command field. Note that this works in version 3.1 and up of SAP. |
|
|
Written by aNON.
|
|
Saturday, 20 January 2007 |
A demo program to create subscreen in your ABAP Program This report will display the user last login date and time. Subscreen selection 1 : User Name 2 : Last Login Date 3 : Class Belong To |
|
Read more...
|
|
|
|
|
|