Package gb_gtvimst Standard functions and procedures for the Immunization Status Code Validation Table. |
Program units |
f_code_exists | Determines if the code exists in the table. |
f_get_description | Returns the description for the code. |
Cursors |
gtvimst_c | Returns the record from the validation table. |
gtvimst_c
CURSOR gtvimst_c( p_code gtvimst.gtvimst_code%TYPE) RETURN gtvimst%ROWTYPE;
Returns the record from the validation table.
f_code_exists
FUNCTION f_code_exists(p_code gtvimst.gtvimst_code%TYPE) RETURN VARCHAR2
Determines if the code exists in the table.
Parameters |
p_code |
Immunization Status Code. |
Returns |
Y if found, otherwise N. |
f_get_description
FUNCTION f_get_description(p_code gtvimst.gtvimst_code%TYPE) RETURN VARCHAR2
Returns the description for the code.
Parameters |
p_code |
Immunization Status Code. |
Returns |
Description. |