cancel
Showing results for 
Search instead for 
Did you mean: 

JCOMessage Status Code Desc

Former Member
0 Kudos

Hi,

What is the desc for 6 JCOMessage processing Status codes?

I received status code 2 for some RFC messages. These RFC are completed one.

What are desc and code for failed, no rule etc.,?

and also how to get last 500 RFC messages. For example, if i give rowcount is 500 and start date is 2010-06-06T15:00:00 and end time is 2010-06-08T15:00:00, and if no of message is more than 500, it is giving the first 500 messages only. But i want to see last 500 messages. How to get this?

Regards,

Senthil

Accepted Solutions (1)

Accepted Solutions (1)

sidnooradarsh
Contributor
0 Kudos

Hello Senthil,

Description for Message Processing Status Codes,

1 = Received

2 = Processed

3 = Failed

4 = No Rule Defined

5 = Running

6 = Categorized message

Hope this helps!!

Regards,

Adarsh

Answers (2)

Answers (2)

sidnooradarsh
Contributor
0 Kudos

Hello Senthil,

To Fetch last 500 messages, I would try using XPath expression in repeater action block something like this

1) Do not restrict row count to 500, let all the messages come in

2) Use a repeater and in links you can filter the Messages by message id to bring down last 500 like,

 "Query_Messages_0.BufferListDoc{/JCOMessageList/JCOMessage[MessageId>last()-"&500&"]}" 

This should give you last 500 messages

Hope this helps!!

Regards,

Adarsh

Edited by: Adarsh Sidnoor on Jun 10, 2010 12:57 PM

sidnooradarsh
Contributor
0 Kudos

Hello Senthil,

To Fetch last 500 messages, I would try using XPath expression in repeater action block something like this

1) Do not restrict row count to 500, let all the messages come in

2) Use a repeater and in links you can filter the Messages by message id to bring down last 500 like,

 "Query_Messages_0.BufferListDoc{/JCOMessageList/JCOMessage[MessageId>last()-"&500&"]}" 

This should give you last 500 messages

Hope this helps!!

Regards,

Adarsh

Edited by: Adarsh Sidnoor on Jun 10, 2010 12:57 PM