cancel
Showing results for 
Search instead for 
Did you mean: 

BSEG table : Runtime error

Former Member
0 Kudos

Dear Experts,

Table BSEG is throws time-out error, how to solve this error.

regards

rajakarthik

Accepted Solutions (0)

Answers (2)

Answers (2)

markus_doehr2
Active Contributor
0 Kudos

> Table BSEG is throws time-out error, how to solve this error.

The table doesn't throw this error but a query running against it.

What program is causing the issue?

Markus

Former Member
0 Kudos

Hi thanks,

how to check the program which is caused error?

regards

rajak

Former Member
0 Kudos

Dear Raja,

Can you elaborate something more about issue?

Regards

Shailesh

Former Member
0 Kudos

Thanks,

in SE16 T-Code, i tried to executive BSEG table , its taking too much time and finally , it gives a mesage ABAP run time error,

Short text

No more storage space available for extending an internal table.

What happened?

You attempted to extend an internal table, but the required space was

not available.

for all other table its executing fine.

please help to solve this issue.

markus_doehr2
Active Contributor
0 Kudos

> in SE16 T-Code, i tried to executive BSEG table , its taking too much time and finally , it gives a mesage ABAP run time error,

> Short text

> No more storage space available for extending an internal table.

That means that you have not enough memory in your server to display all the selected entries.

Markus

RajeevP
Advisor
Advisor
0 Kudos

Hi Raja,

This shows that an internal table does not have enough space to execute ur action. U need to increase the space or add datafiles to the that table.

Check SM21 or log files at the time of error to find out the table name. Then u can increase the space either through SE14 or from Database itself.

Rajeev.

former_member209604
Active Contributor
0 Kudos

>

> This shows that an internal table does not have enough space to execute ur action. U need to increase the space or add datafiles to the that table.

> Check SM21 or log files at the time of error to find out the table name. Then u can increase the space either through SE14 or from Database itself.

I doubt your recommendation to increase datafiles of the table.

Internal tables are filled/created while executing programs, transactions....

There are several options to solve the issue:

- to adjust the memory parameter of the application server

- change the selection / program and retrieve less records

Best regards,

Ruediger

Former Member
0 Kudos

Thanks Ruediger for ypur reply,

can I ask abput limiits of memory areas ?

Exist a solution for allocation more than 4GB for user session on 64bit NW04 ?

Propably my report is "not good" and rewrites too many data to internal tables, but process not allocate more available memory than 4GB. Extended memory utilization is lower than 50%.

<part_of_dump>

Roll area...................... 6519248

Extended memory (EM)........... 2000693856

Assigned memory (HEAP)......... 2145441232

</part_of_dump>

Regards

Tom