| Topics | Import Format | Search: |
|
It is possible to design a format to import Patient Registration details. Code: A format code can be defined while adding a new format. Name: The name of the format. Type: The import data file can be in one of the three types indicated with the Radio Buttons where the data columns are:
Fixed Width: Specify the Start and End Character positions of the field in the source file. Please note that the character position is 1-indexed. Delimited: The position of the field in the source file. XML: The tag corresponding to the field (including the path from the Record tag in case of nesting). E.g., consider the XML file: <PATIENT> <FNAME>Ricky</FNAME> <MNAME>I</MNAME> <LNAME>Ponting</LNAME> <DOB>01.01.1950</DOB> </PATIENT> The Name needs to be defined as FNAME. The Date of Birth needs to be defined as DOB. E.g., consider the XML file: <PATIENT> <NAME> <FNAME>Ricky</FNAME> <MNAME>I</MNAME> <LNAME>Ponting</LNAME> <DOB>01.01.1950</DOB> </NAME> </PATIENT> The Name needs to be defined as NAME.FNAME. The Date of Birth needs to be defined as DOB. E.g., consider the XML file: <PATIENT> FNAME=Ricky MNAME=I LNAME=Ponting DOB=01.01.1950 </PATIENT> The Name needs to be defined as FNAME with the Attribute Checked. The Date of Birth needs to be defined as DOB with the Attribute Checked. E.g., consider the XML file: <PATIENT> <NAME> FNAME=Ricky MNAME=I LNAME=Ponting </NAME> DOB=01.01.1950 </PATIENT> The Name needs to be defined as NAME.FNAME with the Attribute Checked. The Date of Birth needs to be defined as DOB with the Attribute Checked. The format can be saved and is used in Settings > Process > Import. |