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: 

The current application triggered a termination with a short dump

Former Member
0 Kudos

Hi guys,

I faced with short dump in ABAP application program: SAPLCRM_EVENT_OW.

Application Component:  CRM-BTX-BF

Description:

The current application program detected a situation which really should not occur. Therefore, a termination with a short dump was                             

triggered on purpose by the key word MESSAGE (type X).

Technical information about the message:

Message class....... "CRM_INTLAY"

Number.............. 302

Termination occurred in the ABAP program "SAPLCRM_EVENT_OW" - in "GET_PROCESS_TYPE". The main program was "SAPMHTTP ".

In the source code you have the termination point in line 81 of the (Include) program "LCRM_EVENT_OWF04".

There is piece of code, where this dump occured:

|   51|      MESSAGE x028(crm_ssc) WITH 'FU CRM_EVENT_PUBLISH_OW'.                                 |

|   52|  ENDCASE.                                                                                  |

|   53|                                                                                            |

|   54|ENDFORM.                                                              "                     |

|   55|*                                                                                           |

|   56|*---------------------------------------------------------------------*                     |

|   57|*  FORM GET_PROCESS_TYPE                                              *                     |

|   58|*---------------------------------------------------------------------*                     |

|   59|FORM get_process_type USING value(iv_guid_hdr)     TYPE crmt_object_guid                    |

|   60|                   CHANGING value(iv_process_type) TYPE crmt_process_type                   |

|   61|                            value(iv_org_pft)      TYPE crmt_event_attribut                 |

|   62|                            value(iv_object_type)  TYPE swo_objtyp.                         |

|   63|                                                                                            |

|   64|  DATA: ls_proc_type TYPE  crmc_proc_type.                                                  |

|   65|  DATA: ls_partner_obj TYPE  comc_partner_obj.                                              |

|   66|                                                                                            |

|   67|                                                                                            |

|   68|  CALL FUNCTION 'CRM_ORDERADM_H_READ_OW'                                                    |

|   69|    EXPORTING                                                                               |

|   70|      iv_orderadm_h_guid     = iv_guid_hdr                                                  |

|   71|    IMPORTING                                                                               |

|   72|      ev_process_type        = iv_process_type                                              |

|   73|      ev_object_type         = iv_object_type                                               |

|   74|    EXCEPTIONS                                                                              |

|   75|      admin_header_not_found = 1                                                            |

|   76|      OTHERS                 = 2.                                                           |

|   77|                                                                                            |

|   78|                                                                                            |

|   79|  IF ( NOT sy-subrc IS INITIAL ) OR                                                         |

|   80|     ( iv_process_type IS INITIAL ).                                                        |

|>>>>>|    MESSAGE x302(crm_intlay).                                                               |

|   82|  ENDIF.                                                                                    |

|   83|                                                                                            |

|   84|* Get partner info                                                                          |

|   85|  CALL FUNCTION 'CRM_ORDER_PROC_TYPE_SELECT_CB'                                             |

|   86|    EXPORTING                                                                               |

|   87|      iv_process_type = iv_process_type                                                     |

|   88|    IMPORTING                                                                               |

|   89|      es_proc_type    = ls_proc_type                                                        |

|   90|    EXCEPTIONS                                                                              |

|   91|      entry_not_found = 1                                                                   |

|   92|      OTHERS          = 3.                                                                  |

|   93|                                                                                            |

|   94|  IF sy-subrc = 0.                                                                          |

|   95|    iv_org_pft = ls_proc_type-org_partner_pft.                                              |

|   96|  ENDIF.                                                                                    |

|   97|                                                                                            |

|   98|  IF iv_org_pft IS INITIAL.                                                                 |

|   99|* get info via comc_partner_obj using main BUS                                              |

|  100|                                                                                            |

6 REPLIES 6

Former Member
0 Kudos

Hi Sanzhar

Check for OSS Notes from SAP.

Regards

Arden

0 Kudos

There are no appropriate notes for this problem. Almost all notes realted to this problem are obsolete.

0 Kudos

Then you log a ticket with SAP.

They investigate and provide the appropriate solution.

If it's a SAP Standard Program with an issue, SAP are to provide resolution

0 Kudos

This message was moderated.

Former Member
0 Kudos

Hi

Refer SAP Note: 1979331

Regards

Suganya

0 Kudos

Hi Suganya

If your issue is resolved, please mark the thread as answered.

Regards

Arden