2007 Sep 14 10:09 AM
Hi,
I have a development like creating a custom screen with table control for tcode ME21n, ME22n and ME23n at item level. A tab will be displayed at item level and it contains a table control in display mode only. i have the exit MM06E005 for this. But i don't know how to add table control in screen exit. Please anybody help me in this regard.
Any help will be appreciated.
Regards,
Naveen
2007 Sep 14 10:17 AM
Hi Naveen
Go to CMOD . create new project .Tab Enhancement assignment , Entry 'MM06E005' and choose Tab Component. you will see the screen exit which you can modify as you like
Regards
Wiboon
Hi,
I have a development like creating a custom screen with table control for tcode ME21n, ME22n and ME23n at item level. A tab will be displayed at item level and it contains a table control in display mode only. i have the exit MM06E005 for this. But i don't know how to add table control in screen exit. Please anybody help me in this regard.
Any help will be appreciated.
Regards,
Naveen
2007 Sep 14 10:17 AM
Hi Naveen
Go to CMOD . create new project .Tab Enhancement assignment , Entry 'MM06E005' and choose Tab Component. you will see the screen exit which you can modify as you like
Regards
Wiboon
2007 Sep 14 10:28 AM
hi,
i know all process otherthan table control in screen. when i create a table control in subscreen and activats it gives a error like control statement is missing. but where to give the control statement? its an include program
2007 Sep 14 10:58 AM
Hi Naveen
you need to add more code for table control .
declare variable for control (assume tc_main), internal table for loop the table control : itab.
C
in the screen exit
PROCESS BEFORE OUTPUT.
MODULE status_0100.
LOOP AT itab
WITH CONTROL tc_main CURSOR tc_main-top_line.
ENDLOOP.
PROCESS AFTER INPUT.
LOOP AT itab .
ENDLOOP.
Regards
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |