DBA Data[Home] [Help]

APPS.AP_APXMTDTR_XMLP_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 14

  SELECT  p.base_currency_code,
          c.precision,
          c.minimum_accountable_unit,
          c.description
  INTO    base_curr,
          prec,
          min_au,
          descr
  FROM    ap_system_parameters p,
          fnd_currencies c
  WHERE   p.base_currency_code  = c.currency_code;
Line: 70

   SELECT  ly.meaning,
           ln.meaning,
           l1.displayed_field,
           l2.displayed_field,
           l3.displayed_field
   INTO    nls_yes,
	   nls_no,
	   nls_all,
	   nls_void,
	   nls_na
   FROM    fnd_lookups ly,
	   fnd_lookups ln,
	   ap_lookup_codes l1,
	   ap_lookup_codes l2,
	   ap_lookup_codes l3
   WHERE   ly.lookup_type = 'YES_NO'
     AND   ly.lookup_code = 'Y'
     AND   ln.lookup_type = 'YES_NO'
     AND   ln.lookup_code = 'N'
     AND   l1.lookup_type = 'NLS REPORT PARAMETER'
     AND   l1.lookup_code = 'ALL'
     AND   l2.lookup_type = 'NLS TRANSLATION'
     AND   l2.lookup_code = 'VOID'
     AND   l3.lookup_type = 'NLS REPORT PARAMETER'
     AND   l3.lookup_code = 'NA';
Line: 277

     SELECT  name,
             chart_of_accounts_id
     INTO    l_name,
             l_chart_of_accounts_id
     FROM    gl_sets_of_books
     WHERE   set_of_books_id = l_sob_id;
Line: 376

    select substr(user_conversion_type,1,16) user_conversion_type
    into l_exchange_rate_type_desc
    from gl_daily_conversion_types
    where conversion_type = c_exchange_rate_type;
Line: 392

    select substr(user_conversion_type,1,16) user_conversion_type
    into l_rate_type_desc_po
    from gl_daily_conversion_types
    where conversion_type = c_rate_type;
Line: 408

    select substr(user_conversion_type,1,30) user_conversion_type
    into l_exchange_rate_type_desc_rec
    from gl_daily_conversion_types
    where conversion_type = c_exchange_rate_type1;