Concept and handling of analog positions

If a service item is missing or not defined, it can be requested to be included in the LKAAT tariff for the following year. The tariff partners will then conduct a thorough review of the application to determine if the requested service should be incorporated into the appropriate capitulum and if it can be billed in the current application year using an analog service. This determination is documented by activating a reserve code by defining a name (medical description) and billable analog position as its reference code.
 
Utilizing analog services entails implementing billing mechanisms for services that have not yet been incorporated into the LKAAT framework.
 
Reserve codes in the LKAAT without a medical description can be activated by the OAAT during the year with a medical description and an analog service code. Billing a reserve code service requires entering its analog position (grouper-relevant). At the same time, the reserve code service is defined for documentation purposes only.

Searching "analog positions"
      TMAType eTMAType=7;
      ISearchTMA::SearchGeneral(dDate,eTMAType,enNo,"","","")

returns the list of all activated reserve codes. The defined capitulum is the one of the analog position, the reference code supplies the analog position code.
 
For example:
Reserve code: Cap08::C00.YY.0010 - «Versorgung einer Fraktur u/o Luxation mittels geschlossener Reposition...»
Analog code:   Cap08::C08.FA.0030 - «Versorgung Radiusköpfchenfraktur, geschlossene Reposition»
 
Billing "analog positions"
      BSTR bstrICDCode="A18.0"
      IValidateTMA::AddACFBase(lSessionNumber,bstrICDCode,ePatientSex,dPatientBirthdate,eLaw)

      BSTR bstrCode="C08.FA.0030"
      IValidateTMA::AddService(bstrCode,"",dQuantity,lSessionNumber,dDate,eSide,"",enNo,lHook)

      BSTR bstrCode="C00.YY.0010"
      IValidateTMA::AddService(bstrCode,"",dQuantity,lSessionNumber,dDate,eSide,"",enNo,lHook)

First, add the analog service code. Then, add the reserve code for documentation purposes.