Can we do deadline monitoring using actions for leads?

Hi Experts,
I have a requirement to trigger mails from the lead based on the lead end date.If the lead end date is 3 months or 2 months or 1 month from now,i have to send  a mail to concerned person saying that,lead will get expired in 3 or 2 or 1 month.
Is there any standard workflow for this?
can we do it using actions?
Thanks,
Adi.

Hi adi,
This can be achived using date profile in action defination-condition follow below steps:
1) If you want to send the mail to concerned person on 10 days before lead end date then
2) Create date rule e.g. Lead end date= Start date+30days then u r new rule should be Start date + 20 days accordingly u have to make changes in code.
3) u can use this new date rule in a action condition (Currnet date=new rule date)
Hope it'll help u, let me know u want more help.
Regards,
Dipesh.

Similar Messages

  • Actions for Lead Tx.

    Hi Forum,
    I am creating an action for lead trans.
    my requirement is to open three different transactions of type activity, meeting and task based on each qualification status being set and saved.
    so my condition on paper will look like: Qualification Level (QL)
    when Q L = cold open Tx: task
    or
    when Q L = warm open Tx: activity
    or
    when Q L = ho open Tx: Meeting
    Please let me know whether this condition be set in this action, I have created the action profile and the process type i have given method call parameters as activity, meeting and task.
    I can also set the condition, I just want to know how do i give the command (say) open Tx: task  in the condition editor.
    Please help me with this.
    Thanx
    Neetika

    Hi Sathish,
    yes your doubt is genuine and in case you know that after qualifying a lead as hot by the sales rep, you can create a follow up opportunity and there are various activities within a opportunity which is called sales assistant and they take you through various phases in opportunity sand estimate the sales pipeline and close the deal.
    Normally a lead is a potential intrest exihibted by the customer in your product and normally qualification is the process that takes place to identify his level of intrest using questionnaires and then you feel he is hot then opportunity is created. So ideally there would be very little chance to create a follow up activity transaction for a lead and in case the customer wants you to call him or meet him, all these are captured in the opportunity phases after qualifying him as potential customer. You can create follow activity from a lead and that depend on your business process.
    Thanks and if helpful please reward points.
    Srini

  • Can I disable the force click action for 'tap to click' in the 2015 version?

    In the 2015 MBP version can I disable the force click action in system preferences, and use to tap to click as with previous trackpads?

    Hey petunia42,
    You should be able to disable Force Click on the new MacBook Pros, as noted in the following article:
    To turn off Force click, deselect the “Force click and haptic feedback” checkbox. This will disable the functionality described in the Trackpad preferences pane.
    Using a Force Touch trackpad - Apple Support
    Cheers,
    - Brenden

  • Monitoring Used (%) space for tablespaces

    Hi everyone,
    I am currently using:
    Redhat Linux ES 5 2.6.18 and also
    Oracle 10g Release 2 for Linux x86 R10.2.0.3
    While monitoring my Tablespaces using OEM Database Control, I notice that two tablespaces were almost full.
    [SYSAUX] - Size: 290MB , Used 283MB (97% full)
    [SYSTEM] - Size: 320MB, Used 313MB (98% full)
    When I try to locate the datafiles of both tablespaces in its directory (/home/dba/oracle/oradata/oracle), it shows the allocated size (290MB for sysaux01.dbf & 320MB for system01.dbf) and not the used space.
    I got three questions to ask over here:
    1st- Why there isn't any warnings or alarms even though the tablespaces exceeds the critical size?
    2nd- How come the datafiles shows the allocated size of the tablespaces and not the Used space?]
    3rd- How can I find & monitor the actual used space of the tablespaces?
    4th- I have enabled the AutoExtend function but I am worry whether is there any other concern?
    I am still very new here.
    Please pardon me for anything that is improper.
    Looking forward for your expertise, guidance & help.
    Thanks for your attention.
    -Regards-
    ++ Kef Lim ++

    Hi,
    Here you have some scripts:
    TABLESPACE USAGE NOTES:
    Tablespace Name - Name of the tablespace
    Bytes Used - Size of the file in bytes
    Bytes Free - Size of free space in bytes
    Largest - Largest free space in bytes
    Percent Used - Percentage of tablespace that is being used - Careful if it is more than 85%
    select     a.TABLESPACE_NAME,
         a.BYTES bytes_used,
         b.BYTES bytes_free,
         b.largest,
         round(((a.BYTES-b.BYTES)/a.BYTES)*100,2) percent_used
    from      
              select      TABLESPACE_NAME,
                   sum(BYTES) BYTES
              from      dba_data_files
              group      by TABLESPACE_NAME
         a,
              select      TABLESPACE_NAME,
                   sum(BYTES) BYTES ,
                   max(BYTES) largest
              from      dba_free_space
              group      by TABLESPACE_NAME
         b
    where      a.TABLESPACE_NAME=b.TABLESPACE_NAME
    order      by ((a.BYTES-b.BYTES)/a.BYTES) desc
    SET SERVEROUTPUT ON
    SET PAGESIZE 1000
    SET LINESIZE 255
    SET FEEDBACK OFF
    PROMPT
    PROMPT Tablespaces nearing 0% free
    PROMPT ***************************
    SELECT a.tablespace_name,
           b.size_kb,
           a.free_kb,
           Trunc((a.free_kb/b.size_kb) * 100) "FREE_%"
    FROM   (SELECT tablespace_name,
                   Trunc(Sum(bytes)/1024) free_kb
            FROM   dba_free_space
            GROUP BY tablespace_name) a,
           (SELECT tablespace_name,
                   Trunc(Sum(bytes)/1024) size_kb
            FROM   dba_data_files
            GROUP BY tablespace_name) b
    WHERE  a.tablespace_name = b.tablespace_name
    AND    Round((a.free_kb/b.size_kb) * 100,2) < 10
    PROMPT
    SET FEEDBACK ON
    SET PAGESIZE 18
    Set Termout  On
    Set Heading  On
    clear breaks
    break on contents -
    skip 1
    compute Sum of alloc used free nbfrag on contents
    column tblsp         format a20 wrap          heading  "Tablespace Name"
    column Alloc         format 999,999           heading  "Alloc|(Mb)"
    column Free          format 999,999           heading  "Free|(Mb)"
    column used          format 999,999           heading  "Used|(Mb)"
    column pused         format 990.9             heading  "%|Used|Space"
    column fragmax       format 99,999.9          heading  "Largest|Free|Ext.(Mb)"
    column nbfrag        format 99999             heading  "Nb|frag"
    column contents      format a10               heading  "Content"
    column pct_ext_coal  format 999                     heading  "% Ext.|Coal."
    column ext_manage    format a7 wrap           heading  "Ext.|M."
    column autoext       format a7 wrap           heading  "Auto|Ext."
    select
           contents
         , nvl (dt.tablespace_name, nvl (fsp.tablespace_name, 'Unknown')) tblsp
         , alloc
         , alloc - nvl (free, 0)       Used
         , nvl (free, 0)               Free
         , ((alloc - nvl (free, 0)) / alloc) * 100  pused
         , nbfrag
         , fragmax
         , dfsc.pct_ext_coal pct_ext_coal
         , dt.ext_manage
         , df.inc                           autoext
      from
           ( select sum (bytes)/1048576     free
                  , max (bytes)/1048576     fragmax
                  , tablespace_name
                  , count(*)                nbfrag
              from  sys.dba_free_space
             group  by tablespace_name
           ) fsp
        ,  ( select sum(bytes)/1048576      alloc
                  , tablespace_name
                  , Decode(((inc * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')     inc
               from sys.dba_data_files sddf
                  , sys.filext$        aut
              where sddf.file_id       =  aut.file#   (+)
              group by tablespace_name
                     , Decode(((inc * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')
              Union
              select sum(bytes)/1048576      alloc
                   , tablespace_name
                   , Decode(((increment_by * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')    inc
                from sys.dba_temp_files sddf
               group by tablespace_name
                      , Decode(((increment_by * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')
           ) df
        ,  ( select contents
                  , tablespace_name
                  , initial_extent/1024     initial_ext
                  , next_extent/1024        next_ext
                  , pct_increase
                  , max_extents
                  , min_extents
                  , Substr(extent_management,1,5)       ext_manage
               from dba_tablespaces
           ) dt
         , ( select percent_extents_coalesced    pct_ext_coal
                  , tablespace_name
               from dba_free_space_coalesced
           ) dfsc
    where
           fsp.tablespace_name  (+)   =   dt.tablespace_name
       and
           df.tablespace_name   (+)   =   dt.tablespace_name
       and
           dfsc.tablespace_name (+)   =   dt.tablespace_name
    order
        by contents
         , pused desc
    ;Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • Upgraded to IOS 8.  iMessage has changed for the worse, losing messages now.  How can I force iMessage to use SMS for some contacts?

    SMS works well and is generally free for most plans here.  I'd like to be able to send messages via SMS from my iPhone for many of these contacts because something changed in IOS 8 iMessage and now iMessages seem to get lost.   Plus as before they can end up in multiple threads.  This latter issue seems to be worse as well with iOS8 but not sure why. 
    For example one friend set up an iPad with her apple ID and subsequently gave it to her son.  She also has an iPhone. I've been exchanging iMessage/SMS's with her which worked fine until the upgrade.  Then she stopped getting my messages on her iPhone.  Turns out that they were landing on the iPad.  While it may be that she doesn't have things sorted correctly on her iPhone that doesn't change the fact that prior to iOS8 she could get my messages.  So I'd like to designate her and a number of other contacts as SMS only.
    Additionally I am seeing more multiple threads from the same contacts.  Not sure why but it seems to have something to do with iOS 8 sucking in additional email addresses, e.g. @icloud.com and subsequently using these in some messages even though the contact is the same person.  I've tried adding the new email address into the contact card I have on file for that person and this simply resulted in two threads with the same contact name.
    Really what is up with this and why does Messages need to keep track of all this info?  The only requirement to direct a message between to iDevices should be valid Apple ID's on both with a means to reference this (Phone Number, Apple ID Email Address) in the respective contact.  In the absence of this the message should be sent as SMS.

    I have the same problem on iOS 7.0.3. With one particular friend I receive iMessages from her just fine and I can send her iMessages from Mac OS X and Messages on iPad, but Messages on my iPhone keep sending her my messages as Text messages. I send iMessages just fine from the same iPhone. SFChuch, what ios version is your recipient using? Did they sign up on iCloud? I wonder if the problem happens with recipients who are not properly registered on iCloud or some special case like that.

  • Can't enable external monitor using Sony DCR-HC90 as pass-through

    I have connected a Sony HC90 camera via firewire and have no problems capturing video (all the transport controls work fine). However, I can't get an external monitor to work through the camera. I have set Video Out to Firewire NTSC and believe I have configured the camera-to -TV connections correctly. When playing back in FCE, I get a canvas playback (should that be showing up?) but nothing on the camera output to the monitor (I also get nothing but a blue screen on the camera LCD).
    Is it possible the the DV interface to the camera is one-way with respect to video?
    Any help would be appreciated.

    Your suggestion solved it. It works if I chain the camcorder through the FW drive (I didn't realize you could chain firewire).
    Thanks for the help.

  • Can a waveform graph be used without for loop

    i would like to know if a waveform graph can be used without a for loop and if so, how? I tried using a while loop only, but the reading becomes too fast.
    can someone advise

    Dear nebb,
    first of all, graph is usually an offline plot of the acquired data but to use it as an online display u need to use build arrays in for/while loop which keeps on adding new points & plots in waveform graph.
    I am including a vi which incorporates a while loop in which by using build array, points keep on increasing & simultaneously they are plotted in the waveform graph.
    Using for or while loop, it has no concern with speed. it depends on the code inside the loop which makes them faster or slower.
    For making slow readings, you can put some delay inside while looping.
    Hope this works. YOur feedbacks are welcome.
    Best Regards,
    Nirmal Sharma
    India
    Attachments:
    waveform_graph_without_for_loop.vi ‏17 KB

  • Nokia 6234 - Can't find easy to use help for using...

    I have the 6234 (Vodafone South Africa).
    Yes, I have read the User Guide, over and over and over, but I find that it really lacks proper "How-To's"
    It tells you what you have to do, but NOT how to do it. It lacks in details, and as far as I am concerned, is not really "User Friendly".
    I have always had Nokia's and found them easy to use. My last one was the 7250i. When sending a text message, in the "To" box, you could select the number by using the alphabet to select the name, ie, pressing 'J" brings up al the names beginning with "J".
    But the 6234 doesn't have this. It has other options that really don't make much sense to me.
    There are many more functions that I can't understand or implement.
    So what I'm after is a much more "Step-By-Step" "Nokia 6234 for Dummies" type help. Help that is aimed at the "not technically minded".
    If anyone can help, even just with their thoughts etc, I would be more than grateful.
    Bear in mind that my location is South Africa - if this makes any difference or not, and am on Vodafone.
    Please help.
    Many thanks.

    Personally I find the 6234 to be very easy to use but I can see why some people may struggle (My mother had difficulty with a 6233).
    The guides in the link below may help you. They are for the 6233 but it all applies to the 6234 as they are the same phone in a different casing.
    http://www.knowyourmobile.com/nokia/nokia6233/nokia6233userguides/
    If you google for help and how-to guides for the 6233 you'll find a lot more help and information.
    .Message Edited by psychomania on 15-Aug-200711:18 PM

  • Can an older ios device use iCloud for email?

    I have an iPhone with ios 5.  I am a MobileMe user.  My wife uses an older ipod touch to check our email.  Will she still be able to check and send email on that older ipod touch?  If so, how can I set it up?  I am reluctant to make the move because of it.  (I don't care about the photo streaming or anything else on the touch, just email.)

    Push:  When an email is received it is instantaneously sent to your devices (no waiting).
    Fetch:  You must retrieve the message yourself either by opening the mail app or on a routine basis (every 5 min, 15 min, hour) which is set in settings.
    As far as I know, push uses more battery power but it is not a significant drain.  However, if you are trying to squeeze every possible second out of your device you should set your email to fetch and set it for manual (meaning you would have to open the Mail app in order to check to see if you have any new email.
    Personally, I'd set everything to push.  That way everything is synchronized across all devices automatically.

  • Deadline Monitor thru actions and trigger workflow

    I have a requirement when service ticket is created.After 5 days somesequence of process should happen through workflow.Now i have configured the start condition in Actions which should trigger workflow.
    Will there be no specific triggering  event for this workflow to trigger.As now the Action is green but no workflow is triggered.

    Hi
    in action in method you should raise event.
    this event next will trigger workflow.
    also check in tcode swetypv is you workflow connected with this event.
    Regards
    Radek

  • Can anyone suggest a course of action for this:

    Process:         rapportd [161]
    Path:            /Library/Rapport/bin/rapportd.app/Contents/MacOS/rapportd
    Identifier:      rapportd
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [136]
    Date/Time:       2013-09-24 09:16:29.571 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Thank you,
    Warren

    Rapport has never previously worked on a Mac. How to uninstall Rapport, by Trusteer:
    http://www.trusteer.com/uninstalling-rapport-mac-os
    However, Trusteer recently posted this in another thread:
    Quote:
    We would like to recommend you to download Rapport's updated version, as we suspect the problems you were experiencing have already been resolved.
    You can download the latest version here:
    http://download.trusteer.com/Gcur4Wtnu/leopard/Rapport.dmg
    Please restart your browser after the installation completes and let us know if the problem persists.
    If the problem persists, we would be very interested in fixing it.
    Please note that we offer 24/7 free technical assistance.
    Should you need additional assistance, feel free to contact us by submitting the following form: http://www.trusteer.com/support/submit-ticket
    We also have helpful information available in our FAQ: http://www.trusteer.com/support/faq
    Unquote

  • How can I record in mono useing L for ch1 R ch for 2 and so on

    and have playback uniformed up 40 tracks.?

    Assuming that you are asking about recording in Multitrack view. In the track you just have to click on the input selection box (right pointing arrow) in the track header and select your required mono input there. Ususally the Inputs from your audio interfaced are number, for instance, (01S), (02S) etc for the stereo inputs and (01M), (02M) etc. for the mono halves of stereo inputs.

  • Activate Deadline Monitoring for Standard Workflow

    Hi Experts,
    I want to Activate Deadline Monitoring for Standard SRM Confirmation Approval Workflow. Is there any way I do this without disturbing the standard workflow? Using Alerts?
    Also pls advice if I can activate the deadline monitoring directly in the standard template without having it copied to a Z/Y wf template?
    Thank you!
    Vj

    Friends,
    I want to set a deadline monitoring for a case when the approver doesnt execute the workitem even after 2days. (so I believe I need to use "Requested Start")?
    Further I understand how this is  done, my question is can we do change it to the standard template or do I need to copy it and then make the changes.
    Also Kindly share some information on using SRM ALERTS for the same functionality to send reminders/alets to approvers on delay of approving task.
    Thank you so much.
    Vj

  • Deadline monitoring & extended email without customizing a new workflow?

    Hi,
    I have a Position setup in Partner Profile - Post Processing:Permitted agent, to be notify if processing errors occur on the inbound idoc interface.
    My questions are:
    1. Besides receiving work item in SAP inbox for the idoc fallout, is there any way to send extended notification Outlook email to the users in that position when processing error occured?
    2. How can i setup a deadline monitoring for the work item triggered only by these specific idoc message variant? In SWWA, it does not narrow down by workitem, permitted agent,partner profile etc.
    3. If #2 can be fulfill, is it possible for me to trigger a new work item to another user/position? An escalation to next level after due date.
    I know this can be done through customizing a workflow, but in my situation, i need to search for a solution in a standard existing SAP way without creating any new workflow, program or object.
    Any suggestions?
    Thanks.
    Regards
    Eunice
    Edited by: Huwi Yin Puah on Oct 1, 2009 1:08 PM
    Edited by: Huwi Yin Puah on Oct 1, 2009 1:10 PM

    Huwi,
    1# You can send the external notification using Send mail step in the standard workflow it self. I suppose, You can add new steps in Standard Workflow also. Use Send mail step and chose recipient type as "Email Address'. Pass the email Address and it will sent out to MS outlook inbox if all the SCOt Configurations are done.
    2# You can activate the deadline monitoring on any activity by
    double click on the activity
    goto tab Latest End
    Select the relevent options
    3# For excalation you can set the deadline out come as a "Modeled" outcome. It would provide you an extra wing in your approval task and in that extra wing you can create your own task putting agent as manager's manager.
    Hope it helps!
    Cheers,
    Vikash

  • Deadline monitoring/Escalation - Purchase Requisition Workflow WS20000077

    Dear Friends,
    I have read some stuff on SDN but still couldnt figure out the soultion.
    Its a common problem. We have set a release strategy in Purchase Requisition and are using std workflow WS20000077.
    Now the requirement is that if an approver doesnt approve in 2 days time then the PR will automatically go to the next approver for release.
    I have set the deadline monitoring using the workflow wizard for model deadline monitoring. With this, The work item gets deleted from the approvers inbox. Next in the obsolete path I have set a process control which specifies the worklow step as the step in which deadline monitoring was specified.
    When I check in SWI1, the work item is set as obsolete but it doesnt go to the next approver for approval.
    Your replies will be highly apprecialted.
    Thanks & Regards,
    Fawaz

    Hi
    For your Requirment :
    "the requirement is that if an approver doesnt approve in 2 days time then the PR will automatically go to the next approver for release."
    Please follow the below steps.in copy of  WS20000077.
    1.For taskTS20000159:Overall release of requisition , go to
    Latest END tab:  put ACtion as :Modeled ,  Refer.date/time:Workitem creation , below time : choses: DAY,  and on left add 2.
    Outcome :Deadline Montoring.
    2.Then come to OUTcomes tab of the same task:  see  there are 3 lines 1.Step executed, 2.Latest end:Deadline Montoring, 3.Processing obsolete:Processing obsolete ,, all are ACTIVE or not , if not, Activate .then  all should be Green.
    4.next in the OUtcome :Deadline Montoring , use a process control step. to Set missed workitem to obsolete,  in Function: chose : set Work item   to Obsolute. and Workflow Step : chose then step no for the above task(TS20000159:Overall release of requisition).
    5.In "Processing obsolete" path, again call the same task TS20000159. in different activity . and see to the agent assignment.
    I think this will slove your problem.
    How it works:
    1st the PR is send in a WI to the perticular agent by the 1st activity . if the agent do not execute for 2 days. then that WI will set to obsolute . and process flow to" Processing obsolete" path, then agian PR is send to the next agent using the same task but activity created in  step 5.
    thanks
    Kakoli.

Maybe you are looking for

  • Dynamically create drop down box with JSP

    Hi, I hope this is not a repeat post, I have search the forum and a posting has not jumped out at me. I am making a jsp that dynamically constructs a custom SQL query. I have a number of text boxes with an id, my jsp page calls a servlet, the servlet

  • Getting something went wrong while trying to open workbook through code?

    hi, i am getting something went wrong while  trying to open workbook through code below is m code: ES.ExcelService client = new ES.ExcelService();                 client.Credentials = System.Net.CredentialCache.DefaultCredentials;                 ES.

  • A mac equivalent  to serif web plus 10 please help !

    I formaly used serif web plus10 to design maintain and and upload my 3 web sites which had many attributes including shop building,html,ect all in one i think iweb is too basic for my need has any one got any suggestions as to a a simalar sofware i c

  • Nokia 6300 - Bluetooth issue in Mazda re: Music Fi...

    Whenever I turn on the car engine, the phone does a search on loop for my non-existent music files. This drains the phone battery and makes it impossible to use the phone. Can anyone help with a solution on how to fix this please? 

  • Control totals

    Dear SAP Experts, Is is possible to send email to bank with control total amounts with (or seperate) our EDI 820 file of payment run. How can we make it possible, will it be manual or automatic procedure. Please advise, Thanks & Regards, Paul