go to post Oliver Wilms · Aug 14, 2019 Evgeny,Thank you for your comment. I am new to DeepSee and I do not know if I should created a cube for this. Or a Business Metric? Or just SQL Data??Really I just need to show a report that can be printed or exported with start and end dates and times. I saw that Dashboards are easy to access from Management Portal compared to opening a DeepSee Report.And I want to show a line graph.Maybe a Zen report which I have not really done yet either.I am not sure what to do ???
go to post Oliver Wilms · Jul 5, 2019 I am working on DTL to transform X12 HIPAA_5010:278Review into HIPAA_5010:278Response.My challenges are I do not know an elegant way to create multiple 2000E loops in the target. The source can have only one loop 2000E, I need to create as many 2000E loops as I find authorizations.On top of that, I may need to create possibly hundreds of 2000F loops under one or more 2000E loops. The source may have zero or many 2000F loops.The scenario I have been working on has zero 2000F loops and I need to create about 600 2000F loops in the target. Any guidance will be appreciated. I am not sure if subtransform will work because I can only create a Document or a Segment, not a Loop in a transformation.
go to post Oliver Wilms · Jun 20, 2019 Since I do not know how to create a new segment and then append to my target, I set x = target.OutputToString() and then append segments to my string as in Set x=x_"HL*5*4*0~...." and x=x_"SE*...~" and then set target=##class(EnsLib.EDI.X12.Document).ImportFromString(x).I feel there should be a better way than doing string manipulation using Document Map etc.
go to post Oliver Wilms · Jun 13, 2019 My problem was in the Response class definition. I had Property BillingCodes As %Collection.ArrayOfObj; I replaced it with Property BillingCodes As array Of xyz; Everything gets passed along in the Response object from one BPL to the calling one. Thanks!!
go to post Oliver Wilms · Jun 6, 2019 I got the same error occasionally when parsing X12 files. Lock table got filled up when saving a transaction that contains hundreds of objects.
go to post Oliver Wilms · Apr 24, 2019 Hopefully they will tell the provider of the files to NOT send files that way and we do not need to come up with a work-around.
go to post Oliver Wilms · Jan 30, 2019 We understand what happened after we looked at the console log.We failed to acquire locks when there were two actors because the lock table was full.The rollback failed because journaling was off.We will address our configuration.
go to post Oliver Wilms · Oct 16, 2018 Hello Sean,Thank you for your response.We attempted a different approach yesterday using XML Adapter in our persistent class and routing the message to an SQL Outbound Adapter. We were able to insert data into our table. However we see errors logged in our SQL Operation (Business Operation):ERROR <Ens>ErrRequestNotHandled: Request message '13@Test.SubscriberX' not handledDo you know what we need to do to avoid getting these errors?Thank you