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

Size: px
Start display at page:

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

Transcription

1 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 As edischemas Dim ointerchange As New ediinterchange Dim ogroup As New edigroup Dim otransactionset As New editransactionset Dim osegment As New edidatasegment Dim nbillprovider As Integer Dim nbillprovidercounter As Integer Dim nsubscribers As Integer Dim nsubscribercounter As Integer Dim ndependents As Integer Dim ndependentcounter As Integer Dim nhlcounter As Integer Dim nhlsubscriberparent As Integer Dim nhldependentparent As Integer Dim spath As String Dim sedifile As String = "837_5010X222A1.X12" Dim sseffile As String = "837_005010X222A1.SemRef.EVAL0.SEF" spath = AppDomain.CurrentDomain.BaseDirectory 'CREATES OEDIDOC OBJECT 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. oschemas = oedidoc.getschemas oschemas.enablestandardreference = False 'ENABLES FORWARD WRITE, AND INCREASES BUFFER I/O TO IMPROVE PERFORMANCE oedidoc.cursortype = DocumentCursorTypeConstants.Cursor_ForwardWrite oedidoc.property(documentpropertyidconstants.property_documentbufferio) = 200 'SET TERMINATORS oedidoc.segmentterminator = "~" oedidoc.elementterminator = "*" oedidoc.compositeterminator = ":" 'LOADS THE SEF FILE oedidoc.loadschema(spath + sseffile, 0) 'CREATES THE ISA SEGMENT ediinterchange.set(ointerchange, oedidoc.createinterchange("x", "005010")) edidatasegment.set(osegment, ointerchange.getdatasegmentheader) osegment.dataelementvalue(1) = "00" 'Authorization Information Qualifier osegment.dataelementvalue(2) = "" 'Authorization Information osegment.dataelementvalue(3) = "00" 'Security Information Qualifier osegment.dataelementvalue(4) = "" 'Security Information osegment.dataelementvalue(5) = "ZZ" 'Interchange ID Qualifier osegment.dataelementvalue(6) = "SENDER_ID" 'Interchange Sender ID osegment.dataelementvalue(7) = "ZZ" 'Interchange ID Qualifier osegment.dataelementvalue(8) = "REVEIVER_ID" 'Interchange Receiver ID osegment.dataelementvalue(9) = "020617" 'Interchange Date osegment.dataelementvalue(10) = "1816" 'Interchange Time osegment.dataelementvalue(11) = "^" 'Repetition Separator osegment.dataelementvalue(12) = "00501" 'Interchange Control Version Number osegment.dataelementvalue(13) = " " 'Interchange Control Number

2 osegment.dataelementvalue(14) = "0" 'Acknowledgment Requested osegment.dataelementvalue(15) = "T" 'Usage Indicator osegment.dataelementvalue(16) = ":" 'Component Element Separator 2 'CREATES THE GS SEGMENT edigroup.set(ogroup, ointerchange.creategroup("005010x222a1")) edidatasegment.set(osegment, ogroup.getdatasegmentheader) osegment.dataelementvalue(1) = "HC" 'Functional Identifier Code osegment.dataelementvalue(2) = "SENDER_ID" 'Application Sender's Code osegment.dataelementvalue(3) = "RECEIVER_ID" 'Application Receiver's Code osegment.dataelementvalue(4) = " " 'Date osegment.dataelementvalue(5) = "1816" 'Time osegment.dataelementvalue(6) = "206" 'Group Control Number osegment.dataelementvalue(7) = "X" 'Responsible Agency Code osegment.dataelementvalue(8) = "005010X222A1" 'Version / Release / Industry Identifier Code 'CREATES THE ST SEGMENT editransactionset.set(otransactionset, ogroup.createtransactionset("837")) edidatasegment.set(osegment, otransactionset.getdatasegmentheader) osegment.dataelementvalue(1) = "837" 'Transaction Set Identifier Code osegment.dataelementvalue(2) = "0021" 'Transaction Set Control Number osegment.dataelementvalue(3) = "005010X222A1" 'Implementation Convention Reference 'BHT BEGINNING OF HIERARCHICAL TRANSACTION edidatasegment.set(osegment, otransactionset.createdatasegment("bht")) osegment.dataelementvalue(1) = "0019" 'Hierarchical Structure Code osegment.dataelementvalue(2) = "00" 'Transaction Set Purpose Code osegment.dataelementvalue(3) = "244579" 'Reference Identification osegment.dataelementvalue(4) = " " 'Date osegment.dataelementvalue(5) = "1023" 'Time osegment.dataelementvalue(6) = "CH" 'Transaction Type Code '1000A SUBMITTER 'NM1 SUBMITTER NAME edidatasegment.set(osegment, otransactionset.createdatasegment("nm1\nm1")) osegment.dataelementvalue(1) = "41" 'Entity Identifier Code osegment.dataelementvalue(3) = "PREMIER BILLING SERVICE" 'Name Last or Organization Name osegment.dataelementvalue(8) = "46" 'Identification Code Qualifier osegment.dataelementvalue(9) = "TGJ23" 'Identification Code 'PER SUBMITTER EDI CONTACT INFO edidatasegment.set(osegment, otransactionset.createdatasegment("nm1\per")) osegment.dataelementvalue(1) = "IC" 'Contact Function Code osegment.dataelementvalue(2) = "JERRY" 'Name osegment.dataelementvalue(3) = "TE" 'Communication Number Qualifier osegment.dataelementvalue(4) = " " 'Communication Number osegment.dataelementvalue(5) = "EX" 'Communication Number Qualifier osegment.dataelementvalue(6) = "231" 'Communication Number '1000B RECEIVER 'NM1 RECEIVER edidatasegment.set(osegment, otransactionset.createdatasegment("nm1\nm1")) osegment.dataelementvalue(1) = "40" 'Entity Identifier Code osegment.dataelementvalue(3) = "KEY INSURANCE COMPANY" 'Name Last or Organization Name osegment.dataelementvalue(8) = "46" 'Identification Code Qualifier osegment.dataelementvalue(9) = "66783JJT" 'Identification Code nbillprovider = 1 'This example has one billing provider... nbillprovidercounter = 1 nsubscribers = 1 '...one subscriber nsubscribercounter = 1 ndependents = 1 '...and one dependent ndependentcounter = 1 nhlcounter = 0

3 3 '2000A BILLING PROVIDER HL LOOP Do While nbillprovidercounter <= nbillprovider nhlcounter = nhlcounter + 1 'increment HL loop nhlsubscriberparent = nhlcounter 'The value of this HL counter is the HL parent for the HL subscriber loop 'HL BILLING PROVIDER edidatasegment.set(osegment, otransactionset.createdatasegment("hl\hl")) osegment.dataelementvalue(1) = nhlcounter 'Hierarchical ID Number osegment.dataelementvalue(3) = "20" 'Hierarchical Level Code osegment.dataelementvalue(4) = "1" 'Hierarchical Child Code 'PRV BILLING PROVIDER SPECIALTY INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\prv")) osegment.dataelementvalue(1) = "BI" 'Provider Code osegment.dataelementvalue(2) = "PXC" 'Reference Identification Qualifier osegment.dataelementvalue(3) = "203BF0100Y" 'Reference Identification '2010AA BILLING PROVIDER 'NM1 BILLING PROVIDER NAME osegment.dataelementvalue(1) = "85" 'Entity Identifier Code osegment.dataelementvalue(3) = "BEN KILDARE SERVICE" 'Name Last or Organization Name osegment.dataelementvalue(8) = "XX" 'Identification Code Qualifier osegment.dataelementvalue(9) = " " 'Identification Code 'N3 BILLING PROVIDER ADDRESS INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\n3")) osegment.dataelementvalue(1) = "234 SEAWAY ST" 'Address Information 'N4 BILLING PROVIDER LOCATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\n4")) osegment.dataelementvalue(1) = "MIAMI" 'City Name osegment.dataelementvalue(2) = "FL" 'State or Province Code osegment.dataelementvalue(3) = "33111" 'Postal Code 'REF BILLING PROVIDER TAX IDENTIFICATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\ref")) osegment.dataelementvalue(1) = "EI" 'Reference Identification Qualifier osegment.dataelementvalue(2) = " " 'Reference Identification '2010AB PAY TO PROVIDER 'NM1 PAY TO PROVIDER NAME osegment.dataelementvalue(1) = "87" 'Entity Identifier Code 'N3 PAY TO PROVIDER ADDRESS INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\n3")) osegment.dataelementvalue(1) = "2345 OCEAN BLVD" 'Address Information 'N4 PAY TO PROVIDER LOCATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\n4")) osegment.dataelementvalue(1) = "MAIMI" 'City Name osegment.dataelementvalue(2) = "FL" 'State or Province Code osegment.dataelementvalue(3) = "33111" 'Postal Code '2000B SUBSCRIBER HL LOOP Do While nsubscribercounter <= nsubscribers nhlcounter = nhlcounter + 1 nhldependentparent = nhlcounter 'HL SUBSCRIBER LEVEL edidatasegment.set(osegment, otransactionset.createdatasegment("hl\hl"))

4 osegment.dataelementvalue(1) = nhlcounter 'Hierarchical ID Number osegment.dataelementvalue(2) = nhlsubscriberparent 'Hierarchical Parent ID Number osegment.dataelementvalue(3) = "22" 'Hierarchical Level Code If ndependents > 0 Then osegment.dataelementvalue(4) = "1" 'Hierarchical Child Code Else osegment.dataelementvalue(4) = "0" 'Hierarchical Child Code End If 4 'SBR SUBSCRIBER INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\sbr")) osegment.dataelementvalue(1) = "P" 'Payer Responsibility Sequence Number Code osegment.dataelementvalue(3) = "2222 SJ" 'Reference Identification osegment.dataelementvalue(9) = "CI" 'Claim Filing Indicator Code '2010BA SUBSCRIBER 'NM1 SUBSCRIBER NAME osegment.dataelementvalue(1) = "IL" 'Entity Identifier Code osegment.dataelementvalue(2) = "1" 'Entity Type Qualifier osegment.dataelementvalue(3) = "SMITH" 'Name Last or Organization Name osegment.dataelementvalue(4) = "JANE" 'Name First osegment.dataelementvalue(8) = "MI" 'Identification Code Qualifier osegment.dataelementvalue(9) = "JS " 'Identification Code 'DMG SUBSCRIBER DEMOGRAPHIC INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\dmg")) osegment.dataelementvalue(1) = "D8" 'Date Time Period Format Qualifier osegment.dataelementvalue(2) = " " 'Date Time Period osegment.dataelementvalue(3) = "F" 'Gender Code '2010BB PAYER 'NM1 PAYER NAME osegment.dataelementvalue(1) = "PR" 'Entity Identifier Code osegment.dataelementvalue(3) = "KEY INSURANCE COMPANY" 'Name Last or Organization Name osegment.dataelementvalue(8) = "PI" 'Identification Code Qualifier osegment.dataelementvalue(9) = " " 'Identification Code 'REF BILLING PROVIDER SECONDARY IDENTIFICATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\ref")) osegment.dataelementvalue(1) = "G2" 'Reference Identification Qualifier osegment.dataelementvalue(2) = "KA6663" 'Reference Identification 'The claims loop can occur in both the HL subscriber loop and HL patient (dependent) loop If ndependents = 0 Then 'Subscriber's claims Call Proc_2300_Claim(oTransactionset) Else '2000C PATIENT HL LOOP Do While ndependentcounter <= ndependents nhlcounter = nhlcounter + 1 Number 'HL PATIENT LEVEL edidatasegment.set(osegment, otransactionset.createdatasegment("hl\hl")) osegment.dataelementvalue(1) = nhlcounter 'Hierarchical ID Number osegment.dataelementvalue(2) = nhldependentparent 'Hierarchical Parent ID osegment.dataelementvalue(3) = "23" 'Hierarchical Level Code osegment.dataelementvalue(4) = "0" 'Hierarchical Child Code 'PAT PATIENT INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\pat")) osegment.dataelementvalue(1) = "19" 'Individual Relationship Code

5 5 End Sub End If '2010CA PATIENT 'NM1 PATIENT NAME osegment.dataelementvalue(1) = "QC" 'Entity Identifier Code osegment.dataelementvalue(2) = "1" 'Entity Type Qualifier osegment.dataelementvalue(3) = "SMITH" 'Name Last or Organization Name osegment.dataelementvalue(4) = "TED" 'Name First 'N3 PATIENT ADDRESS INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\n3")) osegment.dataelementvalue(1) = "236 N MAIN ST" 'Address Information 'N4 PATIENT LOCATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\n4")) osegment.dataelementvalue(1) = "MIAMI" 'City Name osegment.dataelementvalue(2) = "FL" 'State or Province Code osegment.dataelementvalue(3) = "33413" 'Postal Code 'DMG PATIENT DEMOGRAPHIC INFORMATION edidatasegment.set(osegment, otransactionset.createdatasegment("hl\nm1\dmg")) osegment.dataelementvalue(1) = "D8" 'Date Time Period Format Qualifier osegment.dataelementvalue(2) = " " 'Date Time Period osegment.dataelementvalue(3) = "M" 'Gender Code 'Patient's claims Call Proc_2300_Claim(oTransactionset) ndependentcounter = ndependentcounter + 1 nsubscribercounter = nsubscribercounter + 1 nbillprovidercounter = nbillprovidercounter + 1 'TRAILING SEGMENTS ARE AUTOMATICALLY CREATED WHEN FREDI COMMITS (SAVES) 'THE EDIDOC OBJECT INTO AN EDI FILE. oedidoc.save(spath + sedifile) 'DISPLAY EDI ON SCREEN MessageBox.Show(oEdiDoc.GetEdiString, sedifile) 'DESTROYS OBJECTS osegment.dispose() otransactionset.dispose() ogroup.dispose() ointerchange.dispose() oschemas.dispose() oedidoc.dispose() Private Sub Proc_2300_Claim(ByRef otransactionset As editransactionset) Dim osegment As edidatasegment Dim nclaims As Integer Dim nclaimcounter As Integer Dim nservices As Integer Dim nservicecounter As Integer nclaims = 1 'This example has one Claim... nclaimcounter = 1

6 '2300 CLAIM Do While nclaimcounter <= nclaims 'CLM HEALTH CLAIM edidatasegment.set(osegment, otransactionset.createdatasegment("hl\clm\clm")) osegment.dataelementvalue(1) = " " 'Claim Submitter's Identifier osegment.dataelementvalue(2) = "100" 'Monetary Amount osegment.dataelementvalue(5, 1) = "11" 'Facility Code Value osegment.dataelementvalue(5, 2) = "B" 'Facility Code Qualifier osegment.dataelementvalue(5, 3) = "1" 'Claim Frequency Type Code osegment.dataelementvalue(6) = "Y" 'Yes/No Condition or Response Code osegment.dataelementvalue(7) = "A" 'Provider Accept Assignment Code osegment.dataelementvalue(8) = "Y" 'Yes/No Condition or Response Code osegment.dataelementvalue(9) = "I" 'Release of Information Code 6 End Sub End Class 'REF CLAIM IDENTIFICATION NUMBER FOR CLEARING HOUSES edidatasegment.set(osegment, otransactionset.createdatasegment("hl\clm\ref")) osegment.dataelementvalue(1) = "D9" 'Reference Identification Qualifier osegment.dataelementvalue(2) = " " 'Reference Identification 'HI HEALTH CARE INFORMATION DIAGNOSIS CODES edidatasegment.set(osegment, otransactionset.createdatasegment("hl\clm\hi")) osegment.dataelementvalue(1, 1) = "BK" 'Code List Qualifier Code osegment.dataelementvalue(1, 2) = "0340" 'Industry Code osegment.dataelementvalue(2, 1) = "BF" 'Code List Qualifier Code osegment.dataelementvalue(2, 2) = "V7389" 'Industry Code nservices = 4 'This example has 4 services under this claim nservicecounter = 1 '2400 SERVICE LINE Do While nservicecounter <= nservices 'LX SERVICE LINE COUNTER edidatasegment.set(osegment, otransactionset.createdatasegment("hl\clm\lx\lx")) osegment.dataelementvalue(1) = nservicecounter 'Assigned Number 'SV1 PROFESSIONAL SERVICE edidatasegment.set(osegment, otransactionset.createdatasegment("hl\clm\lx\sv1")) osegment.dataelementvalue(1, 1) = "HC" 'Product/Service ID Qualifier osegment.dataelementvalue(1, 2) = "99213" 'Product/Service ID osegment.dataelementvalue(2) = "40" 'Monetary Amount osegment.dataelementvalue(3) = "UN" 'Unit or Basis for Measurement Code osegment.dataelementvalue(4) = "1" 'Quantity osegment.dataelementvalue(7, 1) = "1" 'Diagnosis Code Pointer 'DTP SERVICE DATE OR TIME OR PERIOD edidatasegment.set(osegment, otransactionset.createdatasegment("hl\clm\lx\dtp")) osegment.dataelementvalue(1) = "472" 'Date/Time Qualifier osegment.dataelementvalue(2) = "D8" 'Date Time Period Format Qualifier osegment.dataelementvalue(3) = " " 'Date Time Period nservicecounter = nservicecounter + 1 nclaimcounter = nclaimcounter + 1

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

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

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

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

string spath; string sedifile = 277_005010X228.X12; string sseffile = 277_005010X228.SemRef.EVAL0.SEF; 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

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

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

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

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

// 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

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

// 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

5010 Upcoming Changes: 837 Professional Claims and Encounters Transaction

5010 Upcoming Changes: 837 Professional Claims and Encounters Transaction 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 Professional Claims and Encounters Transaction Based on Version 5, Release 1 ASC 12N 005010222 and ASC12N005010222A1

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

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

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

Section 3 837D Dental Health Care Claim: Charts for Situational Rules

Section 3 837D Dental Health Care Claim: Charts for Situational Rules Companion Document 837D This companion document is for informational purposes only to describe certain aspects and expectations regarding the transaction and is not a complete guide. The details contained

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

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

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

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

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

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

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

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

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

Standard Companion Guide

Standard Companion Guide Standard Companion Guide Refers to the Implementation Guide Based on X12 Version 005010X224A2 Health Care Claim Dental (837D) Companion Guide Version Number 2.0 September 25, 2018 Page 1 of 15 CHANGE LOG

More information

837D Health Care Claim: Educational Guide

837D Health Care Claim: Educational Guide 837D Health Care Claim: Educational Guide January 2011 - Version 3.0 Disclaimer INGENIX is still under development stages and frequent changes within this document are expected. This documentation was

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

ILLINOIS DEPARTMENT OF HUMAN SERVICES DIVISION OF MENTAL HEALTH. Page 1 Version 1.3 9/18/09

ILLINOIS DEPARTMENT OF HUMAN SERVICES DIVISION OF MENTAL HEALTH. Page 1 Version 1.3 9/18/09 ILLINOIS DEPATMENT OF HUMAN SEVICES DIVISION OF MENTAL HEALTH Page 1 Version 1.3 9/18/09 Illinois Health Care Claim Companion Guide 837 Professional HIPAA 4010 Version Version 1.3 September 18, 2009 Page

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

Horizon Blue Cross and Blue Shield of New Jersey

Horizon Blue Cross and Blue Shield of New Jersey Horizon Blue Cross and Blue Shield of New Jersey Companion Guide for Transaction and Communications/Connectivity Information Instructions related to Transactions based on ASC X12 Implementation Guides,

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

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

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

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

5010 Gap Analysis for Institutional Claims. Based on ASC X v5010 TR3 X223A2 Version 2.0 August 2010

5010 Gap Analysis for Institutional Claims. Based on ASC X v5010 TR3 X223A2 Version 2.0 August 2010 5010 Gap Analysis for Institutional Claims Based on ASC X12 837 v5010 T3 X223A2 Version 2.0 August 2010 This information is provided by Emdeon for education and awareness use only. Even though Emdeon believes

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

Alameda Alliance for Health

Alameda Alliance for Health Alameda Alliance for Health Standard Companion Guide Transaction Information Instructions related to Transactions based on ASC X12 Implementation Guides, version 005010X222A1 Health Care Claims (837P)

More information

ANSI ASC X12N 837 Healthcare Claim Institutional, Professional and Dental Department of Labor-OWCP Companion Guide

ANSI ASC X12N 837 Healthcare Claim Institutional, Professional and Dental Department of Labor-OWCP Companion Guide Institutional, Professional and Dental Department of Labor-OWCP Companion Guide May 31, 2017 TABLE OF CONTENTS AT A GLANCE II CHAPTER 1 INTRODUCTION 1 Audience 1 CHAPTER 2 TRANSMISSION METHODS 2 Communication

More information

ILLINOIS DEPARTMENT OF HUMAN SERVICES DIVISION OF MENTAL HEALTH. Page 1 Version 1.2 8/14/08

ILLINOIS DEPARTMENT OF HUMAN SERVICES DIVISION OF MENTAL HEALTH. Page 1 Version 1.2 8/14/08 ILLINOIS DEPATMENT OF HUMAN SEVICES DIVISION OF MENTAL HEALTH Page 1 Version 1.2 8/14/08 Illinois Health Care Claim Companion Guide 837 Professional HIPAA 4010 Version Version 1.2 August 14, 2008 Page

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

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

It is recommended not to exceed 99 patient requests per Information Receiver Loop (2000B).

It is recommended not to exceed 99 patient requests per Information Receiver Loop (2000B). ASC X12N 270/271 (004010X092A1) Health Care Eligibility Benefit Inquiry and Response Companion Guide Notes The ISA segment terminator, which immediately follows the component element separator, must consist

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

MOLINA MEDICAID SOLUTIONS. Louisiana Medicaid 837 Health Care Claim-Institutional Companion Guide. Based on ASC X12N Version X223A2

MOLINA MEDICAID SOLUTIONS. Louisiana Medicaid 837 Health Care Claim-Institutional Companion Guide. Based on ASC X12N Version X223A2 MOLINA MEDICAID SOLUTIONS Louisiana Medicaid 837 Health Care Claim-Institutional Companion Guide Based on ASC X12N Version 005010X223A2 CORE v5010 Master Companion Guide Template Issued January 2018 Version

More information

HIPAA X 12 Transaction Standards

HIPAA X 12 Transaction Standards HIPAA X 12 Transaction Standards Companion Guide 837 Professional/ Institutional Health Care Claim Version 5010 Trading Partner Companion Guide Information and Considerations 837P/837I September 19, 2014

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

West Virginia HMO Rosters Companion Guide 834

West Virginia HMO Rosters Companion Guide 834 West Virginia HMO Rosters Companion Guide 834 Version 1.8 Created Modified March 09, 2015 March 09, 2015 I TABLE OF CONTENTS Record of change... 3 Companion Guide Purpose... 3 Overview... 3 Scope... 4

More information

Questions, comments, or suggestions regarding this information should be directed to

Questions, comments, or suggestions regarding this information should be directed to 302 837 PROFESSIONAL 302.1 GENERAL INFORMATION Introduction This chapter contains information on processing electronic claims based on the 004010X098 version of the ASC X12N Professional Health Care Claim

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

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

/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

Florida Blue Health Plan

Florida Blue Health Plan Florida Blue Health Plan HIPAA Transaction Standard Companion Guide For Availity Health Information Network Users Refers to the Technical Reports Type 3 Based on ASC X12 version 005010x224A2 837D Health

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

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

Medicare-Medicaid Encounter Data System

Medicare-Medicaid Encounter Data System Medicare-Medicaid Encounter Data System Addendum to Encounter Data System Companion Guide and State assigned Medicaid Companion Guides Instructions related to the 837 Health Care Claim: Institutional Transaction

More information

Molina Healthcare HIPAA Transaction Standard Companion Guide

Molina Healthcare HIPAA Transaction Standard Companion Guide Molina Healthcare HIPAA Transaction Standard Companion Guide Refers to the Implementation Guides Based on ASC X12 version 005010 Last Revised July 19, 2016 Molina Healthcare, Inc. 200 E. Oceangate Long

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

HIPAA X 12 Transaction Standards

HIPAA X 12 Transaction Standards HIPAA X 12 Transaction Standards Companion Guide 837 Professional/ Institutional Health Care Claim Version 5010 Trading Partner Companion Guide Information and Considerations 837P/837I March 1, 2012 Centene

More information

TIBCO Foresight Products

TIBCO Foresight Products TIBCO Foresight Products Error Message Numbers, Editing, and Management August 2017 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

HIPAA X 12 Transaction Standards

HIPAA X 12 Transaction Standards HIPAA X 12 Transaction Standards Companion Guide 837 Professional/ Institutional Health Care Claim Version 5010 Trading Partner Companion Guide Information and Considerations 837P/837I June 11, 2012 Centene

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

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

HIPAA X 12 Transaction Standards

HIPAA X 12 Transaction Standards HIPAA X 12 Transaction Standards Abbreviated Companion Guide 837 Institutional Health Care Claim Version 004010X096A1 Trading Partner Companion Guide Information and Considerations 837I 1. General Transaction

More information

Florida Blue Health Plan

Florida Blue Health Plan Florida Blue Health Plan HIPAA Transaction Standard Companion Guide For Availity Health Information Network Users Refers to the Technical Reports Type 3 Based on ASC X12 version 005010X222A1 837I Health

More information

Standard Companion Guide

Standard Companion Guide Standard Refers to the Implementation Guide Based on X12 Version 005010X223A2 Health Care Claim: Institutional (837) Version Number: 1.0 December 10, 2010 written permission of UnitedHealth Group is prohibited.

More information

Concurrent Session 204 Transactions and Code Sets: Its All in the Guides

Concurrent Session 204 Transactions and Code Sets: Its All in the Guides Concurrent Session 204 Transactions and Code Sets: Its All in the Guides The HIPAA Summit West June 21, 2001 San Francisco, CA Gary Beatty gary@wpc-edi.com Washington Publishing Company Chair X12 Insurance

More information

Standard Companion Guide

Standard Companion Guide UnitedHealthcare West Standard Companion Guide Refers to the Implementation Guide Based on X12 Version 005010X223A2 Health Care Claim Institutional (837) Companion Guide Version Number 4.0 November 7,

More information

Standard Companion Guide

Standard Companion Guide Standard Companion Guide Refers to the Implementation Guide Based on X12 Version 005010X222A1 Health Care Claim Professional (837P) Companion Guide Version Number 4.0 January 5, 2018 Page 1 of 18 CHANGE

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

RelayHealth EDI 12 Plug-in

RelayHealth EDI 12 Plug-in GE Healthcare RelayHealth EDI 12 Plug-in Installation and Setup Guide Contents... Checklist for first time installations... 2 Checklist for upgrading only... 2 Checklist for upgrading and adding EDI remittance

More information

ANSI ASC X12N 837 Healthcare Claim Companion Guide

ANSI ASC X12N 837 Healthcare Claim Companion Guide ANSI ASC X12N 837 Healthcare Claim Companion Guide Professional and Institutional Hawaii Medicaid Fee for Service 005010X222A1 005010X223A2 January 2018 V5010 2018 Conduent, Inc. All rights reserved. Conduent

More information