DBA Data[Home] [Help]

APPS.AR_RAXINVPR_XMLP_PKG dependencies on AR_LOOKUPS

Line 7: declare msg AR_LOOKUPS.MEANING%TYPE;

3:
4: function AfterPForm return boolean is
5: begin
6:
7: declare msg AR_LOOKUPS.MEANING%TYPE;
8: out1 varchar2(4096);
9: out2 varchar2(4096);
10: trn ar_system_parameters.tax_registration_number%TYPE;
11:

Line 110: from ar_lookups option_lu

106:
107: select option_lu.meaning
108: --into print_option
109: into print_option_t
110: from ar_lookups option_lu
111: where option_lu.lookup_type(+) = 'INVOICE_PRINTING'
112: and option_lu.lookup_code(+) = upper(p_choice);
113:
114: --print_option := print_option;

Line 163: from ar_lookups open_lu

159: if p_open_invoice is not null then
160: select open_lu.meaning
161: --into open_invoices
162: into open_invoices_t
163: from ar_lookups open_lu
164: where open_lu.lookup_type = 'YES/NO'
165: and open_lu.lookup_code = p_open_invoice;
166: --open_invoices := open_invoices;
167: open_invoices := open_invoices_t;