Author |
Message |
Topic: insert XML in output tree |
rasol
Replies: 11 Views: 5627
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 20, 2006 1:48 pm Subject: insert XML in output tree |
I got data from DB2 and stored in EV as
E.V.temp[] =
<DetailRecords>
<Name>D2</Name>
<Location>
<Locationcode>
<code>RFC</code>
<Amount>90< ... |
Topic: MB extension in QPasa |
rasol
Replies: 3 Views: 6187
|
Forum: IBM MQ Performance Monitoring Posted: Tue Aug 29, 2006 9:28 am Subject: MB extension in QPasa |
Thanks for the response.
I will check with the mqsoftware technical representative.
Jeff...QPasa provides the processing node which can be included in msg flows to view the performance.Is that y ... |
Topic: MB extension in QPasa |
rasol
Replies: 3 Views: 6187
|
Forum: IBM MQ Performance Monitoring Posted: Mon Aug 28, 2006 9:45 am Subject: MB extension in QPasa |
Hello Everybody,
I have developed a message flow in Broker Ver 5.I have to monitor and view the performance and generate a report in QPasa.
Already QPasa is use to monitor some Queues in AIX a ... |
Topic: To find total length |
rasol
Replies: 7 Views: 4627
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 10:32 pm Subject: To find total length |
fjb_saper your exactly correct and I can figure out the length since CWF is fixed format.
for eg
01 A.
05 B PIC X(05)
05 C PIC X(05)
Now I can hardcode in my esql 10 as reco ... |
Topic: esql vs COBOL syntax |
rasol
Replies: 5 Views: 3781
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 10:20 pm Subject: esql vs COBOL syntax |
Jeff, I am not able to find the equivalent verb in eSQL reference. Could you please point me any kind of documentation.That will help me out. |
Topic: Select sum |
rasol
Replies: 7 Views: 4928
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 10:17 pm Subject: Select sum |
The message comes from SAP system and we have handled AMOUNT field upfront in SAP system .So AMOUNT will not have null values when it comes to WBI.
All I have to do is to accumulate the sum of all ... |
Topic: Select sum |
rasol
Replies: 7 Views: 4928
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 4:01 pm Subject: Select sum |
none of the values are null. |
Topic: To find total length |
rasol
Replies: 7 Views: 4627
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 3:58 pm Subject: To find total length |
Sorry for the confusion.I mean Output CWF message.
I am converting input XML message to CWF format.One of the fields in CWF format needs the RECORD LENGTH because the CWF layout uses the depending ... |
Topic: Select sum |
rasol
Replies: 7 Views: 4928
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 3:52 pm Subject: Select sum |
I looked into that thread and I coded the same but I cannot see Environment.Variables.Total field after the execution of SELECT statement in debug mode. |
Topic: esql vs COBOL syntax |
rasol
Replies: 5 Views: 3781
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 1:16 pm Subject: esql vs COBOL syntax |
Nothing specific to COBOL in esql reference.I just came across LEAVE statment to break the loop. |
Topic: To find total length |
rasol
Replies: 7 Views: 4627
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 1:14 pm Subject: To find total length |
Thank for ur response jeff.
I am sorry with HEADER-DATA which is one of the element in the message but I want the length of entire message which is in CWF format.
SET RecordLength = LENGTH(Outpu ... |
Topic: Select sum |
rasol
Replies: 7 Views: 4928
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 12:52 pm Subject: Select sum |
Hi All,
I want to acculmate the amount of each item from a XML message.
Here is the code and it works fine
.details:AMOUNT AS DECIMAL);
SET Totalsum = Totalsum + Environment.Variables.A ... |
Topic: To find total length |
rasol
Replies: 7 Views: 4627
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 12:39 pm Subject: To find total length |
I need to find the total length of record which is in CWF format.I used the following esql but nothing is return. I am using WBIMB 5 on windows
SET RecordLength = LENGTH(OutputRoot.MRM.HEADER-DATA) ... |
Topic: esql vs COBOL syntax |
rasol
Replies: 5 Views: 3781
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2006 12:32 pm Subject: esql vs COBOL syntax |
Is there any equivalent COBOL verbs like CONTINUE and NEXT SENTENCE in WBIMB. |