LabTestResults Data Type, LabTestResultGroup.Status not showing up in HealthVault Explorer

已锁定 LabTestResults Data Type, LabTestResultGroup.Status not showing up in HealthVault Explorer

  • Saturday, November 28, 2009 6:10 AM
     
      Has Code
    When I use HealthVault Explorer to create a new lab test result, I can set the Status to Pending or Complete and have that status show up in the table of test results. However, if I create a LabTestResults object in code and then send it to HealthVault through my web application, the status doesn't show up in the table (though it does show up in the Details panel if I click on the row). If I edit the lab that I sent through my web application in HealthVault explorer, the correct status is already selected in the "Overall Status" drop down box. Why is the status not showing up in the table of test results? Below is the code I am using:

    Dim theGroup As LabTestResultGroup
    theGroup = New LabTestResultGroup(New CodableValue(Me.Name))
    groups.Add(theGroup)
    Dim cv As CodableValue
    cv = New CodableValue("Complete", New CodedValue("C", "lab-status", "wc", "1"))
    theGroup.Status = cv

All Replies

  • Tuesday, December 01, 2009 8:58 AM
     
     

    Hi,
    For the lab test result item you add through your application, do you see the status in the Details panel? 

    What I'm seeing is that the status field is never displayed in the table of lab test results but it is displayed in the expanded Details panel.  We are looking into why we are not seeing the status field in the table. 

  • Sunday, December 06, 2009 2:54 AM
     
     
    Tien, that is exactly what I am seeing. The status is indeed visible in the expanded details panel, but it is never visible in the table of lab test results.