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

CONTROL_NOT_FOUND in Table control

Former Member
0 Likes
2,255

Hi All,

I am extending Material master. While creation of table control on the subscreen through screen exit. I am able to test the table control being shown on the test button. But this subscreen is being assigned to the main screen of the SAP* Progrom. But that is returning with CONTROL_NOT_FOUND error.

Please anybody can know me possible reasons for the table control giving such errors...

Regards,

Brijesh Patel

Hi All,

I am extending Material master. While creation of table control on the subscreen through screen exit. I am able to test the table control being shown on the test button. But this subscreen is being assigned to the main screen of the SAP* Progrom. But that is returning with CONTROL_NOT_FOUND error.

Please anybody can know me possible reasons for the table control giving such errors...

Regards,

Brijesh Patel

7 REPLIES 7
Read only

Former Member
0 Likes
1,451

.......

Read only

Former Member
0 Likes
1,451

Hi,

Have you defined the table control properly :

controls : <tab_ctrl> tye tableview using screen <screenno>.

Rgds

Read only

naimesh_patel
Active Contributor
0 Likes
1,451

Hello,

Check the defination of your table control.

It must be

controls: tab_cntrl TYPE TABLEVIEW USING SCREEN 0100.

tab_cntrl = name of table control

<b>0100 = number of subscreen</b>

Regards,

Naimesh

Read only

0 Likes
1,451

define control in top include try this

Read only

Former Member
0 Likes
1,451

Zapper is right. Declare

CONTROLS TABLE_CONTROL TYPE TABLEVIEW USING SCREEN 100.

and then use the table_control.

Regards,

Ravi

Read only

anversha_s
Active Contributor
0 Likes
1,451

hi,

declate like this in top include.

CONTROLS: tab_control TYPE TABLEVIEW USING SCREEN 9010.

regrds

anver

if hlped mark points

Read only

Former Member
0 Likes
1,451

Hi Patel,

U just declare the table control for the screen at <b>global level</b> where all the <b>global data</b> is declared like this

CONTROLS: TABLE_CONTROL TYPE TABLEVIEW USING SCREEN 100.

Hope this will help.

Regards

-


Sachin