‎2008 Mar 14 8:31 AM
hi,
my problem is . i working on production in transaction SE11 and table VBFA . when i click on number of entries the system hangs up .
plz solve my problem .......................
it very urgent
‎2008 Mar 14 8:35 AM
It is happening
because Production system has large no of entries
please avoid to do it
u just select randomaly 100 or 200 entries , for ur use by specifying noof entries.
rewards points if helpful.
‎2008 Mar 14 10:37 AM
Hi Pankaj,
This is because you have a huge volume of data in your table.
If you want to know about the no of records in the data base table you can simply write a code as follows:
Select field1( Your primary key of database table) into i_tab.
Describe table itab.
You will get the no of records.
Other way is ask your basis guy to let you know the no of records.
Regards
Sourabh verma
‎2008 Mar 14 10:47 AM
Hi,
Run this report. u will get no of entries.
report abc.
data: itab type table of VBELN_VON.
select vbelv from vbfa into table itab.
write sy-dbcnt.
‎2008 Mar 14 12:20 PM
Hi,
i think its bcoz of large volume of data.
Use either Describe command or sy-dbcnt to find the large amount of data.
Orelse you can your basis guy to help in this problem.
Reward if it worthful
‎2008 Mar 14 12:24 PM
Hi
This is because of large amount of data and load on the server
since the production is being run by so many people it will be slow
try entering the field values
regards
Shiva
‎2010 Jan 21 5:51 AM