cancel
Showing results for 
Search instead for 
Did you mean: 

Messages not showing in POSDM component

former_member601528
Participant
0 Kudos

Dear All,

I'm doing a scenario, file to proxy through XI. i'm sending the POS data to POSDM. The message is processed from XI successfully, but not reaching the POSDM. when i cross-checked everything, i found the message is available in SXMB_MONI of BI system. but why it's not reaching the

"/POSDW/MON0 " component. What might be the reason. As it's severe issue,please anyone tell me the solution to this issue.

Regards.

Aravind

Accepted Solutions (0)

Answers (2)

Answers (2)

markangelo_dihiansan
Active Contributor
0 Kudos

Hello Aravind,

In the sxi_monitor of your BI System, if the messages are in scheduled status (green flag), it means that you need to register a queue via SMQR. Usually, registering the queue name XBTR* in D mode will do the trick.

Hope this helps,

Mark

former_member601528
Participant
0 Kudos

Dear Mark,

The messages in Successful status in SXMB_MONI. still not posted in POSDM, the problem is with the parallel processing of messages by using proxy. we made changes by putting lockwait & wait statements in proxy program, we resolved the issue.

Regards,

Aravind

Former Member
0 Kudos

Hello Aravind,

Did you find answer for this one? If yes, can you please share, as I am also getting the same problem. Appreciate your help!

Thanks,

Vinay

former_member601528
Participant
0 Kudos

Dear Vinay,

We resolved this problem by making change in the proxy program, like this

IF lt_tran IS NOT INITIAL.

     CALL FUNCTION '/POSDW/CREATE_TRANSACTIONS_EXT'
       EXPORTING
         it_transaction           = lt_tran
*         I_SOURCEOBJECTLINK       =
*         I_CREATEONLY             =
          I_LOCKWAIT               = 50
          i_commit                 = 'X'
      EXCEPTIONS
        error_occurred           = 1
        OTHERS                   = 2

And also look into the program, according to your requirement.

Regards,

Aravind