cancel
Showing results for 
Search instead for 
Did you mean: 

Job Control for LO-Cockpit for SD Sales BW keeps on cancelling

Former Member
0 Kudos

Hi All,

It seems that whenever I tried to run a job control (delta queue) for SD Sales BW in the source system for LO Cockpit, it seems to get cancelled.

The line in the Job Log Entries is ABAP/4 processor: MESSAGE_TYPE_X

If I go to ST22 to look at the details, it tells me that it terminates at program SAPLMCEX in MCEX_UPDATE_11. The main program was "RMCEXUP1.

Really need help for this. Thanks.

View Entire Topic
Former Member
0 Kudos

Aahhhh...probably you changed some extraxct structure of one datasource in 11 application component...

Try to further investigate on the details of your dump...

Former Member
0 Kudos

Hi Robert,

This is the short dump from the message. It seems to be failing on the HASH checking on line 74. I hope you can help me to look on this messages as I am not familiar with it. Thanks.

<b>SHORT DUMP</b>

44

45 IF NOT I_DDIC_HASH IS INITIAL.

46

47 IF gf_tmsp_hash_ok IS INITIAL.

48

49 CALL FUNCTION 'MCEX_GEN_AND_CHECK_HASH'

50 EXPORTING

51 I_FUNCNAME = 'MCEX_UPDATE_11'

52 I_COLLECTIVE_RUN = 'X'

53 I_APPLICATION = '11'

54 I_STORED_DDIC_HASH = I_DDIC_HASH

55 I_STORED_TMSP_HASH = I_TMSP_HASH

56 IMPORTING

57 E_DDIC_HASH = I_DDIC_HASH

58 E_TMSP_HASH = lf_TMSP_HASH

59 EXCEPTIONS

60 HASH_COMPARE_OK = 1

61 HASH_COMPARE_NOT_OK = 2

62 NO_INTERFACE = 3

63 HASH_ERROR = 4

64 DDIC_ERROR = 5

65 OTHERS = 6 .

66

67 IF I_TMSP_HASH = lf_tmsp_hash.

68 gf_tmsp_hash_ok = true.

69 ENDIF.

70 case sy-subrc.

71 when 0. " Compare OK - do nothing

72 when 1. "Compare OK - do nothing

73 when 2. " Compare not ok - abort

>> message x194(mcex) with sy-subrc.

75 when others.

76 message x193(mcex) with sy-subrc.

77 endcase.

78 endif.

79 endif.

80

81 * HASH***********************************************

82

83

84 IF NOT MC11VA0HDR_TAB[] IS INITIAL.

85 CALL FUNCTION 'RSC1_TRFC_QUEUE_WRITE'

86 EXPORTING

87 I_ISOURCE = MC11VA0HDR_ISOURCE

88 I_NO_FLUSH = 'X'

89 TABLES

90 I_T_DATA = MC11VA0HDR_TAB

91 EXCEPTIONS

92 OTHERS = 1.

93 ENDIF.

Former Member
0 Kudos

Hi Robert,

This issue is resolved. I tried to delete the extraction queue for application component 11 and after running delete and filling of setup, the job control is running successfully now.

Thanks.