2009 Feb 13 8:59 AM
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 ,
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
2009 Feb 13 9:04 AM
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
2009 Feb 14 11:38 AM
2009 Feb 14 11:45 AM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |