Current action vs action in

Application
Current SQL
bxaptxn8wf54j
Current SQL Command
SELECT
Last Call Duration
26:7 (mm:ss)
SQL Trace
DISABLED
Current SQL Trace Level
1
Trace With Wait Information
DISABLED
Trace With Bind Information
DISABLED
Open Cursors
71
Program
Unavailable
Service
PROD
Current Module
IEUSEUWQ
Current Action
FRM:JOSONC1:RBI Collections Ag
The above is from dbconsole - it shows the "current module" and the "current action".
General
Module
IEUSEUWQ
Action
FRM:VICKERYJ:RBI Collections Age
Parsing Schema
APPS
PL/SQL Source (Line Number)
Not Applicable
SQL Profile
n/a
SQL Plan Baseline
n/a
The above is also from the same module, but this time we have "action".
Please, what would be the difference between "action" and "current action"??
I have checked several documents, such as http://docs.oracle.com/cd/B28359_01/server.111/b28275/tdppt_sqltune.htm
which deal with "action", but nothing to reference "current action"
11.2.0.3
RHEL 5.5

I'm only guessing, but from the looks of what is in there, I think it's just a labelling difference.  For how to set it, see DBMS_APPLICATION_INFO
(Found by googling: "current action" grid docs.oracle.com in the vain hope that there would be some grid doc to explain dbconsole more fully)

Similar Messages

  • Photoshop action : "do action" rejected by apple script

    Hallo,
    I cannot get apple script to run a photoshop action.
    OSX 10.4.8
    Photoshop CS (8)
    Apple script 2.1.1(81)
    My action changes the ITPC info then saves and closes the image. I want to be able to control click a folder and change the ITPC info for all files in the folder.
    I have tried copying various solved answers from the forum and compiling them in order to rewrite them to fit my needs But Apple script stumbles at "do action" and tells me " expected end of line but found identifier "
    This script was adapted form a solved answer on the forum:
    TIA
    Martin
    set inputFolder to choose folder with prompt "Please choose the folder containing Images" --without invisibles
    tell application "Finder"
    --filesList is list of images
    set filesList to files in inputFolder
    end tell
    repeat with aFile in filesList
    tell application "Finder"
    set theFile to aFile as alias
    end tell
    tell application "Adobe Photoshop CS"
    open theFile
    tell front document
    do action "fotoname" from "MCACTIONS"
    end tell
    end tell
    end repeat

    Hello Tia Martin,
    Tente este Script Por aqui funciona.
    Bom escrever em Proyugues não?
    Mas cuidaddo tenho uma linha final que deleta os arquivos.
    Se você não quer que isto aconteça fina lize a linha antes.
    Boa sorte
    Sidnei
    property speak_alert : false -- if true, the script will speak the alert. If false, the script will display an alert dialog
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    property copychecksindicator : false
    property itemcheck_delaytime : 2
    property foldercheck_delaytime : 3
    property speciallabelindex : 7
    on adding folder items to this_folder after receiving added_items
    if copychecksindicator is true then
    set the added_items to my checkaddeditems(the added_items)
    if the added_items is {} then return "no vaild items"
    end if
    set input to choose folder
    tell application "Finder"
    set filesList to files in input
    end tell
    repeat with aFile in filesList
    set fileIndex to 0
    tell application "Finder"
    set theFile to aFile as alias
    set theFileName to name of theFile
    end tell
    tell application "Adobe Photoshop CS"
    activate
    set display dialogs to never
    open theFile
    tell the current document
    do action "fotoname" from "MCACTIONS"
    tell application "Finder" to delete file theFile
    end tell
    end tell
    end repeat
    end adding folder items to

  • "Can't get Action from Action Reference"?

    I really can't figure out why I get java.lang.IllegalArgumentException with "Can't get Action from Action Reference: BeanName.actionName" message. I specified all properties in faces-config.xml. Bean and its action names are all checked several times, but I still get that exception. Is it a JSF bug, or my simple mistake? Is there anyone who experienced the same problem?
    I'm using two forms in one page. all components' ids are all different. Only one form generated the exception not regarding the order of the forms. (the one is login form and the other (which doesn't generate exception) is leave-comment form.)
    Here is the form code:
                   <h:form id="loginForm" formName="loginForm" >
                        Login >
                        <h:input_text id="loginUserName" valueRef="UserBean.userName">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_text>
                        |
                        Password >
                        <h:input_secret id="loginPassword" valueRef="UserBean.password">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_secret>
                        |
                        <h:command_button id="loginSubmit" label="login" commandName="loginSubmit" actionRef="UserBean.loginAction" />
                   </h:form>
    and here is managed-bean part:
    <managed-bean>
         <managed-bean-name>UserBean</manager-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.UserBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>idStr</property-name>
    <null-value/>
    </managed-property>
    <managed-property>
    <property-name>userName</property-name>
    <null-value/>
    </managed-property>
              <managed-property>
                   <property-name>password</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
    Thanks in advance!

    here goes the source code of NotesBean:
    abstract class NotesBean {
         protected static final String SUCCESS = "success";
         protected static final String FAILURE = "failure";
         private String connectionProfile;
         protected NotesBean() {}
         public String getConnectionProfile() {
              return connectionProfile;
         public void setConnectionProfile(String newProfileName) {
              connectionProfile = newProfileName;
         public abstract Action getCreateAction();
         public abstract Action getDeleteAction();
         public abstract Action getUpdateAction();
         protected Connection getConnection() throws NotesException {
              ConnectionProfile profile = ConnectionProfileFactory.getProfile(connectionProfile);
              return DriverManager.getConnection(profile.getUrl(), profile.getProperties());
    }I think everything is ok with the beans, right?
    By the way: shouldn�t the error message be:
    "Can't get Action from Action Reference: UserBean.loginAction"I just examplified the message using somewhat generic name. Sorry for confusion :)
    As a final try, here is the whole JSP code: (ignore korean texts)
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://gleamynode.net/notes" prefix="notes" %>
    <html>
    <head>
         <title>gleamynode.net :: gathering of my mentality</title>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
         <link rel="stylesheet" HREF="css/gleamynode.css" type="text/css" />
    </head>
    <body>
    <f:use_faces>
    <notes:useNotes>
         <c:choose>
              <c:when test="${empty param['id']}">
                   <notes:getPages var="pages" />
                   <c:forEach var="p" items="${pages}" begin="0" end="0">
                        <c:set var="p" value="${p}" scope="request"/>
                   </c:forEach>
              </c:when>
              <c:otherwise>
                   <notes:getPage var="p" pageId="${param['id']}" />
              </c:otherwise>
         </c:choose>
         <div id="header">
              <h:command_hyperlink href="index.jsp" label="gleamynode.net :: gathering of my mentality"/>
         </div>
         <div id="menu">
              About | Essays | Projects | Others | Links
         </div>
         <div id="content">
              <div id="page">
                   <div id="pageTitle">
                        #${p.id}. ${p.title}
                   </div>
                   <div id="pageContent">
                        ${p.content}
                        <div id="pageTimestamp">
                             ${p.timestamp}
                        </div>
                   </div>
              </div>
              <c:choose>
                   <c:when test="${fn:length(p.comments) > 0}">
                        <div id="comments">
                             <div id="teaser">
                                  ${fn:length(p.comments)} ?? ??? ????
                             </div>
                             <c:forEach var="c" items="${p.comments}">
                                  <div id="commentHeader">
                                       #${c.id}. ${c.userName}
                                  </div>
                                  <div id="commentContent">
                                       ${c.content}
                                       <div id="commentTimestamp">
                                            ${c.timestamp}
                                       </div>
                                  </div>
                             </c:forEach>
                        </div>
                   </c:when>
              </c:choose>
              <div id="commentForm">
                   <jsp:useBean id="CommentBean" class="net.gleamynode.notes.http.faces.CommentBean" scope="request" />
                   <jsp:setProperty name="CommentBean" property="pageIdStr" value="${p.id}"/>
                   <jsp:setProperty name="CommentBean" property="content" value=""/>
                   <div id="teaser">
                   </div>
                   <h:form id="commmentForm" formName="commentForm" >
                        <input type="hidden" name="id" value="${p.id}"/>
                        <h:input_hidden id="pageId" valueRef="CommentBean.pageIdStr"/>
                        <table width="95%">
                             <tr>
                                  <td class="name" width="9%">Name:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userName" valueRef="CommentBean.userName">
                                            <f:attribute name="style" value="width:75%;"/>
                                       </h:input_text>
                                  </td>
                                  <td class="name" width="8%">Email:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userEmail" valueRef="CommentBean.userEmail">
                                            <f:attribute name="style" value="width:75%;"/>
                                       </h:input_text>
                                  </td>
                                  <td class="name" width="8%">URL:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userURL" valueRef="CommentBean.userURL">
                                            <f:attribute name="style" value="width:100%;"/>
                                       </h:input_text>
                                  </td>
                             </tr>
                             <tr>
                                  <td colspan="6">
                                       <h:input_textarea id="content" valueRef="CommentBean.content">
                                            <f:attribute name="style" value="width:100%; height: 12em;"/>
                                       </h:input_textarea>
                                  </td>
                             </tr>
                             <tr>
                                  <td class="buttons" colspan="6">
                                       <h:command_button id="submit" label="leave a comment" commandName="submit" actionRef="CommentBean.createAction" />
                                  </td>
                             </tr>
                        </table>
                   </h:form>
              </div>
              <div id="loginForm">
                   <div id="teaser">
                   </div>
                   <h:form id="loginForm" formName="loginForm" >
                        Login >
                        <h:input_text id="loginUserName" valueRef="UserBean.userName">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_text>
                        |
                        Password >
                        <h:input_secret id="loginPassword" valueRef="UserBean.password">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_secret>
                        |
                        <h:command_button id="loginSubmit" label="login" commandName="loginSubmit" actionRef="UserBean.loginAction" />
                   </h:form>
              </div>
              <div id="copyright">
                   Copyright � 1999~ by Trustin Lee, All Rights Reserved.
              </div>
         </div>
         <div id="footer">
         </div>
    </notes:useNotes>
    </f:use_faces>
    </body>
    </html>and, here is the whole faces-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
              "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
              "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
        <navigation-rule>
            <from-tree-id>/index.jsp</from-tree-id>
            <navigation-case>
                <from-outcome>success</from-outcome>
                <to-tree-id>/index.jsp</to-tree-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>failure</from-outcome>
                <to-tree-id>/failure.jsp</to-tree-id>
            </navigation-case>
        </navigation-rule>
         <managed-bean>
              <managed-bean-name>PageBean</managed-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.PageBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>title</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>content</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
         <managed-bean>
              <managed-bean-name>CommentBean</managed-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.CommentBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
            <managed-property>
                <property-name>pageIdStr</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>userName</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>userEmail</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>userURL</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>content</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
        <managed-bean>
             <managed-bean-name>UserBean</manager-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.UserBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
            <managed-property>
                <property-name>userName</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>password</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
    </faces-config>Thank you for your continuous help, Rene! Learned alot from you about JSF :)

  • I get an error when attempting to start genius. It says "Unsuccessful Action: The action you attempted to perform did not complete successfully. Please try again later." Help!

    I get an error when attempting to start genius. It says "Unsuccessful Action: The action you attempted to perform did not complete successfully. Please try again later." Help!

    From an existing Discussion:
    Go to Safari --> Preferences
    Click Security
    Show Cookies
    Type "apple.com" in to top search field
    Select All
    Click Remove
    Click Done
    Repeat the above to confirm they are gone (mine took two attempts)
    Choose Update Genius again in iTunes.
    iTunes 9 - can't update genius https://discussions.apple.com/thread/2151150

  • OSB - Publish action - Request action message enrich/ tranformation impact

    Hi ,
    Today I came across an analysis on how the performance of thread is impacted if we have these two scenarios.
    1. A stage containing all the pre enrichment and validation and transformation to the input message to construct the request message for Publish action(to BS)
    2. A Publish action - Request action - sub activities / actions containing the enrichment, validation and transformation to construct the request message from input message
    An expert advice is expected to see if there is any significant impact in performance and thread analysis. This cal has to be made on entire implementation which has almost 70+ services.
    Thanks for quick reply.

    Enable tracing in osb console, and for debugging try adding routing options in publish node and change the quality of service to exactky once. You will then eb able to see the error.
    Also if you do not require your ps2 to be accessed outside the jvm consider making the ps2 a local proxy service.

  • Custom actions - automated action -

    Custom actions - automated action - how do I stop each file in a batch from popping up onto the screen as it processes? I used to be able to process files in the background as I worked on other things, but now the screen pops up as each file in a batch is processed.

    I'm not so sure. I was asking because the way things are set up is different with the last three versions of Acrobat. If you provide more information about what the action is set up and what version you're using, it might help.

  • Applescript for running specific action from action wizard...

    Hi Forum,
    using this applescript I m running my "INDEGN" action from action wizard...
    the first step is activated through the applescript.. (ie. INDEGN action is correctly picked)
    but how to "click next button" to proceed to next steps..
    tell application "System Events"
        tell application process "Acrobat"
            tell application "Adobe Acrobat Pro" to activate
            click the menu item "INDEGN" of menu 1 of menu item "Action Wizard" of the menu "File" of menu bar 1  ## here it is not cliking next button.....
            click button "Next" of window "Action: INDEGN"
    click button "Close" of window "Action: INDEGN"
        end tell
    end tell
    many thanks for the support..

    HI DAVE,
    thanks for the reply,,
    Is there any other way to run "my action" from action wizard. using script....
    Would be  a great help if advised....
    Many thanks...

  • Applescript to run "action" in action wizard

    Hi Forum,
    using this applescript I m running my "INDEGN" action from action wizard...
    the first step is activated through the applescript.. (ie. INDEGN action is correctly picked)
    but how to "click next button" to proceed to next steps..
    tell application "System Events"
        tell application process "Acrobat"
            tell application "Adobe Acrobat Pro" to activate
            click the menu item "INDEGN" of menu 1 of menu item "Action Wizard" of the menu "File" of menu bar 1  ## here it is not cliking next button.....
            click button "Next" of window "Action: INDEGN"
    click button "Close" of window "Action: INDEGN"
        end tell
    end tell
    many thanks for the support..

    Hello Rajinik,
    I found your question in the forum and I am exactly in the same situation...
    I hace some actions defined in Acrobat X Pro and I would like to execute them just by saving a file in a folder, but it seems something difficult to achieve.
    Did you find any help on this or another forum to resolve it?
    Searching for some info, i found a website with some info about a way to automatically OCR the pdf pages through theaction wizard, but it didn´t worked in my Mac. Search in Google "OCR This"
    Thanks and Regards
    Johanet

  • Difference between actions & personnel actions

    Hi
    what is the difference between actions & personnel actions
    Regards

    Hi,
    by Actions do you mean Actions infotype or object actions in OM which are accessed through PP03?
    Personnel Actions - These help you maintain data by providing a serious of infotypes which you define through infogroup.
    Actions (IT0000) - This is the table that maintains the action data and reasons along with statuses
    Objection Actions is similar to Personnel actions - here while maintaining objects such as position or org units etc you are provided with a serious of infotypes which you can maintain.
    hope this helps
    Ajay

  • Action calling action cause page expires?:

    Hi
    I am using struts with titles. My problem is when I press the back button in the internet explorer my page expires. I tried nocache property set it as both a way in jsp.
    Note: my application design is every time an action calls another action that action only brings the page.
    Is this the problem? If so what is the solution.

    Is id the property of the sessionBean you're interested in?
    Following the About the Application Model Tutorial,
    To set properties I use:
    getSessionBean1().set<propertyName>(<object>)
    getSessionBean1().setID(new Integer(problemRowSet.getInt("ID")To get properties I use:
    getSessionBean1().get<propertyName>()
    getSessionBean1().getID()As for the button action event, I'd right click it in the designer to let Creator generate the function. If I fill it in myself sometimes Creator acts like it wasn't there. :(

  • Rollback while adding new record - current form cancels action

    Hi, I'm using a create record form, if the user wants to cancel the creation of the record, they have to first fill it out before they can rollback and cancel it's creation.
    How can I avoid this?

    Do you mean that the Rollback button is greyed out until they have submitted the information? If that's the case check out the following:
    http://www.groundside.com/blog/content/DuncanMills/J2EE+Development/?permalink=47E3819366FE66199FDDBBF3F8610A52.txt

  • Increase in pay(Salary)action/ promotion action

    Dear all
    In this action what are the infotypes used in this action request u if you have any document on this pls share
    pls carify is increase in salary action or promotion action are same

    Dear Girish V,
    This is based on your client requirement my suggestion is first see their system which data they are maintaining while running action's like Hiring, Promotion, termination, etc......! then compare or map into SAP system this is best practices every one will follow same......!
    In my current organization my client is following
    Ur's
    Mohan

  • How to see List of action type & action code in Form View..

    Hi~ Guys ... please help me ~
    In Design Tab of workspace...
    I have worked  like this..
    step 1) I made a Form Wiew using a Add Input Form from BI Query Icon ,
    step 2) submit button was made in the configure element automatically ,,
    step 3) click the submit button to execute the query and it works normally.
                (action code is in the action tab of control properties.. maybe it was created automatically..)
    but, I would like to create submit button in toolbar,,
    step 1)  I click the create toolbar in context menu of form view
    step 2) click the add button to create toolbar button,,
    step 3) rename Button
    step 4) I'd like to click the PLUS button to add the  acton name  and action code
                 -> Menu name : select the type of action that will be triggered by this field  (is located under the define button )
    but , step 4).. I do not see List of Action Name like Submit Form
                          Plus Icon do not working..
    I don't know what the problem is  ..( I installed xml parser 4.0 , svg viewer 3.0 , explorer 8 )
    I wonder I missed a step or I did not install other programs
    Please help me ~

    Hi~
    Thank you for your interest in my question..
    My operating system is Window 7(Enterprise K, service pack 1)
    and..
    my internet browser is Internet Explorer 8(8.07601.17514)
    and..
    VC version is 7.0
    ( GML/Client/VC server/Flex/Potal Content/Potal connector - Version is 700.23 )
    I tried to run in compatibility mode as you said..
    but, The results are same as old,,
    Is it any relation in Client(PC) setting ?
    Regards,
    Evandave

  • [CS3][JS] How to get list of Actions and Action Groups

    Does anyone know of a Javascript method for retrieving the list of Action Group names and Action names as an array? I'm trying to do a check that the requested Action Group and Action is available before starting a script.
    Thank you.

    If you look at Image Processor.jsx you shuld find them near the bottom of the script.

  • Struts: passing a formbean from action to action

    Hi,
    I need to share the same bean between actions, not only by declaring it in all of them (already done, some validated, some not), but also if in action 1 i populate the bean (it's an insertion page), i want to pass it on to action 2 (who must display it).
    How is that done in Struts?
    Right now i put the populated bean into the session as an attribute after action 1, then i call the next action but even if the jsp associated with action has an html:form declaration and should look for the bean in the session, it doesn't.
    It correctly pulls out the bean declared, but the values inserted in page1 are not there.
    Can you help me? Please ask for any additional info..

    I'm sorry I think I got it solved.. I can fill the bean with data from a form and retrieve the same bean from the next action, as long as it's in the request or in the session scope in both (same scope both actions).

Maybe you are looking for