DBA Data[Home] [Help]

APPS.OTA_EVAL_XMLP_PKG SQL Statements

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

Line: 6

   select version_name
   from ota_activity_versions_tl
   where activity_version_id = P_ACTIVITY_ID
   and language = userenv('LANG');
Line: 21

    select title
    from ota_events_tl
    where event_id = P_EVENT_ID
    and language = userenv('LANG') ;
Line: 34

    select es.meaning
    from hr_lookups es
    WHERE es.lookup_type='OTA_EVAL_REPORT_TYPE'
    AND sysdate BETWEEN NVL(es.start_date_active,sysdate) AND NVL (es.end_date_active, sysdate)
    AND es.enabled_flag ='Y'
    AND es.lookup_code = P_ANSWER_TYPE ;
Line: 50

     select fnd_date.date_to_displaydate(to_date(substr((P_FROM_DATE),1,10),'yyyy/mm/dd'))
     into C_FROM_DATE
     from dual;
Line: 58

     select fnd_date.date_to_displaydate(to_date(substr((P_TO_DATE),1,10),'yyyy/mm/dd'))
     into C_TO_DATE
     from dual;