Application Development 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: 

HR-ABAP Infotype short dump

Former Member
0 Kudos

Hi

I have created a custom infotype and I had added some additional logic in the module pool in PM01. Nw whn try to open the module by double clickin on it , it is goin for dump.

I'm gettin the followin error..

TSV_TNEW_PAGE_ALLOC_FAILED

No more storage space available for extending an internal table.

I jus want to know whether it is the problem of my object or shd I take the help of basis for this....

2 REPLIES 2

Former Member
0 Kudos

Hi mamtha ,

its due to ur new logic , better to check , may be its going for infinite loop.better to check ur logic thru debug , or paste it to review ur code.

Regards

Prabhu

Former Member
0 Kudos

Hi Prabhu,

But I never got this error before...I had worked on 3 to 4 custom infotypes...For all infotypes im gettin the same thing...even for those for which I had not inserted any logic...

This z my code which I had written in PBO of module pool, that to to disable the field.

&----


*& Module DIS_DTYP OUTPUT

&----


  • text

----


MODULE DIS_DTYP OUTPUT.

loop at screen.

check screen-group1 = 'SHW'.

screen-input = '0'.

modify screen.

endloop.

ENDMODULE.