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

system hangs during processing

Former Member
0 Likes
811

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

6 REPLIES 6
Read only

Former Member
0 Likes
766

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.

Read only

Former Member
0 Likes
766

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

Read only

asik_shameem
Active Contributor
0 Likes
766

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.

Read only

nivaskumar2
Explorer
0 Likes
766

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

Read only

Former Member
0 Likes
766

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

Read only

Former Member
0 Likes
766

answered