string spath; string sedifile = "277_005010X228.X12"; string sseffile = "277_005010X228.SemRef.EVAL0.SEF";

Size: px
Start display at page:

Download "string spath; string sedifile = "277_005010X228.X12"; string sseffile = "277_005010X228.SemRef.EVAL0.SEF";"

Transcription

1 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Edidev.FrameworkEDI; 1 namespace csharp_gen277x228 public partial class Form1 : Form public Form1() InitializeComponent(); private void button1_click(object sender, EventArgs e) edidocument oedidoc = null; edischema oschema = null; edischemas oschemas = null; ediinterchange ointerchange = null; edigroup ogroup = null; editransactionset otransactionset = null; edidatasegment osegment = null; int nhlcounter; int nhlinfosourcecounter; int nhlinforeceivercounter; int nhlserviceprovidercounter; int nhlpatientcounter; int nservicelinecounter; int nhlinfosources; int nhlinforeceivers; int nhlserviceproviders; int nhlpatients; int nservicelines; int nhlinforeceiverparent; int nhlserviceproviderparent; int nhlpatientparent; string spath; string sedifile = "277_005010X228.X12"; string sseffile = "277_005010X228.SemRef.EVAL0.SEF"; //evaluation SEF files spath = AppDomain.CurrentDomain.BaseDirectory; //CREATES OEDIDOC OBJECT edidocument.set(ref oedidoc, new edidocument()); //THIS MAKES CERTAIN THAT FREDI ONLY USES THE SEF FILE PROVIDED, AND THAT IT DOES //NOT USE ITS BUILT IN STANDARD REFERENCE TABLE TO GENERATE THE EDI FILE. edischemas.set(ref oschemas, (edischemas)oedidoc.getschemas()); oschemas.enablestandardreference = false; //ENABLES FORWARD WRITE, AND INCREASES BUFFER I/O TO IMPROVE PERFORMANCE oedidoc.cursortype = DocumentCursorTypeConstants.Cursor_ForwardWrite; oedidoc.set_property(documentpropertyidconstants.property_documentbufferio, 2000); //SET TERMINATORS oedidoc.segmentterminator = "~13:10"; oedidoc.elementterminator = "*";

2 oedidoc.compositeterminator = ":"; 2 //LOADS THE SEF FILE edischema.set(ref oschema, (edischema)oedidoc.loadschema(spath + sseffile, 0)); //CREATES THE ISA SEGMENT ediinterchange.set(ref ointerchange, (ediinterchange)oedidoc.createinterchange("x", "005010")); edidatasegment.set(ref osegment, (edidatasegment)ointerchange.getdatasegmentheader()); osegment.set_dataelementvalue(1, 0, "00"); //Authorization Information osegment.set_dataelementvalue(2, 0, " "); //Authorization Information osegment.set_dataelementvalue(3, 0, "00"); //Security Information osegment.set_dataelementvalue(4, 0, " "); //Security Information osegment.set_dataelementvalue(5, 0, "ZZ"); //Interchange ID osegment.set_dataelementvalue(6, 0, "SENDER ID "); //Interchange Sender ID osegment.set_dataelementvalue(7, 0, "ZZ"); //Interchange ID osegment.set_dataelementvalue(8, 0, "RECEIVER ID "); //Interchange Receiver ID osegment.set_dataelementvalue(9, 0, "010101"); //Interchange Date osegment.set_dataelementvalue(10, 0, "0101"); //Interchange Time osegment.set_dataelementvalue(11, 0, "^"); //Repetition Separator osegment.set_dataelementvalue(12, 0, "00501"); //Interchange Control Version Number osegment.set_dataelementvalue(13, 0, " "); //Interchange Control Number osegment.set_dataelementvalue(14, 0, "0"); //Acknowledgment Requested osegment.set_dataelementvalue(15, 0, "T"); //Usage Indicator osegment.set_dataelementvalue(16, 0, ":"); //Component Element Separator //CREATES THE GS SEGMENT edigroup.set(ref ogroup, (edigroup)ointerchange.creategroup("005010x228")); edidatasegment.set(ref osegment, (edidatasegment)ogroup.getdatasegmentheader()); osegment.set_dataelementvalue(1, 0, "HN"); //Functional Identifier Code osegment.set_dataelementvalue(2, 0, "APP SENDER"); //Application Sender's Code osegment.set_dataelementvalue(3, 0, "APP RECEIVER"); //Application Receiver's Code osegment.set_dataelementvalue(4, 0, " "); //Date osegment.set_dataelementvalue(5, 0, " "); //Time osegment.set_dataelementvalue(6, 0, "1"); //Group Control Number osegment.set_dataelementvalue(7, 0, "X"); //Responsible Agency Code osegment.set_dataelementvalue(8, 0, "005010X228"); //Version / Release / Industry Identifier Code )); //CREATES THE ST SEGMENT editransactionset.set(ref otransactionset, (editransactionset)ogroup.createtransactionset("277" edidatasegment.set(ref osegment, (edidatasegment)otransactionset.getdatasegmentheader()); osegment.set_dataelementvalue(1, 0, "277"); //Transaction Set Identifier Code osegment.set_dataelementvalue(2, 0, "0001"); //Transaction Set Control Number osegment.set_dataelementvalue(3, 0, "005010X228"); //Implementation Convention Reference //BHT BEGINNING OF HIERARCHICAL TRANSACTION edidatasegment.set(ref osegment, (edidatasegment)otransactionset.createdatasegment("bht")); osegment.set_dataelementvalue(1, 0, "0085"); //Hierarchical Structure Code osegment.set_dataelementvalue(2, 0, "08"); //Transaction Set Purpose Code osegment.set_dataelementvalue(3, 0, "277PEND123"); osegment.set_dataelementvalue(4, 0, " "); //Date osegment.set_dataelementvalue(5, 0, "1635"); //Time osegment.set_dataelementvalue(6, 0, "NO"); //Transaction Type Code nhlcounter = 0; nhlinfosourcecounter = 1; nhlinforeceivercounter = 1; nhlserviceprovidercounter = 1; nhlpatientcounter = 1; nservicelinecounter = 1; //This example has one of the following: nhlinfosources = 1; nhlinforeceivers = 1;

3 nhlserviceproviders = 1; nhlpatients = 1; nservicelines = 1; 3 //2000A INFORMATION SOURCE LEVEL while (nhlinfosourcecounter <= nhlinfosources) nhlcounter = nhlcounter + 1; //increment HL loop nhlinforeceiverparent = nhlcounter; //The value of this HL counter is the HL parent for the HL subscriber loop osegment.set_dataelementvalue(1, nhlcounter.tostring()); //Hierarchical ID Number osegment.set_dataelementvalue(3, "20"); //Hierarchical Level Code osegment.set_dataelementvalue(4, "1"); //Hierarchical Child Code \\NM1")); //2100A PAYER NAME //NM1 Payer Name edidatasegment.set(ref osegment, (edidatasegment)otransactionset.createdatasegment("hl\\nm1 osegment.set_dataelementvalue(1, 0, "PR"); //Entity Identifier Code osegment.set_dataelementvalue(2, 0, "2"); //Entity Type osegment.set_dataelementvalue(3, 0, "ABC INSURANCE"); //Name Last or Organization Name osegment.set_dataelementvalue(8, 0, "PI"); //Identification Code osegment.set_dataelementvalue(9, 0, "12345"); //Identification Code //2000B INFORMATION RECEIVER LEVEL while (nhlinforeceivercounter <= nhlinforeceivers) nhlcounter = nhlcounter + 1; nhlserviceproviderparent = nhlcounter; osegment.set_dataelementvalue(1, nhlcounter.tostring()); //Hierarchical ID Number osegment.set_dataelementvalue(2, nhlinforeceiverparent.tostring()); //Hierarchical Parent ID Number osegment.set_dataelementvalue(3, "21"); //Hierarchical Level Code osegment.set_dataelementvalue(4, "1"); //Hierarchical Child Code \NM1\\NM1")); Name //2100B INFORMATION RECEIVER NAME //NM1 Information Receiver Name edidatasegment.set(ref osegment, (edidatasegment)otransactionset.createdatasegment("hl\ osegment.set_dataelementvalue(1, 0, "41"); //Entity Identifier Code osegment.set_dataelementvalue(2, 0, "2"); //Entity Type osegment.set_dataelementvalue(3, 0, "XYZ SERVICE"); //Name Last or Organization osegment.set_dataelementvalue(8, 0, "46"); osegment.set_dataelementvalue(9, 0, "X67E"); //Identification Code //Identification Code //2000C SERVICE PROVIDER DETAIL LEVEL while (nhlserviceprovidercounter <= nhlserviceproviders) nhlcounter = nhlcounter + 1; nhlpatientparent = nhlcounter; osegment.set_dataelementvalue(1, nhlcounter.tostring()); //Hierarchical ID Number osegment.set_dataelementvalue(2, nhlserviceproviderparent.tostring()); // Hierarchical Parent ID Number osegment.set_dataelementvalue(3, "19"); //Hierarchical Level Code

4 osegment.set_dataelementvalue(4, "1"); //Hierarchical Child Code 4 ("HL\\NM1\\NM1")); Organization Name //2100C SERVICE PROVIDER NAME //NM1 Provider Name edidatasegment.set(ref osegment, (edidatasegment)otransactionset.createdatasegment osegment.set_dataelementvalue(1, 0, "1P"); //Entity Identifier Code osegment.set_dataelementvalue(2, 0, "2"); //Entity Type osegment.set_dataelementvalue(3, 0, "HOME HOSPITAL"); //Name Last or osegment.set_dataelementvalue(8, 0, "XX"); //Identification Code osegment.set_dataelementvalue(9, 0, " "); //Identification Code //2000D PATIENT DETAIL LEVEL while (nhlpatientcounter <= nhlpatients) nhlcounter = nhlcounter + 1; osegment.set_dataelementvalue(1, "4"); //Hierarchical ID Number osegment.set_dataelementvalue(2, "3"); //Hierarchical Parent ID Number osegment.set_dataelementvalue(3, "PT"); //Hierarchical Level Code NM1")); Name TRN")); Identification STC")); REF")); REF(2)")); //2100D PATIENT NAME //NM1 Patient Name edidatasegment.set(ref osegment, otransactionset.createdatasegment("hl\\nm1\\ osegment.set_dataelementvalue(1, 0, "QC"); osegment.set_dataelementvalue(2, 0, "1"); osegment.set_dataelementvalue(3, 0, "SMITH"); //Entity Identifier Code //Entity Type //Name Last or Organization osegment.set_dataelementvalue(4, 0, "FRED"); //Name First osegment.set_dataelementvalue(8, 0, "MI"); //Identification Code osegment.set_dataelementvalue(9, 0, " A"); //Identification Code //2200D PAYER CLAIM CONTROL NUMBER //TRN Payer Claim Control Number osegment.set_dataelementvalue(1, 0, "1"); //Trace Type Code osegment.set_dataelementvalue(2, 0, " "); //Reference //CLAIM LEVEL STATUS INFORMATION //STC STATUS INFORMATION osegment.set_dataelementvalue(1, 1, "P3"); //Health Care Claim Status osegment.set_dataelementvalue(1, 2, "317"); //Date osegment.set_dataelementvalue(2, 0, " "); //Date osegment.set_dataelementvalue(4, 0, " "); //Monetary Amount //PATIENT CONTROL NUMBER //REF REFERNCE IDENTIFICATION osegment.set_dataelementvalue(1, 0, "EJ"); osegment.set_dataelementvalue(2, 0, "SM123456"); //INSTITUTIONAL BILL TYPE IDENTIFIER //REF REFERNCE IDENTIFICATION osegment.set_dataelementvalue(1, "BLT");

5 osegment.set_dataelementvalue(2, "111"); 5 REF(3)")); REF(4)")); ////PHARMACY PRESCRIPTION NUMBER ////REF REFERNCE IDENTIFICATION // //osegment.set_dataelementvalue(1, "XZ"); //osegment.set_dataelementvalue(2, "222"); ////CLAIM ID NUMBER FOR CLEARINGHOUSE AND OTHER TRANSMISSION INTERMEDIARIES ////REF REFERNCE IDENTIFICATION // //osegment.set_dataelementvalue(1, "D9"); // //osegment.set_dataelementvalue(2, " "); // DTP")); Period //CLAIM LEVEL SERVICE DATE //DTP DATE OR TIME OR PERIOD osegment.set_dataelementvalue(1, 0, "472"); osegment.set_dataelementvalue(2, 0, "RD8"); osegment.set_dataelementvalue(3, 0, " "); //Date/Time //Date Time Period Format //Date Time //CLAIM RECEIVED DATE //DTP DATE OR TIME OR PERIOD edidatasegment.set(ref osegment, (edidatasegment)otransactionset. CreateDataSegment("HL\\TRN\\DTP(2)")); osegment.set_dataelementvalue(1, 0, "050"); //Date/Time osegment.set_dataelementvalue(2, 0, "D8"); //Date Time Period Format osegment.set_dataelementvalue(3, 0, " "); //Date Time Period (235) (234) \\SVC\\STC")); (98) //2220D SERVICE LINE INFORMATION while (nservicelinecounter <= nservicelines) //SVC Service Information osegment = otransactionset.createdatasegment("hl\\trn\\svc\\svc"); osegment.set_dataelementvalue(1, 1, "HC"); // Product/Service ID osegment.set_dataelementvalue(1, 2, "22305"); // Product/Service ID osegment.set_dataelementvalue(1, 3, ""); // Procedure Modifier (1339) osegment.set_dataelementvalue(1, 4, ""); // Procedure Modifier (1339) osegment.set_dataelementvalue(1, 5, ""); // Procedure Modifier (1339) osegment.set_dataelementvalue(1, 6, ""); // Procedure Modifier (1339) osegment.set_dataelementvalue(2, "350"); // Monetary Amount (782) osegment.set_dataelementvalue(4, ""); // Product/Service ID (234) osegment.set_dataelementvalue(7, "1"); // Quantity (380) //SERVICE LINE LEVEL STATUS INFO //STC Status Information edidatasegment.set(ref osegment, otransactionset.createdatasegment("hl\\trn osegment.set_dataelementvalue(1, 1, "A3"); // Industry Code (1271) osegment.set_dataelementvalue(1, 2, "122"); // Industry Code (1271) osegment.set_dataelementvalue(1, 3, "03"); // Entity Identifier Code osegment.set_dataelementvalue(1, 4, ""); // Entity Identifier Code (98) osegment.set_dataelementvalue(2, 0, " "); //Date

6 osegment.set_dataelementvalue(10, 1, "A3"); // Industry Code (1271) 6 (1271) Code (98) Code (98) (98) Code (98) \\SVC\\REF")); (128) (127) osegment.set_dataelementvalue(10, 2, "153"); osegment.set_dataelementvalue(10, 3, "82"); //osegment.set_dataelementvalue(10, 4, "RX"); // Industry Code // Entity Identifier // Entity Identifier osegment.set_dataelementvalue(11, 1, ""); // Industry Code (1271) osegment.set_dataelementvalue(11, 2, ""); // Industry Code (1271) osegment.set_dataelementvalue(11, 3, ""); // Entity Identifier Code //osegment.set_dataelementvalue(11, 4, "RX"); // Entity Identifier //SERVICE LINE ITEM ID //REF Reference Identification edidatasegment.set(ref osegment, otransactionset.createdatasegment("hl\\trn osegment.set_dataelementvalue(1, "FJ"); osegment.set_dataelementvalue(2, "11"); // Reference Identification // Reference Identification ////PHARMACY PRESCRIPTION NUMBER ////REF Reference Identification //edidatasegment.set(ref osegment, otransactionset.createdatasegment("hl\\ TRN\\SVC\\REF(2)")); //osegment.set_dataelementvalue(1, "XZ"); // Reference Identification (128) //osegment.set_dataelementvalue(2, "A1B2C3D4E5"); // Reference Identification (127) \\SVC\\DTP")); (374) (1250) (1251) //SERVICE LINE DATE //DTP Date or Time or Period edidatasegment.set(ref osegment, otransactionset.createdatasegment("hl\\trn osegment.set_dataelementvalue(1, "472"); osegment.set_dataelementvalue(2, "D8"); osegment.set_dataelementvalue(3, " "); // Date/Time // Date Time Period Format // Date Time Period nservicelinecounter = nservicelinecounter + 1; //nservicelinecounter = nservicelines nhlpatientcounter = nhlpatientcounter + 1; //nhlpatientcounter <= nhlpatients nhlserviceprovidercounter = nhlserviceprovidercounter + 1; //nhlserviceprovidercounter <= nhlserviceproviders nhlinforeceivercounter = nhlinforeceivercounter + 1; //nhlinforeceivercounter <= nhlinforeceivers nhlinfosourcecounter = nhlinfosourcecounter + 1; //nhlinfosourcecounter <= nhlinfosources //TRAILING SEGMENTS ARE AUTOMATICALLY CREATED WHEN FREDI COMMITS (SAVES) //THE EDIDOC OBJECT INTO AN EDI FILE. oedidoc.save(spath + sedifile); MessageBox.Show(oEdiDoc.GetEdiString(), "EDI X228");

7 //DESTROYS OBJECTS osegment.dispose(); otransactionset.dispose(); ogroup.dispose(); ointerchange.dispose(); oschema.dispose(); oschemas.dispose(); oedidoc.dispose(); 7

namespace csharp_gen277x214 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }

namespace csharp_gen277x214 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } using System using System.Collections.Generic using System.ComponentModel using System.Data using System.Drawing using System.Text using System.Windows.Forms using Edidev.FrameworkEDI 1 namespace csharp_gen277x214

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen277X214\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen277X214\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btngenerate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btngenerate.click Dim oedidoc As edidocument Dim oschema

More information

namespace Gen837X222A1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }

namespace Gen837X222A1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Edidev.FrameworkEDI; 1 namespace

More information

namespace csharp_gen837x223a2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }

namespace csharp_gen837x223a2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Edidev.FrameworkEDI; 1 namespace

More information

// Specify SEF file to load. edischema oschema = oedidoc.loadschema(spath + sseffilename, SchemaTypeIDConstants. Schema_Standard_Exchange_Format);

// Specify SEF file to load. edischema oschema = oedidoc.loadschema(spath + sseffilename, SchemaTypeIDConstants. Schema_Standard_Exchange_Format); using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Edidev.FrameworkEDIx64;

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen837X222A1\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen837X222A1\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btngenerate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btngenerate.click Dim oedidoc As edidocument Dim oschemas

More information

private string sconnection = ConfigurationManager.ConnectionStrings["Development"].ConnectionString

private string sconnection = ConfigurationManager.ConnectionStrings[Development].ConnectionString using System; using System.Configuration; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Drawing; using System.Text; using System.Windows.Forms;

More information

private string sconnection = ConfigurationManager.ConnectionStrings["Development"].ConnectionString

private string sconnection = ConfigurationManager.ConnectionStrings[Development].ConnectionString using System; using System.Configuration; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Drawing; using System.Text; using System.Windows.Forms;

More information

// Specify SEF file to load. oschema = (edischema) oedidoc.loadschema(spath + sseffilename, SchemaTypeIDConstants. Schema_Standard_Exchange_Format);

// Specify SEF file to load. oschema = (edischema) oedidoc.loadschema(spath + sseffilename, SchemaTypeIDConstants. Schema_Standard_Exchange_Format); using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Edidev.FrameworkEDI;

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen835X221A1\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen835X221A1\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btngenerate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btngenerate.click Dim oedidoc As edidocument Dim oschemas

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen834X220A1\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen834X220A1\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btngenerate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btngenerate.click Dim oedidoc As edidocument Dim oschemas

More information

Pennsylvania PROMISe Companion Guide

Pennsylvania PROMISe Companion Guide Pennsylvania Companion Guide Unsolicited 277 Claim Response Version 5010 September 2010 Version 1 Pennsylvania PROMISe Unsolicited 277 Claim Companion Guide This page intentionally left blank. September

More information

Cabinet for Health and Family Services Department for Medicaid Services

Cabinet for Health and Family Services Department for Medicaid Services KyHealth Choices 277 Health Care Payer Unsolicited Claim Status (ASC X12N 277) Companion Guide Version 2.3 Version 003070 Cabinet for Health and Family Services Department for Medicaid Services August

More information

Refers to the Technical Reports Type 3 Based on ASC X12 version X /277 Health Care Claim Status Inquiry and Response

Refers to the Technical Reports Type 3 Based on ASC X12 version X /277 Health Care Claim Status Inquiry and Response HIPAA Transaction Standard Companion Guide For Availity Health Information Network Users Refers to the Technical Reports Type 3 Based on ASC X12 version 005010X212 276/277 Health Care Claim Status Inquiry

More information

HIPAA 276/277 Companion Guide Cardinal Innovations Prepared for Health Care Providers

HIPAA 276/277 Companion Guide Cardinal Innovations Prepared for Health Care Providers Cardinal Innovations Prepared for Health Care Providers, February 2017 Table of Contents Preface... 4 1. Transaction Instruction (TI) Introduction... 5 1.1 Scope... 5 1.2 Overview... 5 1.3 References...

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Tran834X220A1\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Tran834X220A1\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btntranslate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btntranslate.click Dim oedidoc As edidocument Dim oschemas

More information

ANSI ASC X12N 277 Claims Acknowledgement (277CA)

ANSI ASC X12N 277 Claims Acknowledgement (277CA) ANSI ASC X12N 277 Claims Acknowledgement (277CA) Acute Care Long Term Care Encounters COMPANION GUE February 28, 2012 Texas Medicaid & Healthcare Partnership Page 1 of 23 Print Date: 1/10/2013 Table of

More information

Kentucky HIPAA HEALTH CARE PAYER UNSOLICITED CLAIM STATUS Companion Guide Unsolicited 277. Version 1.1

Kentucky HIPAA HEALTH CARE PAYER UNSOLICITED CLAIM STATUS Companion Guide Unsolicited 277. Version 1.1 Kentucky HIPAA HEALTH CARE PAYER UNSOLICITED CLAIM STATUS Companion Guide Unsolicited 277 Version 1.1 Released August 4, 2004 RECORD OF CHANGE VERSION NUMBER DATE REVISED DESCRIPTION OF CHANGE PERSONS

More information

276/277 Health Care Claim Status Request/ Response Real-Time. Section 1 276/277 Claim Status Request/Response: Basic Instructions

276/277 Health Care Claim Status Request/ Response Real-Time. Section 1 276/277 Claim Status Request/Response: Basic Instructions Companion Document 276/277 276/277 Health Care Claim Status Request/ Response Real-Time This companion document is for informational purposes only to describe certain aspects and expectations regarding

More information

276/277 Health Care Claim Status Request/ Response Real-Time. Section 1 276/277 Claim Status Request/Response: Basic Instructions

276/277 Health Care Claim Status Request/ Response Real-Time. Section 1 276/277 Claim Status Request/Response: Basic Instructions Companion Document 276/277 276/277 Health Care Claim Status Request/ Response Real-Time This companion document is for informational purposes only to describe certain aspects and expectations regarding

More information

276 Health Care Claim Status Request Educational Guide

276 Health Care Claim Status Request Educational Guide 276 Health Care Claim Status Request Educational Guide June 2010 - Version 1.1 Disclaimer INGENIX is still under development stages and frequent changes within this document are expected. This documentation

More information

HIPAA Transaction Health Care Claim Acknowledgement Standard Companion Guide (277CA, X214)

HIPAA Transaction Health Care Claim Acknowledgement Standard Companion Guide (277CA, X214) (underwritten by Dean Health Plan) HIPAA Transaction Health Care Claim Acknowledgement Standard Companion Guide (277CA, 005010X214) Instructions related to Transactions based on ASC X12 Implementation

More information

270/271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response

270/271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Companion Document 270/271 270/271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Basic Instructions This section provides information to help you prepare for the ANSI ASC X12.281 Eligibility,

More information

CALCULATOR APPLICATION

CALCULATOR APPLICATION CALCULATOR APPLICATION Form1.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;

More information

Integration Guide for Data Originators of Claim Status. Version 1.1

Integration Guide for Data Originators of Claim Status. Version 1.1 Integration Guide for Data Originators of Claim Status Version 1.1 December 23, 2010 Integration Guide for Data Originators of Claim Status Revision History Date Version Description Author November 25,

More information

USVI HEALTH ELIGIBILITY/BENEFIT INQUIRY 5010 Companion Guide 270

USVI HEALTH ELIGIBILITY/BENEFIT INQUIRY 5010 Companion Guide 270 USVI HEALTH ELIGIBILITY/BENEFIT INQUIRY 5010 Companion Guide 270 Date of Publication: 12/04/2012 Version: 1.1 DISCLAIMER The DXC Technology Companion Guide for USVI Medicaid is subject to change prior

More information

Unsolicited 277 Trading Partner Specification

Unsolicited 277 Trading Partner Specification Unsolicited 277 Trading Partner Specification Revision Summary: Revision Date Summary of Changes Number 1.0 3/20/2007 NPI changes in loop 2100C AmeriHealth U277 Unsolicited Health Care Claim Status Notification

More information

Kentucky HIPAA HEALTH CARE CLAIM: DENTAL Companion Guide 837

Kentucky HIPAA HEALTH CARE CLAIM: DENTAL Companion Guide 837 Kentucky HIPAA HEALTH CARE CLAIM: DENTAL Companion Guide 837 Version 1.4 Final RECORD OF CHANGE VERSION NUMBER DATE REVISED DESCRIPTION OF CHANGE PERSONS INVOLVED 1.0 10/25/02 Creation and first view by

More information

SHARES 837P Companion Guide

SHARES 837P Companion Guide SHARES 837P Companion Guide Contents Introduction... 2 SHARES 837 Guidelines... 2 SHARES Interchange Requirements... 2 Transaction Segment Delimiters and Terminators... 2 Claim Matching... 2 Service Line

More information

276/ /277 Health Care Claim Status Request and Response Real-Time. Basic Instructions. Companion Document

276/ /277 Health Care Claim Status Request and Response Real-Time. Basic Instructions. Companion Document Companion Document 276/277 276/277 Health Care Claim Status Request and Response Real-Time Basic Instructions This section provides information to help you prepare for the ANSI ASC X12.316 Health Care

More information

837 Health Care Claim Companion Guide. Professional and Institutional

837 Health Care Claim Companion Guide. Professional and Institutional 837 Health Care Claim Companion Guide Professional and Institutional Revised December 2011 Table of Contents Introduction... 3 Purpose... 3 References... 3 Additional information... 4 Delimiters Supported...

More information

West Virginia HEALTH ELIGIBILITY/BENEFIT INQUIRY Companion Guide 270

West Virginia HEALTH ELIGIBILITY/BENEFIT INQUIRY Companion Guide 270 West Virginia HEALTH ELIGIBILITY/BENEFIT INQUIRY Companion Guide 270 Date of Publication: 01/01/2014 Document Number: Version: 2.0 DISCLAIMER The Molina Healthcare Companion Guide for West Virginia is

More information

Vendor Specifications 270/271 Eligibility Benefit Inquiry and Response ASC X12N Version for. State of Idaho MMIS

Vendor Specifications 270/271 Eligibility Benefit Inquiry and Response ASC X12N Version for. State of Idaho MMIS Vendor Specifications 270/271 Eligibility Benefit Inquiry and Response ASC X12N Version 5010 for State of Idaho MMIS Date of Publication: 7/27/2017 Document : TL419 Version: 8.0 Revision History Version

More information

271 Health Care Eligibility Benefit Inquiry Response Educational Guide

271 Health Care Eligibility Benefit Inquiry Response Educational Guide 271 Health Care Eligibility Benefit Inquiry Response Educational Guide June 2010 - Version 1.1 Disclaimer INGENIX is still under development stages and frequent changes within this document are expected.

More information

270/271 Companion Document ASC X12N. Health Care Eligibility and Benefit Inquiry and Response Version 4010A1 Addenda October 2002

270/271 Companion Document ASC X12N. Health Care Eligibility and Benefit Inquiry and Response Version 4010A1 Addenda October 2002 Purpose of This Document 270/271 Companion Document ASC N Health Care Eligibility and Benefit Inquiry and Response Version 4010A1 Addenda October 2002 This companion guide has been written to assist those

More information

EMBLEMHEALTH HIPAA Transaction Standard Companion Guide

EMBLEMHEALTH HIPAA Transaction Standard Companion Guide EMBLEMHEALTH HIPAA Transaction Standard Companion Guide Refers to the X12N Implementation Guide 005010X222A1: 837P Health Care Claim Professional Transaction HIPAA Readiness Disclosure Statement The Health

More information

837 Dental Health Care Claim

837 Dental Health Care Claim Companion Document 837D 837 Dental Health Care Claim Basic Instructions This section provides information to help you prepare for the ANSI ASC X12N 837 Health Care transaction for dental claims. The remaining

More information

835 Health Care Claim Payment and Remittance Advice Companion Guide X091A1

835 Health Care Claim Payment and Remittance Advice Companion Guide X091A1 835 Health Care Claim Payment and Remittance Advice Companion Guide 004010 X091A1 Version 1.3 March 1, 2008 1-March-2008 TABLE OF CONTENTS 1 Introduction... 1 1.1 Purpose... 1 2 Transmission and Data Retrieval

More information

MOLINA MEDICAID SOLUTIONS

MOLINA MEDICAID SOLUTIONS MOLINA MEDICAID SOLUTIONS SUBMITTER S COMPION GUIDE FOR CSI MOLINA MEDICAID SOLUTIONS Submitter s Companion Guide for the Claims Status Inquiry System (CSI) Refers to the Implementation Guides Based on

More information

Partnership HealthPlan of California

Partnership HealthPlan of California Partnership HealthPlan of California HIPAA Transaction Companion Guide CORE: 276/277 Health Care Claim Status Request and Response ASC X12 version 005010 Disclosure Statement This document is subject to

More information

/277 Companion Guide. Refers to the Implementation Guides Based on X12 version Companion Guide Version Number: 1.1

/277 Companion Guide. Refers to the Implementation Guides Based on X12 version Companion Guide Version Number: 1.1 5010 276/277 Companion Guide Refers to the Implementation Guides Based on X12 version 005010 Companion Guide Version Number: 1.1 November 26, 2012 1 Disclosure It is the sole responsibility of the provider/vendor

More information

837 Healthcare Claim Companion Guide ANSI ASC X12N (Version 4010A) Professional, Institutional, and Dental

837 Healthcare Claim Companion Guide ANSI ASC X12N (Version 4010A) Professional, Institutional, and Dental 837 Healthcare Claim Companion Guide ANSI ASC X12N (Version 4010A) Professional, Institutional, and Dental State of Washington Department of Social & Health Services Prepared by: CNSI 3000 Pacific Avenue

More information

Standard Companion Guide. Refers to the Implementation Guide Based on X12 Version X212 Health Care Claim Status Request and Response (276/277)

Standard Companion Guide. Refers to the Implementation Guide Based on X12 Version X212 Health Care Claim Status Request and Response (276/277) Standard Companion Guide Refers to the Implementation Guide Based on X12 Version 005010X212 Health Care Claim Status Request and Response (276/277) Companion Guide Version Number 4.0 June 12, 2018 Change

More information

276/277 Claim Status Request and Response

276/277 Claim Status Request and Response 276/277 Claim Status Request and Response 276 & 277 Health Care Claim Status Request and Response 2 Overview 2 Connectivity Transmission Options 2 System Availability 3 Frequency of Data Exchange 3 Claim

More information

X A1 ADDENDA COMPANION DOCUMENT PROFESSIONAL (004010X098A1)

X A1 ADDENDA COMPANION DOCUMENT PROFESSIONAL (004010X098A1) X12 837 4010A1 ADDENDA COMPANION DOCUMENT PROFESSIONAL (004010X098A1) Updated February 2006 Submission of the National Provider Identifier (NPI) IN ADDITION to the Empire assigned provider Number (EPIN)

More information

Medical Associates Health Plans and Health Choices

Medical Associates Health Plans and Health Choices Medical Associates Health Plans and Health Choices 270/271 HIPAA Transaction Companion Guide HIPAA V5010X279A1 VERSION: 2.0 DATE: 06/21/2016 1 Disclosure Statement This material contains confidential,

More information

COMMONWEALTH CARE ALLIANCE CCA COMPANION GUIDE

COMMONWEALTH CARE ALLIANCE CCA COMPANION GUIDE COMMONWEALTH CARE ALLIANCE CCA 5010 837 COMPANION GUIDE PREFACE This Companion Guide is v5010 and ASC X12N compatible and adopted under HIPAA clarifies and specifies the data content when exchanging electronically

More information

277 STATUS RESPONSE - Outbound Translation

277 STATUS RESPONSE - Outbound Translation =equires, =ituational, N=Not Used egment 277 TATU EPONE - Outbound Translation ANI 277 Name Allowable Data Values IG INTECHANGE CONTOL HEADE IA01 Auth Infmation 00 No auth info present 03 Additional data

More information

276 STATUS REQUEST - Inbound Translation

276 STATUS REQUEST - Inbound Translation INTECHANGE CONTOL HEADE 276 TATU EQUET - Inbound Translation ANI 276 Name Allowable Data Values IG IA01 Auth Infmation 00 No auth info present 03 Additional data infmation B3 2 2 The following group of

More information

270/271 Benefit Eligibility Inquiry/Response Transactions Companion Guide ANSI ASC X12N 270/271 (Version 4010A)

270/271 Benefit Eligibility Inquiry/Response Transactions Companion Guide ANSI ASC X12N 270/271 (Version 4010A) 270/271 Benefit Eligibility Inquiry/Response Transactions ANSI ASC X12N 270/271 (Version 4010A) State of Washington Department of Social & Health Services Prepared by: CNSI 3000 Pacific Avenue S.E. Suite

More information

Florida Blue Health Plan

Florida Blue Health Plan FLORIDA BLUE HEALTH PLAN COMPANION GUIDE Florida Blue Health Plan ANSI 276/277- Health Care Claim Status Inquiry and Response Standard Companion Guide Refers to the Technical Report Type Three () of 005010X212A1

More information

It is recommended that separate transaction sets be used for different patients.

It is recommended that separate transaction sets be used for different patients. ASC X12N 278 (004010X094A1) Health Care Services Request For Review And Response Companion Guide Notes The ISA segment terminator, which immediately follows the component element separator, must consist

More information

837 Professional Health Care Claim. Section 1 837P Professional Health Care Claim: Basic Instructions

837 Professional Health Care Claim. Section 1 837P Professional Health Care Claim: Basic Instructions anthemeap.com Companion Document 837P This companion document is for informational purposes only to describe certain aspects and expectations regarding the transaction and is not a complete guide. The

More information

EDS SYSTEMS UNIT. Companion Guide: 837 Dental Claims Transaction

EDS SYSTEMS UNIT. Companion Guide: 837 Dental Claims Transaction EDS SYSTEMS UNIT I N D I A N A H E A L T H C O V E R A G E P R O G R A M S Companion Guide: 837 Dental Claims Transaction L I B R A R Y R E F E R E N C E N U M B E R : C L E L 1 0 0 1 3 [ A S C X 1 2 N

More information

Electronic Transaction Manual for Arkansas Blue Cross and Blue Shield FEDERALEMPLOYEEPROGRAM (FEP) DentalClaims

Electronic Transaction Manual for Arkansas Blue Cross and Blue Shield FEDERALEMPLOYEEPROGRAM (FEP) DentalClaims Electronic Transaction Manual for Arkansas Blue Cross and Blue Shield FEDERALEMPLOYEEPROGRAM (FEP) DentalClaims HIPAA Transaction Companion Document Guide Refers to the X12N Implementation Guide: 005010X224A2:

More information

General Companion Guide 837 Professional and Institutional Healthcare Claims Submission Version Version Date: June 2017

General Companion Guide 837 Professional and Institutional Healthcare Claims Submission Version Version Date: June 2017 General Companion Guide 837 Professional and Institutional Healthcare Claims Submission Version 5010 Version Date: June 2017 1 Introduction ************************************************************************

More information

5010 Upcoming Changes:

5010 Upcoming Changes: HP Systems Unit I N D I A N A H E A L T H C O V E R A G E P R O G R A M S 5010 Upcoming Changes: 837 Dental Claims Transaction Based on Version 5, Release 1 ASC X12N 005010X224 Revision Information Revision

More information

Gold Coast Health Plan Healthcare Claim: 837 Companion Guide. Versions: X222A X223A2

Gold Coast Health Plan Healthcare Claim: 837 Companion Guide. Versions: X222A X223A2 Gold Coast Health Plan Healthcare Claim: 837 Companion Guide Versions: 005010X222A1 005010X223A2 Updated December 30, 2016 2016 Conduent Business Services, LLC. All rights reserved. Conduent and Conduent

More information

ANSI ASC X12N 837 Healthcare Claim (Version X222A1-June 2010) Professional Companion Guide

ANSI ASC X12N 837 Healthcare Claim (Version X222A1-June 2010) Professional Companion Guide ANSI ASC X12N 837 Healthcare Claim (Version 005010X222A1-June 2010) Pruitt Health Premier Missouri Medicare Select Signature Advantage September 2015 TABLE OF CONTENTS AT A GLANCE II CHAPTER 1: INTRODUCTION

More information

X A1 Addenda Companion Document - Institutional (004010X096A1) - EFFECTIVE 05/23/07

X A1 Addenda Companion Document - Institutional (004010X096A1) - EFFECTIVE 05/23/07 Companion Document 837I++ X12 837 4010A1 Addenda Companion Document - Institutional (004010X096A1) - EFFECTIVE 05/23/07 Introduction The Federal Department of Health and Human Services has adopted regulations,

More information

Assurant Health HIPAA Transaction Standard Companion Guide

Assurant Health HIPAA Transaction Standard Companion Guide Assurant Health HIPAA Transaction Standard Companion Guide Refers to the Implementation Guides Based on ASC X12 version 005010 270/271 Health Care Eligibility Benefit Inquiry and Response CORE v5010 Master

More information

Health Care Claims: Status Request and Response (Version 1.12 January 2007)

Health Care Claims: Status Request and Response (Version 1.12 January 2007) PacifiCare Electronic Data Interchange 276/277 Transaction Companion Guide Health Care Claims: Status Request and Response (Version 1.12 January 2007) 276/277 ANSI ASC X12 276/277 (004010X093) ANSI ASC

More information

837 Professional Health Care Claim

837 Professional Health Care Claim Section 2A 837 Professional Health Care Claim Basic Instructions This section provides information to help you prepare for the ANSI ASC X12N 837 Health Care transaction for professional claims. The tables

More information

Refers to the Technical Reports Type 3 Based on ASC X12 version X223A2

Refers to the Technical Reports Type 3 Based on ASC X12 version X223A2 HIPAA Transaction Standard Companion Guide For Availity Health Information Network Users Refers to the Technical Reports Type 3 Based on ASC X12 version 005010X223A2 837 Health Care Claim Institutional

More information

270/ /271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time. Basic Instructions. Companion Document

270/ /271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time. Basic Instructions. Companion Document Companion Document 270/271 270/271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time Basic Instructions This section provides information to prepare for the ANSI ASC X12.281

More information

HIPAA TRANSACTION STANDARD 837 HEALTH CARE CLAIM: PROFESSIONAL COMPANION GUIDE APRIL 21, 2004 VERSION X098A1

HIPAA TRANSACTION STANDARD 837 HEALTH CARE CLAIM: PROFESSIONAL COMPANION GUIDE APRIL 21, 2004 VERSION X098A1 HIPAA TRANSACTION STANDARD 837 HEALTH CARE CLAIM: PROFESSIONAL COMPANION GUIDE APRIL 21, 2004 VERSION 004010X098A1 837 Health Care Claim: Professional Below is a summary of the fields that have additional

More information

BLUE CROSS AND BLUE SHIELD OF LOUISIANA PROFESSIONAL CLAIMS COMPANION GUIDE

BLUE CROSS AND BLUE SHIELD OF LOUISIANA PROFESSIONAL CLAIMS COMPANION GUIDE BLUE CROSS AND BLUE SHIELD OF LOUISIANA Table of Contents I. Introduction...3 II. General Specifications...4 III. Enveloping Specifications...5 IV. Loop and Data Element Specifications...7 V. Transaction

More information

837 Health Care Claim Professional, Institutional & Dental Companion Guide

837 Health Care Claim Professional, Institutional & Dental Companion Guide 837 Health Care Claim Professional, Institutional & Dental Companion Guide 005010X222A1 & 005010X223A1 V. 1.2 Created 07/18/14 Disclaimer Blue Cross of Idaho created this companion guide for 837 healthcare

More information

270/ /271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time. Basic Instructions. Companion Document

270/ /271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time. Basic Instructions. Companion Document Companion Document 270/271 270/271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time Basic Instructions This section provides information to prepare for the ANSI ASC X12.281

More information

if (say==0) { k.commandtext = "Insert into kullanici(k_adi,sifre) values('" + textbox3.text + "','" + textbox4.text + "')"; k.

if (say==0) { k.commandtext = Insert into kullanici(k_adi,sifre) values(' + textbox3.text + ',' + textbox4.text + '); k. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient;

More information

IBSDK Quick Start Tutorial for C# 2010

IBSDK Quick Start Tutorial for C# 2010 IB-SDK-00003 Ver. 3.0.0 2012-04-04 IBSDK Quick Start Tutorial for C# 2010 Copyright @2012, lntegrated Biometrics LLC. All Rights Reserved 1 QuickStart Project C# 2010 Example Follow these steps to setup

More information

HIPAA Transaction 278 Request for Review and Response Standard Companion Guide

HIPAA Transaction 278 Request for Review and Response Standard Companion Guide FLORIDA BLUE HEALTH PLAN COMPANION GUIDE HIPAA Transaction 278 Request for Review and Response Standard Companion Guide Refers to the Technical Reports Type 3 Based on ASC X12 version 005010X217 Companion

More information

Health Care Eligibility Benefit Inquiry and Response (270/271)

Health Care Eligibility Benefit Inquiry and Response (270/271) X12 Standards for Electronic Data Interchange Technical Report Type 3 Health Care Eligibility Benefit Inquiry and Response (270/271) Change Log : 005010-007030 JULY 2018 Intellectual Property X12 holds

More information

Object oriented lab /second year / review/lecturer: yasmin maki

Object oriented lab /second year / review/lecturer: yasmin maki 1) Examples of method (function): Note: the declaration of any method is : method name ( parameters list ).. Method body.. Access modifier : public,protected, private. Return

More information

270/271 Eligibility Inquiry/Response

270/271 Eligibility Inquiry/Response 270/271 Eligibility Inquiry/Response Overview... 1 Connectivity Transmission Options... 1 System Availability... 2 BlueCard and Federal Employee (FEP) Inquiries... 2 Eligibility Inquiry Processing... 2

More information

Visual Basic/C# Programming (330)

Visual Basic/C# Programming (330) Page 1 of 12 Visual Basic/C# Programming (330) REGIONAL 2017 Production Portion: Program 1: Calendar Analysis (400 points) TOTAL POINTS (400 points) Judge/Graders: Please double check and verify all scores

More information

Representing Recursive Relationships Using REP++ TreeView

Representing Recursive Relationships Using REP++ TreeView Representing Recursive Relationships Using REP++ TreeView Author(s): R&D Department Publication date: May 4, 2006 Revision date: May 2010 2010 Consyst SQL Inc. All rights reserved. Representing Recursive

More information

X A1 Addenda Companion Document - Professional (004010X098A1) - EFFECTIVE 05/23/07

X A1 Addenda Companion Document - Professional (004010X098A1) - EFFECTIVE 05/23/07 Companion Document 837I++ X12 837 4010A1 Addenda Companion Document - Professional (004010X098A1) - EFFECTIVE 05/23/07 Introduction The Federal Department of Health and Human Services has adopted regulations,

More information

BLUE CROSS AND BLUE SHIELD OF LOUISIANA INSTITUTIONAL CLAIMS COMPANION GUIDE

BLUE CROSS AND BLUE SHIELD OF LOUISIANA INSTITUTIONAL CLAIMS COMPANION GUIDE BLUE CROSS AND BLUE SHIELD OF LOUISIANA Table of Contents I. Introduction...3 II. General Specifications...4 III. Enveloping Specifications...5 IV. Loop and Data Element Specifications...7 V. Transaction

More information

270/ /271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time. Basic Instructions. Companion Document

270/ /271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time. Basic Instructions. Companion Document Companion Document 270/271 270/271 Health Care Eligibility, Coverage, or Benefit Inquiry and Response Real-Time Basic Instructions This section provides information to prepare for the ANSI ASC X12.281

More information

X A1 ADDENDA COMPANION DOCUMENT INSTITUTIONAL (004010X096A1)

X A1 ADDENDA COMPANION DOCUMENT INSTITUTIONAL (004010X096A1) X12 837 4010A1 ADDENDA COMPANION DOCUMENT INSTITUTIONAL (004010X096A1) Updated February 2006 Submission of the National Provider Identifier (NPI) IN ADDITION to the Empire assigned provider number (EPIN)

More information

Electronic Transaction Manual for Arkansas Blue Cross Blue Shield

Electronic Transaction Manual for Arkansas Blue Cross Blue Shield Electronic Transaction Manual for Arkansas Blue Cross Blue Shield HIPAA Transaction Companion Document Guide Refers to the X12N Implementation Guides: 004010X092A1: (270/271) Health Care Eligibility Benefit

More information

837 Companion Guide. October PR.P.WM.1 3/17

837 Companion Guide. October PR.P.WM.1 3/17 837 Companion Guide Refers to the Implementation Guides based on the HIPAA Transaction ASC X12N. Standards for Electronic Data Interchange X12N/005010x222 Health Care Claim: Professional (837P) and ASC

More information

NYEIS. 837 Health Care Claim Professional Companion Guide

NYEIS. 837 Health Care Claim Professional Companion Guide NYEIS New York State Department of Health Center for Community Health Bureau of Early Intervention 837 Health Care Professional Companion Guide HIPAA 005010X222A1 837: Health Care : Professional Version:

More information

MassHealth. Health Care Eligibility/Benefit Inquiry and Information Response (270/271) Standard Companion Guide

MassHealth. Health Care Eligibility/Benefit Inquiry and Information Response (270/271) Standard Companion Guide MassHealth Health Care Eligibility/Benefit Inquiry and Information Response (270/271) Standard Companion Guide Refers to the Implementation Guides Based on ASC X12N version: 005010X279A1 Copyright 2014

More information

Optum/Care Improvement Plus Healthcare Claim: 837 Companion Guide. Versions: X222A X223A2

Optum/Care Improvement Plus Healthcare Claim: 837 Companion Guide. Versions: X222A X223A2 Optum/Care Improvement Plus Healthcare Claim: 837 Companion Guide Versions: 005010X222A1 005010X223A2 Updated December, 2016 2016 Conduent Business Services, LLC. All rights reserved. Conduent and Conduent

More information

Streamline SmartCare Network180 EHR

Streamline SmartCare Network180 EHR Last modified 8/28/2016 Network180-Streamline837CompanionGuide20160818.doc Page 1 of 8 Streamline SmartCare Network180 EH HIPAA 837 Companion Guide for Direct Submitters (V 1.0 Updated 08/28/2016) Last

More information

855 Purchase Order Acknowledgment

855 Purchase Order Acknowledgment 855 Purchase Order Acknowledgment Functional Group ID= PR Introduction: This Draft Standard for Trial Use contains the format and establishes the data contents of the Purchase Order Acknowledgment Transaction

More information

CSIS 1624 CLASS TEST 6

CSIS 1624 CLASS TEST 6 CSIS 1624 CLASS TEST 6 Instructions: Use visual studio 2012/2013 Make sure your work is saved correctly Submit your work as instructed by the demmies. This is an open-book test. You may consult the printed

More information

Implementation Acknowledgment For Health Care Insurance (999) Change Log:

Implementation Acknowledgment For Health Care Insurance (999) Change Log: ASC X12 Standards for Electronic Data Interchange Technical Report Type 3 Implementation Acknowledgment For Health Care Insurance (999) Change Log: 005010-007030 OCTOBER 2016 OCTOBER 2016 1 Intellectual

More information

278 Health Care Service Review and Response

278 Health Care Service Review and Response 278 Health Care Service Review and Response Overview 2 Blue Card Inquiries (Blue Exchange) 2 Health Care Services Review Processing 2 Frequency of Data Exchange 2 Acknowledgements 2 Data Retention 3 Batch

More information

837 PROFESSIONAL CLAIMS AND ENCOUNTERS TRANSACTION COMPANION GUIDE

837 PROFESSIONAL CLAIMS AND ENCOUNTERS TRANSACTION COMPANION GUIDE 837 PROFESSIONAL CLAIMS AND ENCOUNTERS TRANSACTION COMPANION GUIDE OCTOBER 19, 2012 A S C X 1 2 N 8 3 7 (0 0 5 0 10 X 222A1) VERSION 3.0 TABLE OF CONTENTS 1.0 Overview 3 2.0 Introduction 4 3.0 Data Exchange

More information

The report heading will contain a fourth line if the transmission is a New Biller test, in addition to having a different report number.

The report heading will contain a fourth line if the transmission is a New Biller test, in addition to having a different report number. 11 west forty-second new york, ny 10046 www.empireblue.com DATE: July 2003 AUDIENCE: Institutional Electronic Claims Submitters SUBJECT: Electronic Media Claims (EMC) Receipt Report for 837 Institutional

More information

You can call the project anything you like I will be calling this one project slide show.

You can call the project anything you like I will be calling this one project slide show. C# Tutorial Load all images from a folder Slide Show In this tutorial we will see how to create a C# slide show where you load everything from a single folder and view them through a timer. This exercise

More information

Standard Companion Guide

Standard Companion Guide Response (278) Standard Companion Guide Refers to the Implementation Guides Based on X12 version 005010X217E2 Health Care Services Review Request for Review and Companion Guide Version Number: 2.0 October

More information

Indiana Health Coverage Programs

Indiana Health Coverage Programs Indiana Health Coverage Programs HIPAA Transaction Standard Companion Guide Refers to the Implementation Guides Based on ASC X12 version 005010 Health Care Services Review Inquiry/Response (278) Companion

More information

816 Organizational Relationships

816 Organizational Relationships 816 Organizational Relationships Functional Group ID=OR Introduction: This Draft Standard for Trial Use contains the format and establishes the data contents of the Organizational Relationships Transaction

More information

Now find the button component in the tool box. [if toolbox isn't present click VIEW on the top and click toolbox]

Now find the button component in the tool box. [if toolbox isn't present click VIEW on the top and click toolbox] C# Tutorial - Create a Tic Tac Toe game with Working AI This project will be created in Visual Studio 2010 however you can use any version of Visual Studio to follow along this tutorial. To start open

More information

Experiment 5 : Creating a Windows application to interface with 7-Segment LED display

Experiment 5 : Creating a Windows application to interface with 7-Segment LED display Experiment 5 : Creating a Windows application to interface with 7-Segment LED display Objectives : 1) To understand the how Windows Forms in the Windows-based applications. 2) To create a Window Application

More information

Sanford Health Plan. HIPAA Transaction Standard Companion Guide. Refers to the Technical Report Type 3 (TR3) Implementation Guides

Sanford Health Plan. HIPAA Transaction Standard Companion Guide. Refers to the Technical Report Type 3 (TR3) Implementation Guides Sanford Health Plan HIPAA Transaction Standard Companion Guide Refers to the Technical Report Type 3 (TR3) Implementation Guides Based on ASC X12 Version 005010X212A1 Health Care Claim Status Request and

More information