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

short dump while using BAPI_PO_CREATE1

Former Member
0 Likes
1,792

Hi all,

I am facing this short dump while executing my program that uses BAPI_PO_CREATE1.

The error is 'Exception condition "failure" raised'.

The trigger location of runtime error is

Program : CL_HANDLE_MANAGER_MM====================CP

Include: CL_HANDLE_MANAGER_MM=====================CM005

Module name: GET

Source code:

Method GET.

If my_manager is initial.

Call method get_manager.

endif.

call method my_manager-> search EXporting im_id = im_id

Importing ex_handle = ex_handle

Exceptions failure = 01.

If sy-subrc <>0.

raise failure.

endif.

I am a beginner in ABAP. Plz help.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,035

Hi ,

I faced the similar situation once , in my case when i passed the Delivery indicator value in the Item Table as well as Itemx Table , i was facing this error .

what i suggest you is to pass it at the Item table only , not at the itemx Table.

it worked for me .

try this and reply for the same.

3 REPLIES 3
Read only

Former Member
0 Likes
1,035

HI,

This can be the issue of data type mismatch.........please check the values that you are passing to BAPI whether they are of same type as expected by BAPI..........

Read only

Former Member
0 Likes
1,036

Hi ,

I faced the similar situation once , in my case when i passed the Delivery indicator value in the Item Table as well as Itemx Table , i was facing this error .

what i suggest you is to pass it at the Item table only , not at the itemx Table.

it worked for me .

try this and reply for the same.

Read only

0 Likes
1,035

Hi,

I tried it and it worked!!!

Thanks a lot