CRM Workflow notification upon close date approching

Hello,
I want to setup a workflow that looks at the close date in an Opportunity record and when there are 2 days until the Close date specificed in the Opportunity record the workflow will send an email out to the owner of the opportunity…and then repeat when there is 1 day left...
The email notification proves to work, but the notification is being sent upon the trigger event (which I have set to when a new record is created)...I have setup a Wait Action before the email notifiction of 'Until When' - Date Time Expression [<CloseDate>] - ("2D") .... (note: I tried [<CloseDate>] - period("2D") as well, but that didn't prove to be successful either.
Any direction would be very helpful.
Thank you.

syntax: Today() + Duration ("P1D")
I see a new requirement in your followup post. You are trying to change the date and you want one email per wait period. I have suggested solutions in other posts, so you have to modify the solution to your needs:
Re: Time based workflow:wait action not working
Send notification on pre-defined date

Similar Messages

  • How to send workflow notification from a custom form in R11i

    Hi Gurus,
    We have a custom module to evaluate vendors, which has 2 custom forms viz Evaluate form and Approve form, user will evaluate the vendor and submits the same for approval, and when submitted for approval(Submit button) a mail is being sent to the employees supervisor using UTL_MAIL.SEND informing him to approve.
    And now client wants to send workflow notification upon submitting for approval. As Iam very much new to workflow I need your valuable guidance and suggestions.
    Thanks
    Sandeep

    Hi Sandeep
    Take some time and check the Oracle Workflow tutorial available at Anil Passi website. The URL is as follows
    http://oracle.anilpassi.com/oracle-workflows-training.html
    Hope this will help.
    Regards
    Ali

  • No data found for region error on Workflow notification page

    Hi !
    For workflow, I have created a Non Form Function in Oracle Applications and linked the region to display in the notification. This region's type is StackLayout.
    I created an attribute of type Document and assigned it the value in the form
    JSP:/OA_HTML/OA.jsp?OAFunc=WF_FUNC
    then I added this attribute in the notification message attribute with the Source as Send and Frame Traget as Full Window. Now when the workflow starts, the region does not populate and error shows that there is no data found for this region.
    Am I doing something wrong? Any ideas?
    Thanks.

    Hi,
    We have a unique problem.....for timecard approval notification the HXC_TIMECARD form function is calling embedded Timecard region in the workflow notification.....in the HTML call the AprvNtfRN is called as shown below.
    OA.jsp?page=/oracle/apps/hxc/selfservice/approval/webui/AprvNtfRN&akRegionApplicationId=809
    Now the issue is that the email displays uneven format i..e timecard details like project and task name are vertical instead of horizontal.
    Is there a way to code HTML in AprvNtfRN so that the format is obtained as desired?

  • Workflow based on created date field in opportunity?

    Hi All,
    Can we write a workflow based on created date field in opportunity that if a opportunity record has not been modified after say 90 days,what will be the workflow syntax.
    I just want an email notification to owner and owner's manager.
    Thanks in advance,
    Manish.

    I think you can use the WAIT workflow using Duration('P90D') then Send Email, triggering it upon save and upon modification. Make sure that the Re-evaluate Rule Conditions After Wait option is checked so that the previous WAIT would be reset upon modification.
    Edited by: marcocollado on Aug 31, 2012 5:57 AM

  • Workflow notification email

    I need to reformat the workflow notification email so it will work with our current CRM.
    Specifically I need to have the customer data listed on the same line as the data field.
    For example:
    Customer First name   Test
    Customer Last name    Test
    Customer email   [email protected]
    And so on. 
    Is there a way to reformat the email instead of using the Tag_formsummary?
    Thanks!

    Ya it can be achieved by creating Adhoc Roles and Users.
    Adhoc roles can be created through PL/SQL from database or they can be created from Applications using User Management Responsibility. If you use PL/SQL to create roles make sure you give all user names and role names in UPPER case.
    Please find the link below for Sample
    http://erpschools.com/articles/workflow-tutorial
    Regards,
    Raj

  • How to Implement the Search page for Workflow Notifications?

    Hi All,
    I want to implement the new Search page for Workflow Notifications. Search page containing Company, Paygroup, Source, Initiator, Supplier Name, From date & To date fields. These fields(Poplist & Calendar) are getting the values from different tables and these fields are not in WF_NOTIFICATIONS table only Initiator & dates are there. After selecting the values in all fields or one field based upon these values I want to display the all Workflow Notifications ( Those are satisfy the search criteria only not all ) in Advance Worklist Table RN in the Notifications page. Is it possible to create the Search page based upon the above scenario if Yes Let me know how to implement this search page for Workflow. Page was designed but how to get the sortlisted Notifications and how to pass these values to next page?
    Thanks in advance.
    Edited by: user635152 on Nov 13, 2008 10:53 AM

    Hi Guru,
    I crete the Search page having 5 poplists and select the values from dropdown list and click GO button it serch the records and displays that records in ResultsTable in same page.
    My case, Search page is running fine if I select the values and click GO button page is refreshed without errors but I am unable to displays the records in ResultsTable.
    What I am missing?
    My Select Stmt:
    SELECT * FROM      
    (select wn.nid notification_id
    ,ou.name company
              ,I.PAY_GROUP_LOOKUP_CODE paygroup
              ,'AP' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,I.GL_DATE FROM_TO_DATE
    from ap_invoices_all i
    , po_vendors pv
         , hr_operating_units ou
         , per_all_people_f pf     
         , FND_USER FU
    , (SELECT trim(substr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),
    1,instr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),' for'))) inv_no
    ,notification_id nid
    FROM WF_NOTIFICATIONS WN
    WHERE WN.MESSAGE_TYPE = 'APINV'
    AND WN.STATUS NOT IN ('CANCELED','CLOSED')) wn
    where i.vendor_id = pv.vendor_id
    and i.invoice_num = wn.inv_no
    and i.WFAPPROVAL_STATUS = 'REQUIRED'
    and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
    and i.org_id = OU.organization_id
    AND OU.name like nvl(:company_name,name)
    and i.pay_group_lookup_code = nvl(:pay_group,i.pay_group_lookup_code)
    and exists (select ad.invoice_id
    from ap_invoice_distributions_all ad
    where ad.invoice_id = i.invoice_id
    and ad.accounting_date between nvl(:from_date,ad.accounting_date)
                                       and nvl(:to_date,ad.accounting_date))
    and 'AP' = nvl(:source,'AP')
         and i.created_by = fu.user_id
         AND fu.EMPLOYEE_ID = pf.person_id
         AND pf.full_name like nvl(:initiator, pf.full_name)
    UNION ALL
              select po_num.nid notification_id
              ,ou.name company
              ,ps.PAY_GROUP_LOOKUP_CODE paygroup
              ,'PO' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,P.CREATION_DATE FROM_TO_DATE
         from po_headers_all p
         ,po_vendors pv
              ,po_vendor_sites_all ps
              ,hr_operating_units ou
              ,per_all_people_f pf
         ,(select trim(substr(wn.subject,24,instr(wn.subject,' for')-24)) po_no, notification_id nid
              FROM WF_NOTIFICATIONS WN
         WHERE WN.MESSAGE_TYPE = 'POAPPRV'
         AND WN.STATUS NOT IN ('CANCELED','CLOSED')
         and wn.subject like 'Standard Purchase Order%') po_num
         where p.SEGMENT1 = po_num.po_no
         and p.vendor_id = pv.vendor_id
         and p.org_id in(select organization_id
         from hr_operating_units
         where name like nvl(:company_name,name))
         and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
         and p.AUTHORIZATION_STATUS = 'IN PROCESS'
         and p.CANCEL_FLAG = 'N'
         and 'PO' = nvl(:source,'PO')
         and p.agent_id = pf.person_id
         and pf.full_name like nvl(:initiator, pf.full_name)
         and pv.vendor_id = ps.vendor_id
         and ps.org_id = ou.organization_id
         and ou.name like nvl(:company_name,name)
    and ps.PAY_GROUP_LOOKUP_CODE = nvl(:pay_group,ps.PAY_GROUP_LOOKUP_CODE)
         and trunc(p.creation_date) between nvl(:from_date,trunc(p.creation_date)) and nvl(:to_date,trunc(p.creation_date))
    In CO PFR Code:
    if (pageContext.getParameter("Go") != null)
    OAQueryUtils.checkSelectiveSearchCriteria(pageContext, webBean);
         String COMPANY = pageContext.getParameter("COMPANY");
    String PAYGROUP = pageContext.getParameter("PAYGROUP");
    String SOURCE = pageContext.getParameter("SOURCE");
    String INITIATOR = pageContext.getParameter("INITIATOR");
    String SUPPLIER_NAME = pageContext.getParameter("SUPPLIER_NAME");
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    Serializable[] parameters = { COMPANY, PAYGROUP, SOURCE, INITIATOR, SUPPLIER_NAME, executeQuery};
    Class[] paramTypes = { String.class, String.class, String.class, String.class, String.class, Boolean.class };
    am.invokeMethod("initSearch", parameters, paramTypes);
    OAAdvancedTableBean table = (OAAdvancedTableBean)webBean.findChildRecursive("ResultsTable");
    table.queryData(pageContext, false);
    AM invoke Method():
    public void initSearch(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    WorklistFindVOImpl vo = getWorklistFindVO1();
    if (vo == null)
    MessageToken[] tokens = { new MessageToken("OBJECT_NAME", "WorklistFindVO1") };
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", tokens);
    vo.initQuery(company, paygroup, source, initiator, supplier_name, executeQuery);
    VO Code:
    public void initQuery(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    StringBuffer whereClause = new StringBuffer(500);
    Vector parameters = new Vector(5);
    int clauseCount = 0;
    int bindCount = 0;
    setWhereClauseParams(null); // Always reset
    if ((company != null))
    String companyname = null;
    try
    companyname = new String(company);
    catch(Exception e) {}
    whereClause.append("COMPANY= :COMPANY");
    whereClause.append(++bindCount);
    parameters.addElement(company);
    clauseCount++;
    if ((paygroup != null) && (!("".equals(paygroup))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("PAYGROUP = :PAYGROUP");
    whereClause.append(++bindCount);
    parameters.addElement(paygroup);
    clauseCount++;
    if ((source != null) && (!("".equals(source))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SOURCE = :SOURCE");
    whereClause.append(++bindCount);
    parameters.addElement(source);
    clauseCount++;
    if ((initiator != null) && (!("".equals(initiator))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("INITIATOR = :INITIATOR");
    whereClause.append(++bindCount);
    parameters.addElement(initiator);
    clauseCount++;
    if ((supplier_name != null) && (!("".equals(supplier_name))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SUPPLIER_NAME = :SUPPLIER_NAME");
    whereClause.append(++bindCount);
    parameters.addElement(supplier_name);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    parameters.copyInto(params);
    setWhereClauseParams(params);
    if ((executeQuery != null) && (executeQuery.booleanValue()))
    executeQuery();
    } // end initQuery()
    Please let me know what I did mistake in my code?
    I am unable to find it what I missing and there is no errors but no records displayed in Results Table.
    Please it's urgent.
    Thanks
    Nag.
    Edited by: user635152 on Nov 19, 2008 4:43 PM

  • How to customize SharePoint Foundation 2013 workflow notification emails

    We have a SharePoint Foundation 2013 workflow that sends emails when certain criteria are met. We have tried to customize the emails using SharePoint Designer, but the emails that are received are different.
    Ho do we configure SharePoint to send the emails formatted as we specified in the workflow?
    The emails we receive are all formatted like this:
    Subject:
    [Company Name Workflow] - [Item] has been assigned to you
    Content:
    Task assigned by [User Name] on [Date].
    To complete this task:
    1.    Review [Item].
    2.    Perform the specific activities required for this task.
    3.    Use the Open this task button to mark the task as completed. (If you cannot update this task, you might not have access to it. Click here to request access.)

    Hi,
    According to your post, my understanding is that you want to customize SharePoint Foundation 2013 workflow notification emails.
    We’ll need to do a few things to replace SharePoint’s default notification with our own. The first thing we need to do is turn off SharePoint’s default notification. On the Workflow Tasks list, go the Advanced Settings and select
    No for Send e-mail when ownership is assigned. Then we need to create workflow to send email.
    There is an article for your reference, although it is about the SharePoint 2007, it still works for SharePoint 2013.
    Create a Detailed Custom Task Notification with a SharePoint Designer Workflow
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Include Secure Zone name in Order Workflow Notification

    Hi All,
    Hoping that someone can help me with a solution for the following:
    We have a site that has a number of secure zones, each secure zone has an individual product catalogue assigned to it.
    The problem we have is that when someone does an order from within the secure zone, the Workflow notification does not contain any information about which secure zone the order came from.
    So I'm wondering if it is possible to write some code that will query what secure zone you are logged in to and have this as a hidden field on the Order page, to be included in the Workflow Notification.
    Does anyone know if this is possible?
    Cheers,
    Emily

    You can parse the user's securezone subscriptions out of {module_subscriptions,true,true,,true}, or you could look for an attribute unique to each catalogue, like <div data-catalogue="{{tag_somethingUnique">...catalogue template code...</div> plus jQuery('[data-catalogue]').data('catalogue');

  • Problem :Workflow Notification Mailer

    i couldn't start the workflow Mailer Services.
    Querying
    SELECT component_name, component_status  
    FROM fnd_svc_components
    WHERE component_type = 'WF_MAILER';
    COMPONENT_NAME
    COMPONENT_STATUS
    Workflow Notification Mailer
    STOPPED_ERROR
    Finally after 10 automatic retry  attempt ,the Status changes to Deactivated by system
    The log file data
    [Aug 2, 2013 7:14:45 PM GMT+05:30]:1375451085517:Thread[BES Dispatch Thread,5,main]:0:-1:ibmapps:10.36.0.13:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-4383432-10040 : oracle.apps.fnd.cp.gsc.SvcComponent.start(int, SvcComponentContainerInterface)]:Validation failed for the following parameters -> {INBOUND_SERVER=Unable to make a network connection., TEST_ADDRESS=The test address can not be the same as the Reply-To address}.  Parameters were -> {INBOUND_MAX_IGNORE_SIZE=1000, INBOUND_MAX_LOOKUP_CACHE_SIZE=100, ATTACH_IMAGES=Y, ALLOW_FORWARDED_RESPONSE=Y, INBOUND_UNSOLICITED_THRESHOLD=2, NODENAME=WFMAIL, AUTOCLOSE_FYI=N, INBOUND_PROTOCOL=IMAP, PROCESSOR_READ_TIMEOUT_CLOSE=Y, ATTACHED_URLS=WFMAIL:ATTACHED_URLS, [email protected], EXPUNGE_ON_CLOSE=Y, PROCESSOR_OUT_THREAD_COUNT=1, ATTACH_STYLESHEET=Y, OUTBOUND_CONNECTION_TIMEOUT=120, INBOUND_MAX_RET_EMAIL_SIZE=100, MAX_INVALID_ADDR_LIST_SIZE=100, PROCESSOR_MAX_LOOP_SLEEP=60, SEND_ACCESS_KEY=N, PROCESSOR_IN_THREAD_COUNT=1, FRAMEWORK_APP=1, CLOSED=WFMAIL:CLOSED, INBOUND_FETCH_SIZE=100, SUMMARY=WFMAIL:SUMMARY, ENABLE_STYLESHEET=N, PROCESSOR_ERROR_LOOP_SLEEP=60, OPEN_MAIL_FYI=WFMAIL:OPEN_MAIL_FYI, FRAMEWORK_RESP=20420, ALTERNATE_EMAIL_PARSER=oracle.apps.fnd.wf.mailer.DirectEmailParser, INBOUND_PASSWORD=, RESET_NLS=N, HTTP_USER_AGENT=Mozilla/4.76, PROCESS=PROCESS, OPEN_MAIL_DIRECT=WFMAIL:OPEN_MAIL_DIRECT, PROCESSOR_LOOP_SLEEP=5, MESSAGE_FORMATTER=oracle.apps.fnd.wf.mailer.NotificationFormatter, [email protected], FRAMEWORK_USER=0, CANCELED=WFMAIL:CANCELED, OUTBOUND_PROTOCOL=SMTP, DISCARD=DISCARD, ACCOUNT=utta.muk1989, FROM=Workflow Mailer, PROCESSOR_DEFER_EVTDATA_READ=Y, WARNING=WFMAIL:WARNING, PROCESSOR_MAX_ERROR_COUNT=10, INBOUND_CONNECTION_TIMEOUT=120, HTMLAGENT=http://ibmapps.appsibm:8010/pls/DVP, INBOX=INBOX, OPEN_INVALID_MORE_INFO=WFMAIL:OPEN_INVALID_MORE_INFO, INBOUND_SERVER=imap.gmail.com, OPEN_MORE_INFO=WFMAIL:OPEN_MORE_INFO, INLINE_ATTACHMENT=N, OPEN_INVALID=WFMAIL:OPEN_INVALID, EMAIL_PARSER=oracle.apps.fnd.wf.mailer.TemplatedEmailParser, DIRECT_RESPONSE=N, OPEN_MAIL=WFMAIL:OPEN_MAIL, FRAMEWORK_URL_TIMEOUT=30, COMPONENT_LOG_LEVEL=4, SUMHTML=WFMAIL:SUMHTML, PROCESSOR_READ_TIMEOUT=10, DEBUG_MAIL_SESSION=N, OUTBOUND_SERVER=ibmapps.appsibm}
    How to configure of INBOUND Server

    As you have given the INBOUND_SERVER value as 'imap.gmail.com' you should specify the GMail user name and password for Inbound account say(eg:abc) and password field.
    The replyToAddress and TestAddress should not be same. You need to provide the GMail email address here foe eg: [email protected]
    The server 'imap.gmail.com' is SSL enabled you need to instal the corresponding certificate in the instance concurrent and web tier nodes.

  • Direct link to file in workflow notification email

    Hi everyone,
    I know that I can set up a workflow for each of my forms where an email is automatically sent to specific people. If I have a file upload field on my form, is it possible for there to be a link to the file that was inserted in the CRM via the form, in the workflow notification so that whoever receives the email can just click the link and the file will download?
    Thanks in advance for any help.

    Only at a certain size, any higher your directed to view the case in the admin which has the file.
    As a not I say often to people about workflows etc - These emails are as their named - Notifications. They are not intended to be the means you run an online business and just emails is something for a BC site not to rely on. They have limited information and scope and everything and more is within the admin and the depths of the CRM in a browser that can run dynamic and rich content information.

  • Workflow notification are not sending to employee

    gusy,
    on 11.5.10
    We have created New type in Special information which access by SSHR,In this page in sshr employee enter their information and send to manager for approval,while submiting system shoud be generated two notification one for requester and other for supervisor,but the requestor notification are not sending while supervisor is woking fine,so how can i rectify what the exact prolem with requestor notification,
    could you please adive..
    Thanks

    The workflow notification back to the requestor is just an FYI notification. When the Workflow Mailer emails a copy of the FYI notification it automatically closes the workflow notification.
    Could it be that this is happening? Try this:
    1) Login as the Requestor and access their Worklist
    2) Change the view to see 'Closed' Notifications
    3) Do you see the notification in the list of closed notifications?
    If so, try temporarily disabling the Workflow Mailer so that no email copies are sent and then repeat the SIT request. Does the requestor now see that notification in their 'Open' notifications?

  • Workflow Notification Link

    Hi All ,
    I have a requirement and it is very urgent ......
    Requirement goes like this,,,,
    from Workflow side i have a notification link ,,,,,,,
    In oracle apps R12 home page ,,, i have that Workflow Notification link ,,,,
    when i click this notification link it should navigate to Standard PO page and display all the data in the fields..........
    From OAF side i have to pass two parameters and based on parameters ,,, it should display the details on the standard page ...............
    Please do help me out ,,,,,, its very urgent ,,,,,,,,,,,,,,,,,,,
    Thanks,
    Kalyan.

    Hi Sridhar,,,,
    In PR
    //NotificationID is the parameter passed from Your workflow
    // Logic to check if the page is navigated from notification and show the page in view mode,
    // if the page is navgiated from notification
    String notificationID = (String)pageContext.getParameter("NotificationID");
    if(notificationID!=null)
    OAPageButtonBarBean butbar = (OAPageButtonBarBean)webBean.findChildRecursive("pageBtnBar");
    OALinkBean wflinkBean = (OALinkBean)butbar.findChildRecursive("backtoWorkFlow");
    wflinkBean.setRendered(Boolean.TRUE);
    status="INITIATED" ;
    pageContext.putSessionValue("NotifId", notificationID);
    As per the code ,,,,
    My parameters are : RunId & RunName
    In PR :
    super.processRequest(pageContext,webbean);
    OAApplicationModule oaapplicationmodule = pageContext.getRootApplicationModule();
    OAViewObject vo = (OAViewObject)oaapplicationmodule.findViewObject("DisplaydetailsVO");
    String runid = (String)vo.getCurrentRow().getAttribute("Runid").toString();
    String runname = (String)vo.getCurrentRow().getAttribute("RunName").toString();
    if(vo!=null)
    OAPageButtonBarBean butbar = (OAPageButtonBarBean)webBean.findChildRecursive("pageBtnBar");
    OALinkBean wflinkBean = (OALinkBean)butbar.findChildRecursive("backtoWorkFlow");
    vo.executeQuery();
    vo.setWhereClauseParams(runid);
    vo.setWhereClauseParams(runname);
    Does this code works as per my requirement ,,,,,,,,,,,,
    My Requirement is ,,, when i click on link it should go to standard page and display the page details..........

  • Human task notification after due date/expiration date/...

    I would like to set a due date (or expiration date) to Human task, and set some notification before this time. Ok, it seemed very easy:
    - i set due date to 5 minutes in human task -> Deadlines
    - i set notifications in human task -> notification and in tab Advanced i set remind once 2 minutes before due date
    Nothing happens. Exactly same (nothing) happens when i do the same with expiration date.
    But what exactly is meaned under word "Reminder"?
    It's mail? (then where I have to set email adress? I tried to set a "to" field in human task -> notification -> tab Advanced -> notif. header attributes => nothing happened)
    It's worklist inbox message?
    Or what ist "reminder" and how it should remind me?
    Edited by: user1175491 on Dec 28, 2010 7:21 PM

    Hi,
    I don’t know if you’ve managed to resolve this issue yet and you mention you have emails working from BPEL, but I'm not sure if you've got any notifications working for the Human Task, if not then I have done some work with the human task notifications and although I’ve not tried to do what you’re doing, this is what I have learned.
    Firstly to receive any notifications you need to configure the Messaging Driver and Workflow Notification Properties…
    In Enterprise Manager expand [farm] -> SOA -> soa-infra
    Right click soa-infra and choose SOA Administration -> Workflow Notification Properties
    Underneath the page title (Workflow Notification Properties) is a note telling you to configure the Messaging Service Driver. Click the "Go to the Messaging Driver page" link.
    In the associated drivers section you will have a single entry for soa_server1 (or what ever it's called for you). In the right hand column there is a button for configuring the driver, click this.
    In the driver specific configuration, scroll down to OutgoingMailServer and enter the hostname or IP address of your mail server, then click Apply at the top of the screen.
    Now go back to the Workflow Notification Properties screen and choose “Email” from the notification Mode and enter some sensible email addresses in the Notification Service section. It’s useful to have real email addresses in here at the moment because any failures will be returned to this address.
    You now need to restart Weblogic for these changes to take affect.
    After the restart you can test the notifications by doing the following
    Back in Enterprise Manager expand [farm] -> SOA -> soa-infra
    Right click soa-infra and choose Service Engines -> Human Workflow
    Click on the Notification Management tab.
    You can click the "Sent Test Notification" button to make sure everything is working ok. This screen also allows you to monitor notifications for failures.
    Now that the notifications have been set up you can configure who gets notified on which events against your human task in JDeveloper.
    The email addresses for the users are retrieved from your identify provider for the relevant user, by default this is the internal LDAP directory. I’m not using this, so I’m not sure exactly how this will work. There are options in the worklist application for individual users, but I’m not using this either.
    Now that this is set up you can configure the human task within JDeveloper. On the notification tab you can decide who gets notified when. By default when a task is assigned to a user, the assignees are notified, you can play about with these settings to see what works best for you. Have a look at http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_workflow.htm#BABBHDGF for more information.
    I’m not sure I’ve solved your problem, but I hope this at least helps.

  • Clean up Workflow Notifications in Clone

    Hi Friends,
    I had just cloned the PROD Instance(11.5.10.2) to TEST and now i want to clear the Workflow Notifications in TEST Instance.
    How to clean it up.Please suggest for both 11i(11.5.10.2) and R12.
    Regards,
    Arun

    Hi,
    Please refer to the following documents.
    Note: 298550.1 - Troubleshooting Workflow Data Growth Issues
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=298550.1
    Note: 453137.1 - Oracle Workflow Best Practices Release 12 and Release 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=453137.1
    Regards,
    Hussein

  • Problem with the Workflow Notification Mailer

    Hi Community,
    Recently we have just installed the E-Business Suite release 12.0.4 from e-delivery.oracle.com for Linux x86-64 using the VISION Demo database, in order to see and test the release for a future upgrade of our Production environment.
    The installation was succesful and we setting up the Workflow Notification Mailer with the data of our SMTP server in order to outbound notifications to that server.
    Now, In order to continue testing that instance, we have just executed the scripts to stop de APPS tier and to start the APPS tier, and it seems that the workflow notification mailer can not establish network connection with the e-mail server (Exchange server) after starting the APPS tier.
    The Linux server has defined in its hosts file the Exchange e-mail server, and from operating system, we can establish a ping connection.
    Any help will be appreciated.
    Luis.

    Hi,
    I had the same issue and I found that Oracle Workflow does not attach files. The solution is to create a table with blob, clob, ordsys, etc data types and reference to the file from a notification and a message.
    I did an interface with java to read the document, and then put the link in the oracle workflow message. The link opened the file.
    So, for any workflow development is recomended to use your own Entity-Relation Model, including the process number and the files attached to that process.
    Regards,
    Santiago Meneses
    [email protected]
    Quito-Ecuador

Maybe you are looking for

  • How to obtain the pricing condition data from sales data?

    Hi all!  I have googled many times and read through many sites to understand how I can obtain the pricing condition data that's specific to a specific sales line.  However, the answer I got usually are as follow: Tables to be used: KONV KONH KONP VBR

  • Dvd drive dead...and MANY more problems

    hi there, I had a bad sector on my hard drive, so i couldn't boot my machine. I had a diskwarrior cd, so i rebuilt the volume. AFter process, the machine restarted, and ejected the cd. I went to put it back in, and pop grrrrr buzz dvd drive crapped o

  • Made a website in iWeb '08, and would like to work on it in iWeb '09 too!?!

    We originally had iWeb '08 on our G5 iMac on which I made my website. Recently we bought a new Intel based iMac which has '09 on it. We are still using both computers in the house on a wireless network. I would like to primarily continue to work on t

  • Void issued check thru auto payment

    hi gurus, can we void a cheque printed thru automatic program F110 without reversing the payment entry and reprint another cheque. my prob is people to cancel cheque reverse the payment also which creates numerous entries of reversal. regards, sandy.

  • How can change the Prompt of a text item in a form?

    Dear Friends... I want to change the label/Prompt of a form ( Miscellaneous Receipt) in Inventory Module. Ie Current lable/Prompt is REFERENCE, i want to change it into BOE. Pls advice me ........ Regards Mary