DBA Data[Home] [Help]

APPS.AP_APPPST_PKG SQL Statements

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

Line: 62

  select decode(UPPER(ResultColumn), 'ENTERED_DR'  , Entered_DR
                                   , 'ENTERED_CR'  , Entered_CR
                                   , 'ACCOUNTED_DR', Accounted_DR
                                                   , Accounted_CR)
         into tmpForSwap from dual;
Line: 80

  select  decode(FC.minimum_accountable_unit,
            null, round(P_Amount, FC.precision),
                  round(P_Amount/FC.minimum_accountable_unit) *
                               FC.minimum_accountable_unit)
  into    l_rounded_amount
  from    fnd_currencies FC
  where   FC.currency_code = P_Currency_Code;