|
#1
|
|||
|
|||
|
Hi, i want to ask as im generating HL7 message form db same as i will generate X12 837 message using sample x12 outbound message template , and one more thing where can i get Mirth ref. guide
![]() thanks |
|
#3
|
|||
|
|||
|
Great
I did not start yet, im just exploring Mirth. But how can I perform iteration in x12 loops (1000, 2000 etc), or add/modify/delete segments ??? thanks |
|
#4
|
|||
|
|||
|
Here's an example of iterating through every PID segment in the message:
Code:
for each (pid in msg.PID) logger.info(pid['PID.05']['PID.05.1'].toString()); Code:
var pid = <PID/>; pid['PID.05']['PID.05.1'] = 'test'; msg.appendChild(pid); |
|
#5
|
|||
|
|||
|
very nice. it means i have to write lot of JavaScript for manipulation of x12 segments...
Could you please describe a little bit about the objects like msg, tmp, messageObject etc. when i use javascript/E4X thanks Last edited by Haider Ali; 04-10-2012 at 03:58 AM. |
|
#6
|
|||
|
|||
|
Quote:
http://www.mirthcorp.com/community/f...ead.php?t=6433 |
![]() |
| Thread Tools | |
| Display Modes | |
|
|