DBA Data[Home] [Help]

APPS.WFJ_QUEUE SQL Statements

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

Line: 195

    select EVENT_VALUE
    into srcValue
    from WF_ITEM_ATTRIBUTE_VALUES
    where ITEM_TYPE = ApplyTransformation.itemtype
    and ITEM_KEY = ApplyTransformation.itemkey
    and NAME = ApplyTransformation.srcName;
Line: 203

    select ROWID
    into lRowid
    from WF_ITEM_ATTRIBUTE_VALUES
    where ITEM_TYPE = ApplyTransformation.itemtype
    and ITEM_KEY = ApplyTransformation.itemkey
    and NAME = ApplyTransformation.dstName;
Line: 225

    update WF_ITEM_ATTRIBUTE_VALUES
    set EVENT_VALUE = dstValue
    where ITEM_TYPE = ApplyTransformation.itemType
      and ITEM_KEY = ApplyTransformation.itemkey
      and NAME = ApplyTransformation.dstName;