Triggering action from email

Hi,
I am looking to build in a function where by users will be able to accept or reject invitations sent to them via email. After they accept/reject an invitation by clicking on a link/button(or something else) in the email, the r/3 back end will be updated.
Is it possible to do this directly from the email without having to redirect the user to a web page for him to act on?
Anyone can advise me on wat is the better way to implement such a functionality?
tia

Hi!
As far as I see there is no better way than calling a JSP/Servlet or BSP via two URLs, which encapsulate the answer (Accept/Reject) together with the user- and other data. The receiving web page has than to call the backend-function and confirm users choice.
Regards,
Thomas

Similar Messages

  • Triggering actions from videos

    Hi,
    The training we are working on is to do with gas exposure and what people will notice in a lab.
    I would like advice on the best way of getting a video to trigger actions ( pop up of relevant additonal material)
    The options seem to be
    A. Use Captivate 6 synchronise with project
    http://help.adobe.com/en_US/captivate/cp/using/WS16484b78be4e154270f21eb3136c5dda728-8000. html#WS16484b78be4e1542-1411ce68136cff7c8d0-8000
    But some people have problems
    http://forums.adobe.com/message/4554583#4554583
    It also means that you can't give the user play controls
    B- Insert a third party video player
    http://forums.adobe.com/message/3139592
    Here is an example of it in use
    http://flash.flowplayer.org/demos/events/embedded-cuepoints.html
    C. Use video cue points from premiere pro
    http://help.adobe.com/en_US/flash/cs/using/WSb03e830bd6f770ee44b1d711124cbf9161e-8000.html
    I can't see an advanced action that uses cue points
    There was a request a while ago to add cue ponts to the timeline, but it doesn't seem to have been approved
    http://forums.adobe.com/thread/930430
    D So Create a new stand alone flv player that will listen to cue points
    http://forums.adobe.com/thread/557865
    Has anyone done this ?
    Is it tricke ?
    E. use audio markers from audition
    I can't see an advanced action that uses audi markers
    F. Maybe presenter ?????
    regards Renovator

    Yes, you can. See for some examples:
    http://psrightclicktools.codeplex.com/wikipage?title=Client%20Actions
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Access to triggering element in a Dynamic Action from PL/SQL ?

    Hi,
    I have a form that is used to calculate the volume of a (large) number of tanks based on entered tank heights.
    I have a PL/SQL procedure that performs the calculation - it is given the name of the tank and the height and calculates the volume (each tank may have different physical characteristics).
    I didn't want to create a Dynamic Action per tank (I'm lazy and the number of tanks is large!). I currently have a Dynamic Action that is triggered whenever any of the tank heights on the form change. The action PL/SQL calls the calculation for each tank. E.G.
    :P1_TANK1_VOL := tank.vol('TANK1', :P1_TANK1_HEIGHT);
    :P1_TANK2_VOL := tank.vol('TANK2', :P1_TANK2_HEIGHT);
    :P1_TANK50_VOL := tank.vol('TANK50', :P1_TANK50_HEIGHT);
    This works but involves performing 50 calculations whenever a single one is required and can appear to be slow.
    Is there a way to identify the triggering element from the PL/SQL action? E.G.
    IF TriggeringElement = 'P1_TANK1_HEIGHT' THEN
    :P1_TANK1_VOL := tank.vol('TANK1',:P1_TANK1_HEIGHT);
    END IF;
    Any ideas?

    Very neat, many thanks.
    I now have a 'Set Value' 'Javascript Expression' action of 'this.triggeringElement.id;' to set a hidden *but unprotected* page item. This is followed by the 'Execute PL/SQL' action which simply calls a package procedure and passes the name of the triggering item. The procedure then sets the session state(s) as required.
    Thank you!

  • Is it possible to change the "From Email Address in workflow"

    I have a created a task list and set a workflow for the list.
    Workflow Actions:
    1. Send a Email to the "Assigned To" user whenever a task is created.
    2. If the Task is due, send an reminder Email and even if its not completed, send a Email to the higher Management.
    Workflow is working fine.
    Issue:
    The Email from address is the Email Address that has been entered in the SharePoint central admin Outgoing Email address.
    I would need the from address to be of whomever has assigned the task to the particular person.
    Let me know if its possible?

    Hi Alex,
    According to your description, my understanding is that you want to change the From email address in workflows.
    The from address is set in the outgoing e-mail settings in Central Administration.
     There is no OOB way to change it in workflows.
    As a workaround, I suggest you develop your own workflow activity to do it.
    Or, there is a CodePlex solution, it contains a Send Email Extended action which allows you to specify the sender, you can take a look at:
    http://spdactivities.codeplex.com/
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • System variables in R/3 for the action from the portal

    Hi,
    How can we know the action from the portal,i mean from the create expense report i want to throw an error message if the user press "Review" button based on my validation. i have written in the badi,but when the user press "Previous step" button also this badi is getting triggered and as per the validation it is throwing an error message, i cannot go back. Are there any system variables that we can capture which button he pressed from the portal so that i can control to throw an error message only when the user press "Review" button.
    Thanks & Regards,
    Anil kumar

    Resolved

  • What is the best way to call a pageflow action from JavaScript?

    What is the best way to call a pageflow action from JavaScript?
    Thanks,
    John

    John,
    How would I do this from a grid??? Unfortunately there are no JavaScript attributes
    on any of the grid tags that I can see.
    Thanks,
    John
    "John H" <[email protected]> wrote:
    >
    Thanks John!
    "John Rohrlich" <[email protected]> wrote:
    John,
    If you want to put up a confirm dialog before calling an action from
    an
    anchor it is done as follows.
    Here is an example from code of mine that deletes a customer order,if
    the
    user confirms the delete. I pass the order id as a parameter.
    - john
    Here is the JavaScript -
    function confirmDelete() {
    if(confirm('Continue with order delete?'))
    return true;
    else
    return false;
    Here is a sample anchor tag -
    <netui:anchor action="requestToDeleteOrder" onClick="return
    confirmDelete(); return false;">
    Delete
    <netui:parameter name="orderId" value="{container.item.orderId}"/>
    </netui:anchor>
    "John H" <[email protected]> wrote in message
    news:402138f5$[email protected]..
    Thanks for the replies. I figured it was going to require buildingmy own
    url
    to call the action. I had hoped there was an easier way to do it.Rich,
    the
    reason I want to do this is because I want to call the JavaScript
    function
    confirm()
    when a user clicks on a link (in a repeater/grid) to drop a record,I only
    want
    to call the drop action if the user confirms the drop. Maybe thereis a
    better
    way to do what I am trying to do??? I really appreciate any help
    you
    guys
    can
    give me on this, I am pretty new to this sort of stuff.
    Thanks,
    John
    "Rich Kucera" <[email protected]> wrote:
    "John H" <[email protected]> wrote:
    What is the best way to call a pageflow action from JavaScript?
    Thanks,
    JohnTry figuring out the URL to the pageflow action, create a hidden
    form
    in the
    page, then use JS to submit the form. Why would you want to though,
    isn't
    the server going to want to send you to the next page?

  • "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 :)

  • How do I make Firefox 4 the default browser? Whenever I open a link from email, it opens in the older version of Firefox.

    I followed the installation instructions for Firefox 4, after I had the earlier version. Whenever I open a link from email or other programs, it opens in the earlier version of Firefox, not Firefox 4.

    You'll need to get the Actions dialog to appear and check the use as default action at the bottom of the list. One of the common ways to get this to appear is to follow a link from an email program or a soical network app like Facebook or Twitter.

  • Specific requirements on extraction triggering action

    Hello,
    I have a little bit specific requirements on how to replicate data betweeen two Data Warehouses.
    So I have a DW. This DW recieves data from a lot of source systems.
    Also it have some table, the structure of that table like the following (lets name the table "load_proc_table"):
    source_system, load_start_date, load_finish_date.
    What I need is to perfrorm extracting data from the DW basing on previously obtained value of the load_finish_date:
    1. Init load. Extract data, save current value of the load_finish_date (let it be saved_load_finish_date).
    2. Extract data changes using triggering action: when exists (load_proc_table.load_start_date > saved_load_finish_date AND load_proc_table.load_finish_date IS NOT NULL)
    3. Extract only data changed in time period between load_proc_table.load_start_date and load_proc_table.load_finish_date (all rows in the tables are marked with date/time showing when row)
    So the question: is it possible to save load_finish_date and use it for triggering extraction process?
    And is it possible at all to meet requirements described below using Golden Gate?
    Why I need it: I need to run ETL process only after all the actual data will be trasfered to the destination database (between saved_load_finish_date and last load_finish_date values).
    Thanks.
    Sergey.

    I think you mean the followings:
    You plan to use ETL loading tool to do the initial loading. However, you want to replicate the new data added to DW during the loading time.
    If this is the case, you can start the Oracle GoldenGate extraction when you start the initial load to record the changes. Then start the replicat after the initial loading is done.
    If not, please clarify. May I ask what DB is used for your source DW?

  • Submitting the forms back to GP engine after downloading from email

    Hi,
    I have a process with 2 actions.
    Action 1 creates an off-line interactive form from a template and sends to the processor by email. 
    Action 2 is a visual approval.
    After Action 1, the recipient will download the form from email, add some more data to it and submits (HTTP Submit).
    I want the form to be submitted back to the same process so that the processor of action 2 can see all the data available in pdf.
    I selected "Start Process Upon Completion" and tried to invoke the same process but got a "General Error    http://nwportal:52000/gpcore/iformprocessor/adapter.adobe" upon submission. I also tried by not choosing the above option of starting a process, but still got the same error.
    Is it possible to submit back to a process which is already in progress? 
    Or do I have to split the process into 2 processes and invoke the second process?
    If yes, what is the advantage of the option "Enable Use in Guided Procedures" --> "Create offline interactive form and send by e-mail" in the configuration tab of interactive form callable object.
    I found the following thread which talks about similar issue but I couldnt figure out an answer to my issue.
    Submit Form in GP: works but ErrorMessage: Cannot handle content type ...
    Appreciate your help.
    Thanks
    Ram

    Hi Ram,
    Answer to your queries :
    "Is it possible to submit back to a process which is already in progress? "
    Yes it is possible . The form once submitted back can resume the process that was waiting for it.
    "Or do I have to split the process into 2 processes and invoke the second process?
    If yes, what is the advantage of the option "Enable Use in Guided Procedures" --> "Create offline interactive form and send by e-mail" in the configuration tab of interactive form callable object.
    No you do not have to split the process into 2. "Enable Use in Guided Procedures" -- "Create offline interactive form and send by e-mail" are the correct settings for what you are trying to do.
    Regarding the error message you are facing I am not sure why this is happening, make sure your setting in the caf/eu/gp/model is correct. and check out the documents at
    SAP Composite Application Framework - CAF Tutorial Center [original link is broken] in the interactive forms section.
    Sijesh

  • How do i automatically import ics calendar invitations from email into apple calendar?

    how do i automatically import ics calendar invitations (sent from Windows computer - Outlook) from email into apple calendar?

    From Calendar Help. The only two ways listed are using the Import command or a drag and drop.
    Import events into a calendar
    If you want, create a new calendar for the events.Add or delete a calendar
    Choose File > Import > Import.
    Locate and select the calendar file that contains the events, and then click Import.
    Choose the calendar you created or another calendar to add the events to.
    You can also drag a .ics file to Calendar. The events in the file are added to the calendar that’s highlighted in the Calendar list.
    You might be able to set up and Automator action to do it for you.

  • Prime 4.1 Automated Action To Email

      i have setup a syslog automated action
    Automated Action Summary
    Name:
    config
    Devices:
    172.24.1.2
    State:
    Enabled
    Parameters:
    TO=[email protected], SUB=Config Exit, TEXT=A config exit event
    Action Type:
    Email
    Messages:
    SYS-*-5-CONFIG_I:*
    i dont get emails when the event occurs - i connected to one of the switches entered config mode and then exited , term mon showed   SYS-*-5-CONFIG_I ,but no email
    email settings are OK (i get other emails from the system)
    what am i missing?

    It'll be helpful if you share what you see, based on which we can suggest what may be missing.
    For easy reference just check the LMS guide once to see you followed the right steps :
    http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_lan_management_solution/4.1/user/guide/admin/useNotif.html#wp1074029
    -Thanks
    Vinod
    **Rating Encourages contributors, and its really free. **

  • Copy actions from CS4 to CS5

    Can't find out how to copy my own default actions from CS4 to CS5. I have found something called "imported" actions in CS4 and copied those - which worked - but I have other default actions that I cannot find out to copy from CS4 to CS5.

    [email protected] wrote:
    Hi there!  Mac User ...
    How do I move/copy my old actions from the CS4 actions folder to the CS5 one?
    Where is the location of those folders on my system?
    Many thanks!
    If you have them in the standard location for CSX they will be in:
    ~/Library/Application Support/Adobe/Adobe Photoshop CSX/Presets/Actions/
    Where 'X' is 4 or 5.

  • Actions configuration - Email to the Partner

    Hi Friends,
    Whenever service ticket status is changed and escalated to the different group. One email needs to be triggered to that group saying that the service ticket is escalated to them.
    So i configured actions in transactions like created one action definitions,
    Processing time - Processing when saving document and gave partner function(Partner Dependent).
    Action deteremination and action merging
    Determination Technology - Determination Using Conditions that Can Be Transported
    Rule Type - Workflow Conditions
    Action Merging - Max. 1 Unprocessed Action for Each Action Definition
    Email is triggered for the conditions. Now my problem is, Email is triggering for each save. In crm 2007 we have save button for service ticket transaction page and Save and End(End) button in the top which is also acts as save button. So if user selects save button in the transaction page and end button in the top of the IC web it is triggereing two emails. How to avoid this?
    Is there any setting in the configuration?
    Thanks
    Muthappan
    Edited by: Muthappan Alagappan on Jan 18, 2010 3:48 PM

    Hi PePe,
    Thanks for the Quick Turnaround.
    It solves my half of the problem. Its not sending emails for each save. Now its sending only one time.
    But i have an issue here, Some statuses will be there multiple times for one ticket.
    Example:
    Service ticket created and set it as In Process and escalated to particular group. ANd then that group rejects(Rejected) and sent to the owner. And then owner will add some more info to the ticket and set to In process(Status again) and will escalate to the group.
    So now In Process status is happening two times in this example. I need two emails to be triggered for this case. This is not working if i set Max: 1 , select radio button :Successful actions
    Any help?
    Thanks
    Muthappan

  • Why I am not able to approve/reject my workflow notification from email?

    For R12 AP Invoice Approval Workflow, I have done Approver group set ups in AME. In HR People form, set my email id for that person. In FND USER from, used that person as the employee to have the email id populated for the user and saved the record.
    When I am creating an invoice and initiating workflow, I am getting a notification in my mailbox but cannot approve or reject from the mailbox. I may hit the Approve link but it is not doing anything. In order to approve/reject the notification, I have to log in as that person in Oracle Apps and do it from there.
    Is there anything I am missing? I have a requirement that the approver only approve / reject from their mailbox and they do not log in to Oracle Apps to see their notifications. What to do to make them enable approving from mailbox only?
    I am having a steep deadline and will very much appreciate your responses.
    Thanks.
    Edited by: 951713 on Aug 8, 2012 3:47 PM

    When you try to approve/reject or do any operation on the workflow using email the issue is the you do not have the responsibility/user values set.
    You need to login to Oracle Apps and select the correct resp in order to take action on workflow.
    Please check if you are table to take action from oracle apps that explains it. there are a couple of metalink notes too.
    You may apply appropriate patch and then this will work.
    If it is an SSHR WF you need to be minimum on ATG ROLLUP 7

Maybe you are looking for

  • HT201413 itunes wont install, runtime error R6034 also 'apple mobile device' wont start! help!

    itunes wont install, runtime error R6034 also 'apple mobile device' wont start! help!

  • The Direct Approval/Reject icons in Approval preview are disabled.

    Hi All, We are in SRM 4.0 Classic scenario and the SC once created goes for the approval workflow as required.The approver can approve the SC in the main approval work list by clicking the approve icon in the 'Action' section or by going to the detai

  • When i open report in workspace i got error

    hi when i run the report in workspace i got the below error xml version =1.0 encoding utf 8? BPM response actiion error please send solution urgent Thanks

  • Envelope Printing problems

    I have Windows Vista, Word 2002 and HP Officejet J5780 all-in-one, all since October 2007. My printer has SUDDENLY stopped allowing me to print envelopes size 3 5/8" x 6 1/2". The text prints off the page, [as if I had asked for letter size, which I

  • Read and update a ini file

    Hi all, I want to read an INI file which the structure as follows. [Head] Name=Bool Key=Next Text=Java [More] Here=NewThis is the way I read it.             Properties pro = new Properties();             pro.load(new FileInputStream("temp.ini"));