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

ASSERTION_FAILED

satya23487
Explorer
0 Likes
4,263

Hello,

Getting ASSERTION_FAILED dump during ME41. Kindly help me to resolve the issue.

Findings :

The dump is becoz of statement ASSERT KOMK-ALAND.

5 REPLIES 5
Read only

Dominik_Tylczynski
SAP Champion
SAP Champion
4,096

Hello satya23487

See the note 3117214 - Assertion Failed dump during sales order creation

You are missing a plant in the sales order item. It's required when tax jurisdiction is active.

Best regards

Dominik Tylczynski

Read only

Ravi-pawan
Explorer
0 Likes
3,462

the assret condition is violated

Read only

Ravi-pawan
Explorer
0 Likes
3,461

Category ABAP programming error
Runtime Errors ASSERTION_FAILED
ABAP Program XO_BUSINESS_FACTORY===========CP
Application Component CA-FS-XO
Date and Time 10.01.2025 22:24:34 (CET)
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Short Text |
| The ASSERT condition was violated.

Read only

Ravi-pawan
Explorer
0 Likes
3,461

|method get_instance. |
| 2| |
| 3| data: |
| 4| lt_lo type table of cexo_lo, |
| 5| ls_bo type cexo_bo, |
| 6| ls_ref like line of ref_list, |
| 7| lv_tabix like sy-tabix, |
| 8| lcl_vo_factory type ref to xo_validation_factory. |
| 9| field-symbols: |
| 10| <lo> like line of lt_lo, |
| 11| <ref> like line of ref_list. |
| 12| |
| 13|* check contract violation: all parameters must be supplied |
| 14| assert: |
| 15| i_object_name is not initial, |
|>>>>>| i_object_key is not initial. |
| 17| |
| 18|* check, whether instance is in use |
| 19| read table ref_list assigning <ref> |
| 20| with table key |
| 21| bo_name = i_object_name |
| 22| object_key = i_object_key. |
| 23| |
| 24| if <ref> is assigned. |
| 25| r_instance = <ref>-reference. |
| 26| else. |
| 27| |
| 28| ls_ref-bo_name = i_object_name. |
| 29| ls_ref-object_key = i_object_key. |
| 30| |
| 31|* check, if a free recycleable instance is available |
| 32| read table recyclables assigning <ref> |
| 33| with key bo_name = i_object_name. |
| 34| |
| 35| if <ref> is assigned.

Read only

Ravi-pawan
Explorer
0 Likes
3,450

Category Dynpro runtime error
Runtime Errors DYNP_TOO_MANY_RADIOBUTTONS_ON
ABAP Program SAPLBUC0
Application Component AP-MD-BP
Date and Time 10.01.2025 22:17:41 (CET)
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Short Text |
| More than one radio button is active. |