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

Issue with input field in table control

Former Member
0 Likes
500

Hi,

I have an issue with field acgl_item-rstgr in the table control.

I have created a screen program with a table control.

In the control i have added a dictionary field as acgl_item-rstgr.

When i execute, do f4 on the input field, select a value and press enter, then it is showing me

error as 'Entry 'val' does not exist in T053R (check entry). Its really weird to understand this. I have selected the value

from f4 and even then it says this. Its working for all other columns, but not working only for RSTGR.

Plz help me on this regard.

Code is like this.

TYPES : BEGIN OF ty_rstgr,

rstgr TYPE RSTGR,

END OF ty_rstgr.

TABLES : ACGL_ITEM.

DATA : it_rstgr TYPE TABLE OF ty_rstgr.

DATA : wa_rstgr TYPE ty_rstgr.

CONTROLS : table TYPE TABLEVIEW USING SCREEN 100.

PROCESS BEFORE OUTPUT.

  • MODULE STATUS_0100.

LOOP AT it_rstgr INTO wa_rstgr WITH CONTROL TABLE.

ENDLOOP.

PROCESS AFTER INPUT.

  • MODULE USER_COMMAND_0100.

LOOP AT it_rstgr.

ENDLOOP.

Thanks,

Hi,

I have an issue with field acgl_item-rstgr in the table control.

I have created a screen program with a table control.

In the control i have added a dictionary field as acgl_item-rstgr.

When i execute, do f4 on the input field, select a value and press enter, then it is showing me

error as 'Entry 'val' does not exist in T053R (check entry). Its really weird to understand this. I have selected the value

from f4 and even then it says this. Its working for all other columns, but not working only for RSTGR.

Plz help me on this regard.

Code is like this.

TYPES : BEGIN OF ty_rstgr,

rstgr TYPE RSTGR,

END OF ty_rstgr.

TABLES : ACGL_ITEM.

DATA : it_rstgr TYPE TABLE OF ty_rstgr.

DATA : wa_rstgr TYPE ty_rstgr.

CONTROLS : table TYPE TABLEVIEW USING SCREEN 100.

PROCESS BEFORE OUTPUT.

  • MODULE STATUS_0100.

LOOP AT it_rstgr INTO wa_rstgr WITH CONTROL TABLE.

ENDLOOP.

PROCESS AFTER INPUT.

  • MODULE USER_COMMAND_0100.

LOOP AT it_rstgr.

ENDLOOP.

Thanks,

1 REPLY 1
Read only

naveen_kumar116
Active Participant
0 Likes
426

Hi Navitha,

Its Check Table concepts for the error u stated. Please check wht the Search help ur using...Because for this field there is no search help at value table level...Use search help that hold all master data or create a custom search field in SE11 level or in program level.

Cheers,

Naveen