cancel
Showing results for 
Search instead for 
Did you mean: 

Error in ECC - MESSAGE_TYPE_X / SAPLMCEX / LO-LIS

prem_kool
Participant
0 Kudos

Hello,

I am getting error message in ECC - for a BW job.

LIS-BW-VB_APPLICATION_02_100 / 01001901

Information on where terminated
    Termination occurred in the ABAP program "SAPLMCEX" - in "MCEX_UPDATE_02".
    The main program was "RMCEXUP1 ".

    In the source code you have the termination point in line 61
    of the (Include) program "LMCEXU03".
    The program "SAPLMCEX" was started as a background job.
    Job Name....... "LIS-BW-VB_APPLICATION_02_100"
    Job Initiator.. "FF_BWCUTOVER"
    Job Number..... 01001901

Source Code Extract

    CALL FUNCTION 'MCEX_GEN_AND_CHECK_HA
      EXPORTING
        i_funcname          = 'MCEX_UPDA
        i_collective_run    = 'X'
        i_application      = '02'
        i_stored_ddic_hash  = i_ddic_has
        i_stored_tmsp_hash  = i_tmsp_has
      IMPORTING
        e_ddic_hash        = i_ddic_has
        e_tmsp_hash        = lf_tmsp_ha
      EXCEPTIONS
        hash_compare_ok    = 1
        hash_compare_not_ok = 2
        no_interface        = 3
        hash_error          = 4
        ddic_error          = 5
        OTHERS              = 6.

    IF i_tmsp_hash = lf_tmsp_hash.
      gf_tmsp_hash_ok = true.
    ENDIF.
    CASE sy-subrc.
      WHEN 0. " Compare OK - do nothing
      WHEN 1. "Compare OK - do nothing
      WHEN 2. " Compare not ok - abort
        MESSAGE x194(mcex) WITH sy-subrc
      WHEN OTHERS.
        MESSAGE x193(mcex) WITH sy-subrc
    ENDCASE.
  ENDIF.
ENDIF.

I tried to search the SCN for this issue, but could find only one discussion - with no details.

Would appreciate if you gurus can help with resolving this.

Thank you for your time.

Accepted Solutions (0)

Answers (2)

Answers (2)

RamanKorrapati
Active Contributor
0 Kudos

Hi,

Have you done any changes to data source recently?

at RSA3, are you able to do extraction?

at RSA7 - Your data source have records (total column >0 against your data source)?

if not then your delta pointer may be corrupted.

Lets try to replicate and activate data source at bw prod.

if not rectified then you may need to handle thru transports.

Thanks

Former Member
0 Kudos

Hi Prem,

Did you enhance or the change the extractor by adding or removing any fields.

Also check the status of SM13.

Thanks,

shakthi raj natarajan.

prem_kool
Participant
0 Kudos

Hi Shakthi,

The SM13 status looks clean. There are no update requests.

I am not sure about the change in extractor.

Thanks

Prem

Former Member
0 Kudos

Hi Prem,

I still believe the extract structure should be changed, can you please check if there is any change in extractor.

thanks,

Shakthi

Former Member
0 Kudos

Hi Prem,

You have to replicate the datasource agian in your BW system. Problem is mostly with the changed extract structure as Shakthi already said. Message no. MCEX 194 (Structures have changed (sy-subrc=&1)). So replicate it again and try extraction.

Also try extracting data in RSA3 once.

Thanks

Amit