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: 

ST22 Dump Pointing to ab_inidt?

Former Member
0 Kudos

Anybody ever seen this in a dump?

The termination occurred in the function "ab_inidt" of the SAP

Basis System, specifically in line 336 of the module

"//bas/46D/src/krn/runt/abload4.c#3".

Thank-You.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Looks like something for OSS.

I take it back. The last line you posted shows you the problem. You have declared a variable PRIPDATA in the common area of your program and are calling a form in standard SAP program SAPFV50P. But the length of PRIPDATA in your program is different from that in SAPFV50P. Change the declaration of PRIPDATA in your program to match the declaration in SAPFV50P.

Actuall, it's the structure that's different in you program. The structure of PRIPDATA in your program must be:

data: begin of common part pripdata.

  • Communication structure header

*data: tkomk type standard table of komk with header line. "v_696724

data: tkomk like standard table of komk

with key key_uc

initial size 2

with header line. "^_696724

  • Communication structure item

data: tkomp type standard table of komp with header line.

  • Conditions

data: tkomv type standard table of komv with header line.

data: end of common part.

Rob

Message was edited by:

Rob Burbank

4 REPLIES 4

Former Member
0 Kudos

Hi Tom,

Send the complete dump..

thanks

Mahesh

0 Kudos

Is this possible from ST22. I don't see an option to cut and paste?

Thank-You.

0 Kudos

ABAP runtime errors LOAD_COMMON_PART

Occurred on 09/10/2007 at 13:48:27

The length of COMMON PART "PRIPDATA" in program "SAPFV50P" is incorrect.

What happened?

The current ABAP/4 program "SAPMV50A " had to be terminated because

one of the statements could not be executed.

This is probably due to an error in the ABAP/4 program.

What can you do?

Note the actions and input that caused the error.

Inform your SAP system administrator.

You can print out this message by choosing "Print". Transaction ST22

allows you to display and manage termination messages, including keeping

them beyond their normal deletion date.

Error analysis

The structure of the COMMON PART "PRIPDATA" in program "SAPFV50P" is

different from the area in the calling program.

Former Member
0 Kudos

Looks like something for OSS.

I take it back. The last line you posted shows you the problem. You have declared a variable PRIPDATA in the common area of your program and are calling a form in standard SAP program SAPFV50P. But the length of PRIPDATA in your program is different from that in SAPFV50P. Change the declaration of PRIPDATA in your program to match the declaration in SAPFV50P.

Actuall, it's the structure that's different in you program. The structure of PRIPDATA in your program must be:

data: begin of common part pripdata.

  • Communication structure header

*data: tkomk type standard table of komk with header line. "v_696724

data: tkomk like standard table of komk

with key key_uc

initial size 2

with header line. "^_696724

  • Communication structure item

data: tkomp type standard table of komp with header line.

  • Conditions

data: tkomv type standard table of komv with header line.

data: end of common part.

Rob

Message was edited by:

Rob Burbank