DBA Data[Home] [Help]

APPS.WF_CACHE SQL Statements

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

Line: 92

     ItemAttrValues.DELETE;
Line: 107

    Activities.DELETE;
Line: 108

    ActivityAttributes.DELETE;
Line: 109

    ActivityAttrValues.DELETE;
Line: 110

    ActivityTransitions.DELETE;
Line: 111

    ItemAttributes.DELETE;
Line: 112

    ItemTypes.DELETE;
Line: 113

    ProcessActivities.DELETE;
Line: 114

    NLSParameters.DELETE;
Line: 132

           Activities.DELETE;
Line: 139

           ActivityTransitions.DELETE;
Line: 146

           ActivityAttributes.DELETE;
Line: 151

           Activities.DELETE;
Line: 156

           ProcessActivities.DELETE;
Line: 162

           ActivityAttrValues.DELETE;
Line: 168

           ItemAttributes.DELETE;
Line: 174

           ItemTypes.DELETE;
Line: 180

           ProcessActivities.DELETE;
Line: 187

           ProcessStartActivities.DELETE;
Line: 208

 |  has been updated by wfload.                  |
 +===============================================*/

   FUNCTION MetaRefreshed return BOOLEAN is

   l_UpdateTime          DATE;
Line: 221

        | last updated.                          |
        +----------------------------------------*/
       begin
         select to_date(text, WF_ENGINE.date_format) into l_UpdateTime
         from   WF_RESOURCES
         where  TYPE='WFTKN'
         and    NAME = 'WFCACHE_META_UPD'
         and    LANGUAGE = 'US';
Line: 240

       if ( l_UpdateTime > CacheSessionID ) then

         /*---------------------------------------+
          | The itemType was updated.  We will    |
          | Clear the cache and reset our         |
          | CacheSessionID for a new Caching      |
          | session                               |
          +---------------------------------------*/
         WF_CACHE.Clear;
Line: 277

 | This api will update the WFCACHE_META_UPD     |
 | resource token to the current sysdate to      |
 | cause any running caches to be cleared.  This |
 | code is called by WF_LOAD when an upload event|
 | has taken place.                              |
 +===============================================*/

   PROCEDURE Reset IS

     BEGIN
       if ((NOT trustedTransaction) or (trustedTransaction is NULL)) then
           -- We will update the token to the current sysdate.
           update WF_RESOURCES set text = to_char(sysdate,
                                                  WF_ENGINE.date_format)
           where  name = 'WFCACHE_META_UPD';
Line: 297

              insert into WF_RESOURCES (TYPE, NAME, LANGUAGE,SOURCE_LANG, ID,
                                        TEXT, PROTECT_LEVEL, CUSTOM_LEVEL)
                    values ('WFTKN', 'WFCACHE_META_UPD', 'US', 'US', 0,
                            to_char(sysdate, WF_ENGINE.date_format), 0, 0);
Line: 652

        WF_CACHE.ActivityTransitions.DELETE;
Line: 1040

        WF_CACHE.ProcessStartActivities.DELETE;