2007 Nov 19 12:07 PM
Can some body tell me how to code in the requirement that unless i check the checkbox the adjacent i/o field should be no display only if i check the checkbox the adjacent i/o field should be active.
2007 Nov 19 1:04 PM
Hi
by useing EVENT level in table maintance you can do this
http://help.sap.com/saphelp_nw04s/helpdata/en/91/ca9f0ea9d111d1a5690000e82deaaa/content.htm
<b>Reward i fusefull</b>
Can some body tell me how to code in the requirement that unless i check the checkbox the adjacent i/o field should be no display only if i check the checkbox the adjacent i/o field should be active.
2007 Nov 19 1:04 PM
Hi
by useing EVENT level in table maintance you can do this
http://help.sap.com/saphelp_nw04s/helpdata/en/91/ca9f0ea9d111d1a5690000e82deaaa/content.htm
<b>Reward i fusefull</b>
2007 Nov 20 7:03 AM
Hi,
These validations can be done in the PAI of the table.
Also you can code it in the Events of the Table Maintenance.
Go to Table Maintenance Generator of the table.
Create the Table Maintenance.
Got to Environment->Modification->Events.
There are many events from which you can use.
2007 Nov 20 7:21 AM
Hi Sandeep,
This is an example code through which you can fulfill your requirement...
******/
SELECTION-SCREEN: BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-002.
PARAMETERS: P_DOWN AS CHECKBOX.
PARAMETERS: P_FILE LIKE RLGRAP-FILENAME MODIF ID MOD.
* parameters: p_sep type fc_flg MODIF ID MOD. "Separator
SELECTION-SCREEN: END OF BLOCK B3.*****//at selection screen event
AT SELECTION-SCREEN OUTPUT.
PERFORM ENABLE_DISABLE.*****//form for screen loop....
FORM ENABLE_DISABLE .
IF P_DOWN = ' '.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'MOD'.
SCREEN-ACTIVE = '0'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
ENDFORM. " enable_disable*******// end of form....
here you can tick one check box and activate other check box....
I hope this code will help you....
rewards points....
Cheers,
Enjoy...
Sagun Desai.....
2007 Dec 31 8:31 AM
What is the use of table maintenance generator.
what is the impact of TMG.
kindly explain me.
rgds
thiru
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |