Version 2.2.19
X12 Studio (Version 2.2.19):
- 837 Institutional Claim forms (UB-04):
- Forms are now generated with partial data even if the source EDI file is not complete.
- Incorrect NTE segments are no longer populated into the form.
T-Connect EDI Gateway (Version 2.2.19):
- Performance and stability improvements to Routing Service and Validation Service
- New global flags are supported within the JSON 'ServiceConfig' column of the TctepDb.svc.tReceiveService and tSendService tables. These allow system wide settings to be set across all routes.
- DisableAck: boolean string ("true", "false") or bit (1, 0). If true, Ack 999 and 997 Functional Acknowledgements will not be generated within routes.
The following script can be used to update services with this new flag:Use TctepDb
GO
Update TctepDb.svc.tReceiveService set ServiceConfig = JSON_MODIFY(ServiceConfig, '$.DisableAck', 'true')
Update TctepDb.svc.tSendService set ServiceConfig = JSON_MODIFY(ServiceConfig, '$.DisableAck', 'true')
- HttpServiceBaseUri: string (http://tconnect.com) Sets the base URL for the service.
The following script can be used to update services with base uri:Use TctepDb
GO
Update TctepDb.svc.tReceiveService set ServiceConfig = (
SELECT REPLACE(JSON_MODIFY(ServiceConfig ,'$.HttpServiceBaseUri'
,(SELECT TOP 1 JSON_QUERY('{"val": ""}') as HttpServiceBaseUri )
), '{"val": ""}', '"http://tconnect.com"')
)
- DisableAck: boolean string ("true", "false") or bit (1, 0). If true, Ack 999 and 997 Functional Acknowledgements will not be generated within routes.
- The DisableAck option is also available within the Validation Step to disable acknowledgements at the individual route level
- When the Validation Step option 'Split Invalid Transactions' is enabled, T-Connect will no longer attempt to split a file if the ISA or GS loop is invalid. The entire file will be treated as invalid in these cases.
- Resubmission locations controlling the URL used to resubmit files from within X12 Studio are now contained in the TctepDb.portal.tResubmissionLocation table
- The exception tracking table TctepDb.trk.tException has been updated to include a column containing the InterchangeId of the related route execution where applicable.
- Unique file names generated when routing error files that encountered errors are now unique across servers and executions of routes. The unique names are now generated using the format "{Original_File_Name}-{Guid}{Original_File_extension}. For example. A file "MyFile.edi" may be saved to the error or poison directory as "MyFile-88e53861-fb7e-4e04-975a-f7de326d6625.edi"
- files that have invalid ISA or GS loops will longer be processed even if the route option 'Continue Processing On Error' is enabled to forcefully process files with validation failures. These types of files do not meet the minimum validity and will be routed to the error directory.
- Added ability to get and use the ILoggerRepository directly within a custom step inheriting the StepBase abstract class
- The Tctep windows services will now cache several data sets seldom updated during processing. This list includes trading partner, alert, validation rule sets and search index field configurations. This will significantly reduce the volume of I/O to the database. The expiration of the cache is set by default at 5 minutes, and can be overridden by adding an appSetting to the Tctep configuration xml files with the name CacheExpirationSeconds.
...
<appSettings>
<add key="CacheExpirationSeconds" value="60">
</appSettings>
...
Version 2.2.16
X12 Studio (Version 2.2.16):
- Application screen bounds are relative to primary monitor screen resolution
T-Connect EDI Gateway (Version 2.2.16):
- Performance and stability improvements to Routing Service and Validation Service
- TCTEP Services upgrade to .NET Framework 4.7.1
TctepDb Database
- Expanded default database size and auto-growth settings
Deployment (DeployTConnect.ps1)
- Deployment files are now delivered as a zip file download from Caliber Health’s servers
- Database LOG and DATA directories can be set independently.
Previous Releases
X12 Studio (Version 2.2.10 - 15):
- Hotfix: Fixed file load failure when opening file from Portal with CRLF as terminators
- Hotfix: Fixes to prevent 999 file generation failures
- Validation on file open can be toggled on and off
- Removed environment specific settings from X12 Studio’s application configuration file.
T-Connect EDI Gateway (Version 2.2.15):
- Hotfix: In progress files are no longer picked up for processing by subsequent polls of intake folders
- Hotfix: EDI files with multiple GS loops now store all GS loops in the TConnectEDIXXX databases
- Updated Portal header styling
- Portal updated to .NET Core 2.1
- Performance and stability improvements
T-Connect EDI Gateway (Version 2.2.10):
- Added support for custom receive connectors
- Added option to disable trading partner validation in receive step
- Added option to disable EDI file parsing in receive step. This allows intake of custom files prior that are mapped to EDI within custom steps
- Performance and stability improvements
- Added Transaction Type (ST01) column to Portal’s message detail page