DBA Data[Home] [Help]

ORDSYS.ORD_DICOM dependencies on STANDARD

Line 58: -- 'STANDARD': Extract only DICOM Standard attributes and mapped

54: -- data: The input DICOM binary data stored in BLOB.
55: -- extractOption:
56: -- 'ALL': Default. Extract all attributes from the DICOM binary data.
57: -- 'MAPPED': Extract only mapped attributes.
58: -- 'STANDARD': Extract only DICOM Standard attributes and mapped
59: -- attributes.
60: -- docName: The name of the mapping document. The default mapping document
61: -- ordcmmp.xml is loaded during installation and refers to the default
62: -- metadata namespace of "http://xmlns.oracle.com/ord/dicom/metadata_1_0"

Line 79: -- 'STANDARD': Extract only DICOM Standard attributes and mapped

75: -- data: The input DICOM binary data stored in BFILE.
76: -- extractOption:
77: -- 'ALL': Default. Extract all attributes from the DICOM binary data.
78: -- 'MAPPED': Extract only mapped attributes.
79: -- 'STANDARD': Extract only DICOM Standard attributes and mapped
80: -- attributes.
81: -- docName: The name of the mapping document. The default mapping document
82: -- ordcmmp.xml is loaded during installation and refers to the default
83: -- metadata namespace of "http://xmlns.oracle.com/ord/dicom/metadata_1_0"

Line 100: -- 'STANDARD': Extract only DICOM Standard attributes and mapped

96: -- data: The input DICOM binary data stored in ORDSYS.ORDImage object.
97: -- extractOption:
98: -- 'ALL': Default. Extract all attributes from the DICOM binary data.
99: -- 'MAPPED': Extract only mapped attributes.
100: -- 'STANDARD': Extract only DICOM Standard attributes and mapped
101: -- attributes.
102: -- docName: The name of the mapping document. The default mapping document
103: -- ordcmmp.xml is loaded during installation and refers to the default
104: -- metadata namespace of "http://xmlns.oracle.com/ord/dicom/metadata_1_0"

Line 123: -- standard attributes and private attributes. The SOP instance

119: -- metadata.
120: -- Input:
121: -- src: The input DICOM binary data stored in BLOB.
122: -- metadata: The DICOM metadata in XMLTYPE. It should have all the
123: -- standard attributes and private attributes. The SOP instance
124: -- UID in the metadata must ensure the global uniqueness for the
125: -- destination DICOM binary data.
126: -- dest: BLOB to store the new DICOM binary data with the new metadata.
127: -- Exception: None.

Line 143: -- standard attributes and private attributes. The SOP instance

139: -- metadata.
140: -- Input:
141: -- src: The input DICOM binary data stored in BFILE.
142: -- metadata: The DICOM metadata in XMLTYPE. It should have all the
143: -- standard attributes and private attributes. The SOP instance
144: -- UID in the metadata must ensure the global uniqueness for the
145: -- destination DICOM binary data.
146: -- dest: BLOB to store the new DICOM binary data with the new metadata.
147: -- Exception: None.

Line 163: -- standard attributes and private attributes. The SOP instance

159: -- metadata.
160: -- Input:
161: -- src: The input DICOM binary data stored in ORDSYS.ORDImage object.
162: -- metadata: The DICOM metadata in XMLTYPE. It should have all the
163: -- standard attributes and private attributes. The SOP instance
164: -- UID in the metadata must ensure the global uniqueness for the
165: -- destination DICOM binary data.
166: -- dest: BLOB to store the new DICOM binary data with the new metadata.
167: -- Exception: None.

Line 305: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard

301: -- Description: Create a DICOM image from a source raster image and
302: -- DICOM metadata.
303: -- Input:
304: -- src: The source raster image stored in BLOB.
305: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard
306: -- and private attributes. It should have a new SOP instance
307: -- UID for the destination DICOM image.
308: -- dest: A DICOM image created from the source image and metadata.
309: -- Exception: None.

Line 321: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard

317: -- Description: Create a DICOM image from a source raster image and
318: -- DICOM metadata.
319: -- Input:
320: -- src: The source raster image stored in BFILE.
321: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard
322: -- and private attributes. It should have a new SOP instance
323: -- UID for the destination DICOM image.
324: -- dest: A DICOM image created from the source image and metadata.
325: -- Exception: None.

Line 337: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard

333: -- Description: Create a DICOM image from a source raster image and
334: -- DICOM metadata.
335: -- Input:
336: -- src: The source raster image stored in ORDImage object.
337: -- metadata: DICOM metadata in XMLTYPE. It should have all the standard
338: -- and private attributes. It should have a new SOP instance
339: -- UID for the destination DICOM image.
340: -- dest: A DICOM image created from the source image and metadata.
341: -- Exception: None.

Line 501: -- The default value is 'DICOM' which refers to the DICOM standard.

497: -- The tag must be a simple tag and not a wild card tag like 6011xx01
498: -- docName : specifies the name of a mapping document.
499: -- The default value is 'ordcmmp.xml'
500: -- definerName: specifies the definer name of the tag in the mapping document.
501: -- The default value is 'DICOM' which refers to the DICOM standard.
502: -- Returns: The absolute xpath associated with the tag and definer in the
503: -- specified mapping document.
504: -- Null - if the tag is not associated with a path.
505: FUNCTION getMappingXpath(

Line 512: --Desc: : Lookup the standard and/or private dictionaries for the given tag name

508: definerName IN VARCHAR2 DEFAULT 'DICOM')
509: RETURN VARCHAR2 DETERMINISTIC;
510:
511: --Name: getDictionaryTag
512: --Desc: : Lookup the standard and/or private dictionaries for the given tag name
513: -- and definer name and return a hexadecimal tag string.
514: --Input:
515: -- attributeName: specifies the name of tag in the standard or private dictionary .
516: -- eg: 'Patient's Name'

Line 515: -- attributeName: specifies the name of tag in the standard or private dictionary .

511: --Name: getDictionaryTag
512: --Desc: : Lookup the standard and/or private dictionaries for the given tag name
513: -- and definer name and return a hexadecimal tag string.
514: --Input:
515: -- attributeName: specifies the name of tag in the standard or private dictionary .
516: -- eg: 'Patient's Name'
517: -- definerName: specifies the definer name of the tag in the standard
518: -- or private dictionary. The default value is 'DICOM'
519: --Returns: The hexadecimal tag string for the given tag name and definer name

Line 517: -- definerName: specifies the definer name of the tag in the standard

513: -- and definer name and return a hexadecimal tag string.
514: --Input:
515: -- attributeName: specifies the name of tag in the standard or private dictionary .
516: -- eg: 'Patient's Name'
517: -- definerName: specifies the definer name of the tag in the standard
518: -- or private dictionary. The default value is 'DICOM'
519: --Returns: The hexadecimal tag string for the given tag name and definer name
520: -- The returned string will always be a simple tag like 60116011.
521: FUNCTION getDictionaryTag(