HIPAA Compliant Codes All the Health care EDI Transaction set should use only the following HIPAA Compliant Codes Physicians Current Procedure Terminology (CPT) Health Care Financing Administration Common Procedural Coding System (HCPCS) International Classification of Diseases Clinical Mod (ICD-9-CM) Diseases Provider Taxonomy Codes National Drug Code *ICD-10 codes are not allowed prior to effective mandate date of October 1, 2014. Diagnosis...
Monday, 9 December 2013
Understanding EDI Structure
Posted on 18:07 by Unknown
EDI StructurePrimary Levels are 1. Interchange Envelops2. Functional Group3. Transaction set Data Element A data element is equivalent to a field in a data dictionary. Data elements have a name, a data element number, a brief description, a data type, and a minimum and maximum length. For elements which represent codes, either a list of valid codes is included or a reference is included to a source outside of the X12 standard. Elements are separated...
What is an EDI ?
Posted on 17:37 by Unknown
EDI X12 (Electronic Data Interchange) is data format based on ASC X12 standards. It is used to exchange specific data between two or more trading partners. Term ‘trading partner’ may represent organization, group of organizations or some other entity. In most cases it is just organization or company. EDI X12 is governed by standards released by ASC X12 (The Accredited Standards Committee). Each release contains set of message types like invoice,...
Monday, 16 September 2013
ZK Dynamic Menu
Posted on 23:19 by Unknown
Welcome Back. When i started learning ZK, one of the challenge thing for me to dynamically generate the Menu from the Database using different components of ZK. We managed using via MVC and created all the stuff using pure java. But now thanks to MVVM and Children binding mechanism of ZK. Using that, with minimal lines of code, we can achieve the result.This post will talk about creating Dynamic Menu using different ZK ComponentsPart 1: This article will explain how we can use ZK Menu Component to build N level of menu dynamicallyPart 2:...
ZK Dynamic Menu Part 5
Posted on 06:19 by Unknown
In Part 3, we have seen how to create left navigation menu using ZK Group Box and ZK Tool bar button dynamically and also in part 4, Using the same data set, We created two level menu in the top using Tab box and Tool bar as like this ZK Demo.Now we will combine Part 3 and Part 4, i.e we will create 4 level menu, 1st level in Tabbox , 2nd Second Tab Panel Tool Bar Button, 3nd Level Left Group Box and 4th Level Tool Bar Button under each group Box.MenuItem.java...
ZK Dynamic Menu Part 4
Posted on 05:40 by Unknown
In Part 3, we have seen how to create left navigation menu using ZK Group Box and ZK Tool bar button dynamically. Using the same data set, We can also create two level menu in the top using Tab box and Tool bar as like this ZK Demo.MenuItem.java package com.example.menu;import java.util.ArrayList;import java.util.List;public class MenuItem { private String name; private List<MenuItem> children; private int level; public MenuItem(String name,int...
Sunday, 15 September 2013
ZK Dynamic Menu Part 3
Posted on 18:46 by Unknown
In Part 2, we have seen how to Fill tree component dynamically. In this post, how we can create left navigation menu using ZK Group Box and ZK Tool bar button dynamically.MenuItem.java package com.example.menu;import java.util.ArrayList;import java.util.List;public class MenuItem { private String name; private List<MenuItem> children; private int level; public MenuItem(String name,int level) { this.name = name; this.level = level; children...
Subscribe to:
Posts (Atom)