DBA Data[Home] [Help]

APPS.IGI_CIS2007_IGIPPADR_PKG dependencies on IGI_LOOKUPS

Line 71: l_print_type IGI_LOOKUPS.MEANING% TYPE := null;

67: return(TRUE);
68: end BeforeReport;
69: -------------------------------------------------------------------------------------
70: function get_PRINT_TYPE return varchar2 is
71: l_print_type IGI_LOOKUPS.MEANING% TYPE := null;
72: begin
73: select meaning
74: into l_print_type
75: from IGI_LOOKUPS

Line 75: from IGI_LOOKUPS

71: l_print_type IGI_LOOKUPS.MEANING% TYPE := null;
72: begin
73: select meaning
74: into l_print_type
75: from IGI_LOOKUPS
76: where LOOKUP_TYPE = 'IGI_CIS2007_PRINT_TYPES'
77: and LOOKUP_CODE = P_PRINT_TYPE;
78: return(l_print_type);
79: exception