DBA Data[Home] [Help]

APPS.IGI_CIS2007_IGIPPADR_PKG dependencies on IGI_LOOKUPS

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

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

Line 73: from IGI_LOOKUPS

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