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

Value not displayed on screen

Former Member
0 Likes
671

Hi all,

I am uisng a custom upload program to store some valeus in a custom table. This table is linked to the Customer Data screen in BP, and this screen was developed using EEWB.

When I am creating the BP manually, the values are getting stored in the table and I am able to view them on the screen. However, When I am using my program to insert the values, although the values are getting populated in the database, it is not being reflected on the screen.

I have checked for these values in the database and they exist in the table, and a new entry is being created in the database when I am using my program and still the value is not getting displayed on the screen.

Can anyone tell me what could be the problem??

Thanks,

Sachin.

Hi all,

I am uisng a custom upload program to store some valeus in a custom table. This table is linked to the Customer Data screen in BP, and this screen was developed using EEWB.

When I am creating the BP manually, the values are getting stored in the table and I am able to view them on the screen. However, When I am using my program to insert the values, although the values are getting populated in the database, it is not being reflected on the screen.

I have checked for these values in the database and they exist in the table, and a new entry is being created in the database when I am using my program and still the value is not getting displayed on the screen.

Can anyone tell me what could be the problem??

Thanks,

Sachin.

3 REPLIES 3
Read only

Former Member
0 Likes
616

hi...

if you are getting them in database and not on screen then it has got problem in read asscesss ie select statement...

you check in with select statment

regards

Read only

Former Member
0 Likes
616

Did it...

Read only

Former Member
0 Likes
616

hi ,

make sure that fields which u have taken in internal table are available in select statment or not .

eg

data : begin of itab ,

matnr like mara-matnr ,

mtart like mara-mtart ,

end of itab .

select matnr mtart from mara into table itab .

loop at itab .

write : / itab-matnr , itab-mtart .

endloop .

that is logic plz use this logic