Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

table control in screen exit

Former Member
0 Likes
1,027

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
665

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

3 REPLIES 3
Read only

Former Member
0 Likes
666

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

Read only

0 Likes
665

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

Read only

0 Likes
665

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