worklist not easy

  • Quote from marcelvanherk

    Hi,


    the last page shows what conquest responds. It looks quite allright to me. Maybe GE requires additional information. In that case you would have to adjust dicom.sql and add more information to your worklist. Any clue in the GE error message?


    Marcel



    Do you have these informations ? I looked for more I did not find...


    I not have another US for tests here, I talk with my friends but all have only GE, is a low cost here :(


    one question, the system date format for conquest is EUA default ?


    thanks for help

  • Quote from marcelvanherk

    Hi,


    did you already edit dicom.sql to inlude the Last Menstrual Date. If so, can you show me the edited worklist items?


    Marcel


    I am trying everything that is possible, exactly thus the GE ultrasounds continue giving to error the Dr. Alain Godard helped very, I followed howto of it, more the only thing that gives error is worklist, the remaining portion I obtained to make to function.


    I try various forms, but no success :(


    I send a private e-mail with these information, I put here for another's guys with my problem read.


    I call to GE technical assistance in USA, "I live in Brazil" and talk about my problem with worklist, these guy talk to me about a dicom log in internal GE software, and show to me the password Smile


    well, I find the error and in log have 2 msgs:


    DicomLog_MWL_sc01_Worklist (1148) 02-28 14:03:58.14 MC3 E: | Unexpected end of stream data


    DicomLog_MWL_sc01_Worklist (1148) 02-28 14:03:58.14 MC3 E: (0040,0100): Error during MC_Stream_To_Message:



    the problem is simple, after I query WorkList the machine only reboot.


    GE Ultrasound Logic 5


    the error is little diference to V730 Voluson, show DLL error and Reboot.



    ***************** dicom.sql ************


    /*
    # DICOM Database layout
    # Example version for all SQL servers (mostly normalized)
    #
    # (File DICOM.SQL)
    # ** DO NOT EDIT THIS FILE UNLESS YOU KNOW WHAT YOU ARE DOING **
    #
    # Version with modality moved to the series level and EchoNumber in image table
    # Revision 3: Patient birthday and sex, bolus agent, correct field lengths
    # Revision 4: Studymodality, Station and Department in study
    # Manufacturer, Model, BodyPart and Protocol in series
    # Acqdate/time, coil, acqnumber, slicelocation and pixel info in images
    # Notes for revision 4:
    # InstitutionalDepartmentName in study (should officially be in series, but eFilm expects it in study)
    # StationName is in study (should officially be in series, but more useful in study)
    # Revision 5: Added patientID in series and images for more efficient querying
    # Revision 6: Added frame of reference UID in series table
    # Revision 7: Added ImageType in image table, StudyModality to 64 chars, AcqDate to SQL_C_DATE
    # Revision 8: Denormalized study table (add patient ID, name, birthdate) to show consistency problems
    # Revision 10: Fixed width of ReceivingCoil: to 16 chars
    # Revision 13: Added ImageID to image database
    # Revision 14: Added WorkList database with HL7 tags
    #
    #
    # 5 databases need to be defined:
    #
    # *Patient*
    # *Study*
    # *Series*
    # *Image*
    # *WorkList*
    #
    #
    # The last defined element of Study is a link back to Patient
    # The last defined element of Series is a link back to Study
    # The last defined element of Image is a link back to Series
    #
    #
    # Format for DICOM databases :
    # { Group, Element, Column Name, Column Length, SQL-Type, DICOM-Type }
    # Format for Worklist database :
    # { Group, Element, Column Name, Column Length, SQL-Type, DICOM-Type, HL7 tag}
    # HL7 tags include SEQ.N, SEQ.N.M, SEQ.N.DATE, SEQ.N.TIME, *AN, *UI
    */


    *Patient*
    {
    { 0x0010, 0x0020, "PatientID", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR }
    }


    *Study*
    {
    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0008, 0x0020, "StudyDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0030, "StudyTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0020, 0x0010, "StudyID", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1030, "StudyDescription", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0050, "AccessionNumber", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0090, "ReferPhysician", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x1010, "PatientsAge", 16, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x1030, "PatientsWeight", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0061, "StudyModality", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1010, "StationName", 16, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1040, "InstitutionalDepartmentName", 64, SQL_C_CHAR, DT_STR },


    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR }


    { 0x0010, 0x0020, "PatientID", 64, SQL_C_CHAR, DT_STR }
    }


    *Series*
    {
    { 0x0020, 0x000e, "SeriesInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0020, 0x0011, "SeriesNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0021, "SeriesDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0031, "SeriesTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0008, 0x103e, "SeriesDescription", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0060, "Modality", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x5100, "PatientPosition", 16, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0010, "ContrastBolusAgent", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0070, "Manufacturer", 64, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x1090, "ModelName", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x0015, "BodyPartExamined", 64, SQL_C_CHAR, DT_STR },
    { 0x0018, 0x1030, "ProtocolName", 64, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x0052, "FrameOfReferenceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0010, 0x0020, "SeriesPat", 64, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI }
    }


    *Image*
    {
    { 0x0008, 0x0018, "SOPInstanceUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0008, 0x0016, "SOPClassUID", 64, SQL_C_CHAR, DT_UI },
    { 0x0020, 0x0013, "ImageNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0023, "ImageDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0033, "ImageTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0018, 0x0086, "EchoNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0028, 0x0008, "NumberOfFrames", 12, SQL_C_CHAR, DT_STR },
    { 0x0008, 0x0022, "AcqDate", 8, SQL_C_DATE, DT_DATE },
    { 0x0008, 0x0032, "AcqTime", 16, SQL_C_CHAR, DT_TIME },
    { 0x0018, 0x1250, "ReceivingCoil", 16, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x0012, "AcqNumber", 12, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x1041, "SliceLocation", 16, SQL_C_CHAR, DT_STR },
    { 0x0028, 0x0002, "SamplesPerPixel", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0028, 0x0004, "PhotoMetricInterpretation", 16, SQL_C_CHAR, DT_STR },
    { 0x0028, 0x0010, "Rows", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0028, 0x0011, "Colums", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0028, 0x0101, "BitsStored", 5, SQL_C_CHAR, DT_UINT16 },
    { 0x0008, 0x0008, "ImageType", 128, SQL_C_CHAR, DT_STR },
    { 0x0054, 0x0400, "ImageID", 16, SQL_C_CHAR, DT_STR },
    { 0x0010, 0x0020, "ImagePat", 64, SQL_C_CHAR, DT_STR },
    { 0x0020, 0x000e, "SeriesInstanceUID", 64, SQL_C_CHAR, DT_UI }
    }


    *WorkList*
    {
    { 0x0008, 0x0050, "AccessionNumber", 16, SQL_C_CHAR, DT_STR, "OBR.3" },
    { 0x0010, 0x0020, "PatientID", 64, SQL_C_CHAR, DT_STR, "PID.4" },
    { 0x0010, 0x0010, "PatientName", 64, SQL_C_CHAR, DT_STR, "PID.5" },
    { 0x0010, 0x0030, "PatientBirthDate", 8, SQL_C_DATE, DT_DATE, "PID.7.DATE" },
    { 0x0010, 0x0040, "PatientSex", 16, SQL_C_CHAR, DT_STR, "PID.8" },


    { 0x0010, 0x2000, "MedicalAlerts", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0010, 0x2110, "ContrastAllergies", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0020, 0x000d, "StudyInstanceUID", 64, SQL_C_CHAR, DT_UI, "---" },
    { 0x0032, 0x1032, "ReqPhysician", 64, SQL_C_CHAR, DT_STR, "OBR.16" },
    { 0x0032, 0x1060, "ReqProcDescription", 16, SQL_C_CHAR, DT_STR, "OBR.4.1" },


    { 0x0010, 0x21d0, "LastMenstrualDate", 8, SQL_C_DATE, DT_DATE, "---" },


    { 0x0040, 0x0100, "--------", 0, SQL_C_CHAR, DT_STARTSEQUENCE, "---" },
    { 0x0008, 0x0060, "Modality", 16, SQL_C_CHAR, DT_STR, "OBR.21" },
    { 0x0032, 0x1070, "ReqContrastAgent", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0001, "ScheduledAE", 16, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0002, "StartDate", 8, SQL_C_DATE, DT_DATE, "OBR.7.DATE" },
    { 0x0040, 0x0003, "StartTime", 16, SQL_C_CHAR, DT_TIME, "OBR.7.TIME" },
    { 0x0040, 0x0006, "PerfPhysician", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0007, "SchedPSDescription", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0009, "SchedPSID", 16, SQL_C_CHAR, DT_STR, "OBR.4" },
    { 0x0040, 0x0010, "SchedStationName", 16, SQL_C_CHAR, DT_STR, "OBR.24" },
    { 0x0040, 0x0011, "SchedPSLocation", 16, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0012, "PreMedication", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0400, "SchedPSComments", 64, SQL_C_CHAR, DT_STR, "---" },
    { 0x0040, 0x0100, "---------", 0, SQL_C_CHAR, DT_ENDSEQUENCE, "---" },


    { 0x0040, 0x1001, "ReqProcID", 16, SQL_C_CHAR, DT_STR, "OBR.4.0" },
    { 0x0040, 0x1003, "ReqProcPriority", 16, SQL_C_CHAR, DT_STR, "OBR.27 }
    }



    *********************** dicom configuration file*****************



    # This file contains configuration information for the DICOM server
    # Do not edit unless you know what you are doing


    [sscscp]
    MicroPACS = sscscp
    Edition = Personal


    # Network configuration: server name and TCP/IP port#
    MyACRNema = PACS
    TCPPort = 5678


    # Reference to other files: known dicom servers; database layout; sops
    ACRNemaMap = acrnema.map
    kFactorFile = dicom.sql
    SOPClassList = dgatesop.lst


    # Host(ignored), name, username and password for ODBC data source
    SQLHost = 192.168.200.253
    SQLServer = conquestpacs_s
    Username = sa
    Password = samsung
    DoubleBackSlashToDB = 0


    # Configure database
    TruncateFieldNames = 10
    MaxFieldLength = 254
    MaxFileNameLength = 255
    FixPhilips = 0
    FixKodak = 0
    KeepAlive = 0
    LargeFileSizeKB = 2048
    ZipTime = 05:
    UIDPrefix = 1.2.826.0.1.3680043.2.135.732969.52984875
    EnableReadAheadThread = 1
    PatientQuerySortOrder =
    StudyQuerySortOrder =
    SeriesQuerySortOrder =
    ImageQuerySortOrder =
    IndexDBF = 1
    PackDBF = 0
    LongQueryDBF = 1000
    TCPIPTimeOut = 300
    FailHoldOff = 60
    RetryDelay = 100
    QueueSize = 128
    WorkListMode = 0
    DebugLevel = 0
    Prefetcher = 0
    LRUSort =
    AllowTruncate =
    DecompressNon16BitsJpeg = 1
    UseBuiltInDecompressor = 1
    FileNameSyntax = 3


    # Configuration of compression for incoming images and archival
    DroppedFileCompression = un
    IncomingCompression = un
    ArchiveCompression = as


    # Names of the database tables
    PatientTableName = DICOMPatients
    StudyTableName = DICOMStudies
    SeriesTableName = DICOMSeries
    ImageTableName = DICOMImages
    DMarkTableName = DICOMAccessUpdates
    RegisteredMOPDeviceTable = RegisteredMOPIDs
    UIDToMOPIDTable = UIDToMOPID
    UIDToCDRIDTable = UIDToCDRID


    # Banner and host for debug information
    PACSName = PACS
    OperatorConsole = 127.0.0.1


    # Configuration of disk(s) to store images
    MAGDeviceThreshhold = 0
    MAGDevices = 1
    MAGDevice0 = C:\dicom\data\
    NightlyCleanThreshhold = 0


    #Export sr
    ExportConverters = 1
    ExportModality0 = SR
    ExportConverter0 = copy %f to C:\dicom\structured_report




    ********************************************


    sds
    Marcelino

  • Put


    { 0x0010, 0x21d0, "LastMenstrualDate", 8, SQL_C_DATE, DT_DATE, "---" },


    after


    { 0x0008, 0x0060, "Modality", 16, SQL_C_CHAR, DT_STR, "OBR.21" },


    to show that it is part of the sequence.


    Then you have to CLEAR THE WORKLIST. If not, your change will have no effect


    Then refill the worklist, and try again.


    Hope this helps.


    Marcel



  • I make your modification, but not resolved :(


    I call GE too and the guy talk about "conformance DICOM" I need to put another information in the worklist for not reset .... I not understand....



    [PACS] A-ASSOCIATE-RQ Packet Dump
    [PACS] Calling Application Title : "L5-0 "
    [PACS] Called Application Title : "WORKLIST "
    [PACS] Application Context : "1.2.840.10008.3.1.1.1"
    [PACS] Number of Proposed Presentation Contexts: 1
    [PACS] Presentation Context 0 "1.2.840.10008.1.1"
    [PACS] Server Command := 0030
    [PACS] Message ID := 0000
    [PACS] 0000,0002 18 UI AffectedSOPClassUID "1.2.840.10008.1.1"
    [PACS] 0000,0100 2 US CommandField 48
    [PACS] 0000,0110 2 US MessageID 0
    [PACS] 0000,0800 2 US DataSetType 257
    [PACS] 0002,0010 19 UI TransferSyntaxUID "1.2.840.10008.1.2.1"
    [PACS] C-Echo
    [PACS] UPACS THREAD 98: ENDED AT: Mon Mar 03 15:49:08 2008
    [PACS] UPACS THREAD 98: TOTAL RUNNING TIME: 1 SECONDS
    [PACS]
    [PACS] UPACS THREAD 99: STARTED AT: Mon Mar 03 15:49:08 2008
    [PACS] A-ASSOCIATE-RQ Packet Dump
    [PACS] Calling Application Title : "L5-0 "
    [PACS] Called Application Title : "WORKLIST "
    [PACS] Application Context : "1.2.840.10008.3.1.1.1"
    [PACS] Number of Proposed Presentation Contexts: 1
    [PACS] Presentation Context 0 "1.2.840.10008.5.1.4.31"
    [PACS] Server Command := 0020
    [PACS] Message ID := 0001
    [PACS] 0000,0002 22 UI AffectedSOPClassUID "1.2.840.10008.5.1.4.31"
    [PACS] 0000,0100 2 US CommandField 32
    [PACS] 0000,0110 2 US MessageID 1
    [PACS] 0000,0700 2 US Priority 0
    [PACS] 0000,0800 2 US DataSetType 0
    [PACS] 0002,0010 19 UI TransferSyntaxUID "1.2.840.10008.1.2.1"
    [PACS] (ModalityWorkListQuery) search level:
    [PACS] 0002,0010 19 UI TransferSyntaxUID "1.2.840.10008.1.2.1"
    [PACS] 0008,0050 0 SH AccessionNumber (empty)
    [PACS] 0008,0090 0 PN ReferringPhysicianNa (empty)
    [PACS] 0008,1110 0 SQ ReferencedStudySeque Sequence Item
    [PACS] 0008,1120 0 SQ ReferencedPatientSeq Sequence Item
    [PACS] 0010,0010 0 PN PatientName (empty)
    [PACS] 0010,0020 0 LO PatientID (empty)
    [PACS] 0010,0030 0 DA PatientBirthDate (empty)
    [PACS] 0010,0032 0 TM PatientBirthTime (empty)
    [PACS] 0010,0040 0 CS PatientSex (empty)
    [PACS] 0010,1000 0 LO OtherPatientID (empty)
    [PACS] 0010,1020 0 DS PatientSize (empty)
    [PACS] 0010,1030 0 DS PatientWeight (empty)
    [PACS] 0010,2000 0 LO MedicalAlerts (empty)
    [PACS] 0010,2110 0 LO ContrastAllergies (empty)
    [PACS] 0010,2160 0 SH EthnicGroup (empty)
    [PACS] 0010,21c0 0 US PregnancyStatus (empty)
    [PACS] 0020,000d 0 UI StudyInstanceUID (empty)
    [PACS] 0032,1032 0 PN RequestingPhysician (empty)
    [PACS] 0032,1033 0 LO RequestingService (empty)
    [PACS] 0032,1060 0 LO RequestedProcedureDe (empty)
    [PACS] 0032,1064 0 SQ RequestedProcedureCo Sequence Item
    [PACS] 0038,0010 0 LO AdmissionID (empty)
    [PACS] 0038,0300 0 LO CurrentPatientLocati (empty)
    [PACS] 0040,0100 0 SQ ScheduledProcedureSt Sequence Item
    [PACS] >0008,0060 2 CS Modality "US"
    [PACS] >0040,0001 0 AE ScheduledStationAETi (empty)
    [PACS] >0040,0002 8 DA ScheduledProcedureSt "20080303"
    [PACS] >0040,0003 0 TM ScheduledProcedureSt (empty)
    [PACS] >0040,0006 0 PN ScheduledPerformingP (empty)
    [PACS] >0040,0007 0 LO ScheduledProcedureSt (empty)
    [PACS] >0040,0008 0 SQ ScheduledProcedureSt Sequence Item
    [PACS] >0040,0009 0 SH ScheduledProcedureSt (empty)
    [PACS] >0040,0010 0 SH ScheduledStationName (empty)
    [PACS] >0040,0011 0 SH ScheduledProcedureSt (empty)
    [PACS] 0040,1001 0 SH RequestedProcedureID (empty)
    [PACS] 0040,1010 0 UN (empty)
    [PACS] Query On Modality WorkList
    [PACS] Failed on VR Search: 0002 0010
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0008 0090
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0008 1110
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0008 1120
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0010 0032
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0010 1000
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0010 1020
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0010 1030
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0010 2160
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0010 21c0
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0032 1033
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0032 1064
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0038 0010
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0038 0300
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0040 0008
    [PACS] (testing phase) - ignored
    [PACS] Failed on VR Search: 0040 1010
    [PACS] (testing phase) - ignored
    [PACS] Issue Query on Columns: DICOMWorkList.AccessionN, DICOMWorkList.PatientNam, DICOMWorkList.PatientID, DICOMWorkList.PatientBir, DICOMWorkList.PatientSex, DICOMWorkList.MedicalAle, DICOMWorkList.ContrastAl, DICOMWorkList.StudyInsta, DICOMWorkList.ReqPhysici, DICOMWorkList.ReqProcDes, DICOMWorkList.Modality, DICOMWorkList.ScheduledA, DICOMWorkList.StartDate, DICOMWorkList.StartTime, DICOMWorkList.PerfPhysic, DICOMWorkList.SchedPSDes, DICOMWorkList.SchedPSID, DICOMWorkList.SchedStati, DICOMWorkList.SchedPSLoc, DICOMWorkList.ReqProcID
    [PACS] Values: DICOMWorkList.Modality = 'US' and DICOMWorkList.StartDate = '20080303'
    [PACS] Tables: DICOMWorkList
    [PACS] Sorting (DICOMWorkList.PatientNam) DoSort := 1
    [PACS] Query Distinct Tables: DICOMWorkList
    [PACS] Columns : DICOMWorkList.AccessionN, DICOMWorkList.PatientNam, DICOMWorkList.PatientID, DICOMWorkList.PatientBir, DICOMWorkList.PatientSex, DICOMWorkList.MedicalAle, DICOMWorkList.ContrastAl, DICOMWorkList.StudyInsta, DICOMWorkList.ReqPhysici, DICOMWorkList.ReqProcDes, DICOMWorkList.Modality, DICOMWorkList.ScheduledA, DICOMWorkList.StartDate, DICOMWorkList.StartTime, DICOMWorkList.PerfPhysic, DICOMWorkList.SchedPSDes, DICOMWorkList.SchedPSID, DICOMWorkList.SchedStati, DICOMWorkList.SchedPSLoc, DICOMWorkList.ReqProcID
    [PACS] Where : DICOMWorkList.Modality = 'US' and DICOMWorkList.StartDate = '20080303'
    [PACS] Order : DICOMWorkList.PatientNam
    [PACS] 0008,0050 8 SH AccessionNumber "20080101"
    [PACS] 0010,0010 16 PN PatientName "SILVA SAURO^DINO"
    [PACS] 0010,0020 6 LO PatientID "157828"
    [PACS] 0010,0030 8 DA PatientBirthDate "19750901"
    [PACS] 0010,0040 2 CS PatientSex "M "
    [PACS] 0010,2000 0 LO MedicalAlerts ""
    [PACS] 0010,2110 0 LO ContrastAllergies ""
    [PACS] 0020,000d 0 UI StudyInstanceUID ""
    [PACS] 0032,1032 0 PN RequestingPhysician ""
    [PACS] 0032,1060 0 LO RequestedProcedureDe ""
    [PACS] Coding sequence (0040,0100), level=1
    [PACS] 0008,0060 2 CS Modality "US"
    [PACS] 0040,0001 0 AE ScheduledStationAETi ""
    [PACS] 0040,0002 8 DA ScheduledProcedureSt "20080303"
    [PACS] 0040,0003 0 TM ScheduledProcedureSt ""
    [PACS] 0040,0006 0 PN ScheduledPerformingP ""
    [PACS] 0040,0007 0 LO ScheduledProcedureSt ""
    [PACS] 0040,0009 0 SH ScheduledProcedureSt ""
    [PACS] 0040,0010 0 SH ScheduledStationName ""
    [PACS] 0040,0011 0 SH ScheduledProcedureSt ""
    [PACS] 0040,1001 0 SH RequestedProcedureID ""
    [PACS] Records = 1
    [PACS] First record of cleaned response:
    [PACS] 0008,0050 8 SH AccessionNumber "20080101"
    [PACS] 0008,1110 0 SQ ReferencedStudySeque Sequence Item
    [PACS] 0008,1120 0 SQ ReferencedPatientSeq Sequence Item
    [PACS] 0010,0010 16 PN PatientName "SILVA SAURO^DINO"
    [PACS] 0010,0020 6 LO PatientID "157828"
    [PACS] 0010,0030 8 DA PatientBirthDate "19750901"
    [PACS] 0010,0040 2 CS PatientSex "M "
    [PACS] 0010,2000 0 LO MedicalAlerts ""
    [PACS] 0010,2110 0 LO ContrastAllergies ""
    [PACS] 0020,000d 0 UI StudyInstanceUID ""
    [PACS] 0032,1032 0 PN RequestingPhysician ""
    [PACS] 0032,1060 0 LO RequestedProcedureDe ""
    [PACS] 0040,0100 0 SQ ScheduledProcedureSt Sequence Item
    [PACS] >0008,0060 2 CS Modality "US"
    [PACS] >0040,0001 0 AE ScheduledStationAETi ""
    [PACS] >0040,0002 8 DA ScheduledProcedureSt "20080303"
    [PACS] >0040,0003 0 TM ScheduledProcedureSt ""
    [PACS] >0040,0006 0 PN ScheduledPerformingP ""
    [PACS] >0040,0007 0 LO ScheduledProcedureSt ""
    [PACS] >0040,0009 0 SH ScheduledProcedureSt ""
    [PACS] >0040,0010 0 SH ScheduledStationName ""
    [PACS] >0040,0011 0 SH ScheduledProcedureSt ""
    [PACS] >0040,1001 0 SH RequestedProcedureID ""
    [PACS] C-Find (Modality Work List) located 1 records
    [PACS] UPACS THREAD 99: ENDED AT: Mon Mar 03 15:49:14 2008
    [PACS] UPACS THREAD 99: TOTAL RUNNING TIME: 6 SECONDS




    The GE Call to me now, send 2 files for logic and voluson, and URL.


    how I can adjust established in these information?


    http://www.gehealthcare.com/us…cts/ultrasound_dicom.html


    the voluson is here....
    2.3.2.1.1.1 SOP Specific Conformance Statement to Modality Worklist Service SOP Class
    Each module which is used by the Worklist AE has a table below which indicates the elements supported.
    Scheduled Procedure Step Module Elements
    Name Tag Return Type Mapped into image Description
    Scheduled Procedure Step
    Sequence 0040, 0100 1 No Used
    >Scheduled Station AE Title 0040, 0001 1 No Used
    >Scheduled Procedure Step
    Start Date 0040, 0002 1 No Used
    >Scheduled Procedure Step
    Start Time 0040, 0003 1 No Used
    >Modality 0008, 0060 1 Yes “US” or zero length
    >Scheduled Performing
    Physician’s Name 0040, 0006 2 Yes Used
    >Scheduled Procedure Step
    Description 0040, 0007 1C No Used
    >Scheduled Station Name 0040,0010 2 No Used if present in the query form
    >Scheduled Procedure Step ID 0040, 0009 1 No Used


    Requested Procedure Module Elements
    Name Tag Return Type Mapped into image Description
    Requested Procedure ID 0040, 1001 1 No Used
    Requested Procedure
    Description 0032, 1060 1C No Used for Exam Type
    Study Instance UID 0020, 000D 1 No Used


    Imaging Service Request Module Elements
    Name Tag Return Type Mapped into image Description
    Accession Number 0008, 0050 2 Yes Used
    Referring Physician’s Name 0008, 0090 2 Yes Used


    Patient Identification Module Elements
    Name Tag Return Type Mapped into image Description
    Patient’s Name 0010, 0010 1 Yes Used
    Patient ID 0010, 0020 1 Yes Used


    Patient Demographic Module Elements
    Name Tag Return Type Mapped into image Description
    Patient’s Birth Date 0010, 0030 2 Yes Used
    Patient’s Sex 0010, 0040 2 Yes Used
    Patient’s Size 0010,0020



    thanks for all help.


    sds
    Marcelino

  • Quote from marcelvanherk

    Hi,


    I would put everything in the worklist database that GE asks for, listed on the top of the query.


    Marcel



    I made this and exactly thus it did not twirl.


    I install 1.4.12c from zero, in new machine, c:\dicomserver\dicom\a , b, c
    a - dbase3
    b - access
    c - Microsoft SQL 2000


    all installs works Storage and WorkList.


    in this machine install 1.4.13 in c:\dicomserver\1413\a, b , c , d


    a - dbase3
    b - access
    c - Microsoft SQL 2000
    d - Mysql 5.0.45community


    MSG from WL software test, "Data Received is too short" - DicomObjects -
    and in logic5 reboot


    Store works, MWL not, the error persists


    all instalations I'm using default, for test worklist I put your HL7 sample file



    Best Regards
    Marcelino

  • Hi,


    did you try disabling LittleEndianExplicit is dgatesop.lst on a fresh 1.4.13 install? This is the main difference I know between the two releases. Please compare the files or copy the 1.4.12c into 1.4.13 and restart it.


    Marcel

  • Quote from marcelvanherk

    Hi,


    did you try disabling LittleEndianExplicit is dgatesop.lst on a fresh 1.4.13 install? This is the main difference I know between the two releases. Please compare the files or copy the 1.4.12c into 1.4.13 and restart it.


    Marcel


    THANKS !!!!!, ALL WORK'S !!!!


    I only put the "#" and save, I retry in test software and all work....


    Equipment GE really has some thing missed in relation to the LittleEndianExplicit :)


    sds
    Marcelino

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!