How can i mark a message for follow up

I have a message that says something will happen on a specific date. I would like to mark that message for follow up, hopefully telling TB the specific date that I need to follow up. I know that Outlook has flags. Does TB have something similar?

Do you have the Lightning calendar add-on installed?

Similar Messages

  • How can one mark several contacts for a message simliar to Sony Ericsson K800i of 2006

    How can one mark several contacts for a message simliar to Sony Ericsson K800i of 2006

    hi, i also have just bought a K800i and a PC and given up on macs due to their continual incompatibility and lack of support (unless you can afford the ridiculous constant upgrades). give the page below a go for your problem. if it works, let me know. good luck
    http://www.muxton.com/2006/09/02/howto-sync-itunes-playlist-to-your-mobile-phone -or-non-ipod-mp3-player-mac-os-x-only/

  • How can I change the message for ( Find My I phone )

    How can I change the message on ( Find my I phone )

    I'm not sure if you can change the meesage but try here.

  • In Ztable creation, How can we display error message for a 'To date' field.

    Hi all,
    I have a requirement like this.
    There r two fields in ztable. From date and To date.
    The field 'To date' in table ZKM007 is taking before date than From date field.
    To date should always be greater than from date i need to throw an  error or don't  allow to enter date  if date is less than From date.
    How can we do this?
    Can any one help on this?
    Rewards to all.
    Thanks & Regards,
    Anu.

    I have written below code at event "Creating a new entry" (05) in table maintainance generator.But it is not working. If we give the to date < From date ,
    it is saving.
    Can any one help on this code? Pls Give me code And which event i have to put this?
    ***INCLUDE LZEXE3F01 .
    FORM AT_entry.
    IF ZEXE3-TODATE LT ZEXE3-FROMDATE.
      MESSAGE I001(0) WITH 'ENTER TO DATE GREATER THAN FROM DATE'.
    ENDIF.
    ENDFORM.
    Rewards to all.
    thanks
    Anu.

  • How can I turn off messages for certain Action Center items?

    I'd like to find a way to turn off messages for Windows Update, Network Firewall and Windows Backup. Ideally I'd like to do it with Group Policy however I can't find a policy for this. We're deploying Windows 7 right now and we'll need a solution that's domain-wide.Orange County District Attorney

    Here's a script I made to uncheck Windows Update, Network firewall, Windows Backup for Windows 7 machines: (Just comment or uncomment both the Hold__ = True lines below)
    Note: this only un-checks the boxes
    Option Explicit
    Dim WshShell:Set WshShell=CreateObject("Wscript.Shell")
    On Error Resume Next
    Dim HoldReg, HoldProblem, HoldWindowsUpdate, HoldSpyware, HoldInternet, HoldUAC, HoldFirewall, HoldVirus, HoldBackup, HoldCheckUpdates, HoldTroubleshooting
    HoldProblem = False
    HoldWindowsUpdate = False
    HoldSpyware = False
    HoldInternet = False
    HoldUAC = False
    HoldFirewall = False
    HoldVirus = False
    HoldBackup = False
    HoldCheckUpdates = False
    HoldTroubleshooting = False
    Err.Clear()
    'Windows Update
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
    If Err <> 0 Then
        HoldWindowsUpdate = True
    ElseIf uBound(HoldReg) < 220 Then
        HoldWindowsUpdate = True
    End If
    Err.Clear()
    'Spyware
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
    If Err <> 0 Then
    '    HoldSpyware = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldSpyware = True
    End If
    Err.Clear()
    'Internet
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
    If Err <> 0 Then
    '    HoldInternet = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldInternet = True
    End If
    Err.Clear()
    'UAC
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
    If Err <> 0 Then
    '    HoldUAC = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldUAC = True
    End If
    Err.Clear()
    'Firewall
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
    If Err <> 0 Then
        HoldFirewall = True
    ElseIf uBound(HoldReg) < 220 Then
        HoldFirewall = True
    End If
    Err.Clear()
    'Virus
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
    If Err <> 0 Then
    '    HoldVirus = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldVirus = True
    End If
    Err.Clear()
    'Windows Backup
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
    If Err <> 0 Then
        HoldBackup = True
    ElseIf uBound(HoldReg) < 100 Then
        HoldBackup = True
    End If
    Err.Clear()
    'Check for updates
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
    If Err <> 0 Then
    '    HoldCheckUpdates = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldCheckUpdates = True
    End If
    Err.Clear()
    'Troubleshooting
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
    If Err <> 0 Then
    '    HoldTroubleshooting = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldTroubleshooting = True
    End If
    Err.Clear()
    If HoldWindowsUpdate+HoldSpyware+HoldInternet+HoldUAC+HoldFirewall+HoldVirus+HoldBackup+HoldCheckUpdates+HoldTroubleshooting <> 0 Then
        WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
        Wscript.Sleep 1000
        WshShell.SendKeys("+{TAB}") 'shift-tab
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("{ENTER}")
        Wscript.Sleep 500
        WshShell.SendKeys("{TAB}")
        If HoldWindowsUpdate Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldSpyware Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldInternet Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldUAC Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldFirewall Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldVirus Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldBackup Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldCheckUpdates Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldTroubleshooting Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        Wscript.Sleep 500
        WshShell.SendKeys("{ENTER}")
        Wscript.Sleep 500
        WshShell.SendKeys "%{F4}" 'alt-f4
        If HoldWindowsUpdate Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
            If uBound(HoldReg) < 220 Then
                MsgBox "Problem unchecking Windows Update"
                HoldProblem = True
            End If
        End If
        If HoldSpyware Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Spyware"
                HoldProblem = True
            End If
        End If
        If HoldInternet Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Internet"
                HoldProblem = True
            End If
        End If
        If HoldUAC Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Firewall"
                HoldProblem = True
            End If
        End If
        If HoldFirewall Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
            If uBound(HoldReg) < 220 Then
                MsgBox "Problem unchecking Virus"
                HoldProblem = True
            End If
        End If
        If HoldVirus Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Backup"
                HoldProblem = True
            End If
        End If
        If HoldBackup Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Backup"
                HoldProblem = True
            End If
        End If
        If HoldCheckUpdates Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Check Updates"
                HoldCheckUpdates = True
            End If
        End If
        If HoldTroubleshooting Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Troubleshooting"
                HoldProblem = True
            End If
        End If
        If HoldProblem Then
            Wscript.Sleep 1000
            WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
            Wscript.Sleep 1000
            WshShell.SendKeys("+{TAB}") 'shift-tab
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("{ENTER}")
            MsgBox "Please select options manually"
        Else
            MsgBox "Done"
        End If
    Else
        MsgBox "No changes made"
    End If
    Set WshShell = Nothing

  • How can I change the message for an error and then cancel it

    Hi everyone.
    I am currently developing an application where I have to use a trigger (DAQmx). Now it can happen, that the user (who will operate the device later on) can activate the trigger without a valid source. After a timeout, he will get a quite strange message stating he either might want to wait longer (Error -200284 occurred at DAQmx Read). I would like to redefine this error.
    So if this error number appears, he should get a message saying: "Your request couldn't be executed, since no valid trigger signal was found".
    How would I do this .. Thanks for help

    Hi Somnatic
    There are different ways. As you describe it, you'd like to cancel the occuring error (-200284) and show another message. I attach a vi with a view ways.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    ClearError.vi ‏80 KB

  • Marking outgoing emails for follow-up

    Hi,
    A lot of the email I send out are messages I need to follow up on at a later stage. Right now, my approach is to review my outbox every week and then read every message I sent to catch up on any developments (yay for 'organize by conversation') and either archive if case closed or follow up. It's a bit tedious and requires me to read a lot of messages I shouldn't have to. It also means that in some cases I am sitting with somebody in my team and I'll miss an opportunity to check on status because I haven't added the issue to my 'to do' app yet.
    What I'm looking for is this ...
    While I'm composing a new message or writing a response to an existing message, I want to be able to mark this message for follow-up.
    Here is what I've done so far ...
    I know I can mark a message with a flag after it has been sent. But those are a significant number of added clicks and not a very elegant solution.
    Same goes for tools like MailHub, which let me mark emails after they have been sent.
    I've considered writing a script that gets triggered upon email send, popping up a dialog asking to flag the message or not. With Mail Act-On, I can run scripts that way. Better, but could get rather annoying quite quickly.
    I've found MailTags, but it slows down Mail and the horrid user interface makes my eyes hurt.
    And while the keynote showing off Mavericks had me hoping the tags would be in Mail too, I installed the beta and it seems there is no tag support included in Mail. I guess one can hope it will get added before final release, but I am thinking it will not be.
    I'm sure I'm not the only person who faces this situation.
    Any recommendations?
    cheers,
    Rob

    This might solve your issue.
    https://discussions.apple.com/thread/1366627

  • How can i change alert tone for incoming messages on my ipad, for imessage?

    How can i change alert tone for incoming messages on my ipad, for imessage?

    Settings>Sounds>Text Tones

  • How can i get a solution for this message "Your Apple ID has been disabled"?

    How can i get a solution for this message "Your Apple ID has been disabled"?

    Contact iTunes Store support. That message can mean one of several things:
    Your credit card on file has expired
    The credit card issuer has denied a charge
    Your account has been hacked
    Key information in your account has changed, and Apple needs to contact you to confirm the change.

  • HT1918 i want to change the country from USA to EGYPT in the itunes but i get a message saying, u have remaining balance which is 0.44 USD, how can i find some thing for 0.44 USD to spend this sum so i can switch my account to the right store??

    i want to change the country from USA to EGYPT in the itunes but i get a message saying, u have remaining balance which is 0.44 USD, how can i find some thing for 0.44 USD to spend this sum so i can switch my account to the right store??

    Buy something for more than the balance and charge the remainder to a credit card, or write Apple and ask them to keep the balance.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • How can I have sms message delivery for IPhone

    How can I have sms message delivery for IPhone

    Check to see if there is a 3rd party app that provides it. Also, check with your carrier. If you are in the US, this is not an important thing, and most of the carriers do not provide delivery for SMS. If your from outside the US, see if the carrier supports it and what needs to be done to get it.

  • How can I mark something as 'helpful'  or 'the correct answer' ?

    I have been posting a handful of questions within the DreamweaverCC forum.
    I notice that there indications that 5 people have marked the replies as 'helpful'.
    How can I mark some of the responses to my posts as helpful ?
    I am unable to do this.
    Under my 'Actions' button it says "no actions available".
    I also do not have the ability to edit my own posts.
    For instance, I have resolved one of the problems and I would like to clean up my own post eliminating the 'noise' and leaving the relevant.
    This is for the sake of others.  I have noticed that one of my posts has 200+ views.  I do not want to waste people's time.
    During the first week of may, the Adobe FORUMS had a message for a couple of days that they were doing a major overhaul of the Forum.
    Since then I am unable to sign in to the forums (or to Adobe.com) from my ipad.
    I upgraded my IOS, and cleared cookies and history.
    note.  Today I was doing a general search on my ipad (w/o) logging in.
    I wanted to see what was out there about header.php.
    I came across my own post (which requires cleanup).
    I came across another person's.  It made me laugh.
    The individuals who were helping him asked him to post his code
    which ultimately ended up in the longest scroll in the world  (hundreds of div ids).
    The responders said 'nightmare'.
    It made me laugh because I am certain that part of my posts elicit the same response (nightmare)
    I would like to clean them up.

    Thanks Hans-Günter.
    Yes, I have noticed that elsewhere. I just do not have those options.
    Okay.  After I clicked my own response to you - then the greenStar 'correct answer showed up.
    So I clicked the 'greenstar' on your response.
    Guess what ?
    Earlier, I emailed Preran because there weren't any options under my 'Actions' button for instance 'edit or 'delete'.
    They are now there !!
    Preran
    hans-g.
    thanks !!
    What is the best way to navigate to my own posts so that I can follow them ?
    The only way I can do this is by clicking on my inbox & activity under my profile icon.
    There is a list of the latest responses and emails but it is not really a list of my own posts.

  • How can i make a email for my printer

    how can i make a email for my printer to send the things to the email and get it printed if i was out of the house my printer model is 3525

    Hi alhashmi_sy,
    Welcome to the HP Support Forums. I see that you would like to learn how to setup the ePrint feature of your Deskjet Ink Advantage 3525 printer.
    The first step is to connect your printer to your wireless network. Please follow the steps in the Installing the Printer Software for a Wireless Network Connection document for your operating system. If you have already setup your printer with a USB cable, each operating system section has the steps to switch from the USB connection to a wireless connection.
    After connecting the printer to your wireless network please follow the steps for Getting the Printer Claim Code. Once you have the web services information sheet with your claim code please Set Up a Custom Email Address for ePrint.
    You should now have a customized ePrint email address for your printer. If you run into any issues please let me know at what step things went awry and the contents of any error messages. Please also let me know what operating system you are using on your computer (whatsmyos.com). Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How can i print text messages from my htc amaze to my deskjet 3050A

    how can i print text messages from my htc amaze to my hp deskjet 3050A

    Hi,
    I believe the phone uses Android OS, v2.3.4 (Gingerbread) therefore you can use one of these applications:
       http://www.printeron.com/apps/androidprinting.html
       https://market.android.com/details?id=com.pauloslf​.cloudprint&hl=en
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HT201318 how can i get a refund for my icloud upgrade? i am within the 15 days

    how can i get a refund for my icloud upgrade? i am within the 15 days

    If in the US, follow the link below -
    https://discussions.apple.com/message/16968425#16968425
    it gives the USA number - if you don't live there you will have to find an equivalent number from the 'Contact Us' link at bottom right of this page.

Maybe you are looking for

  • Error Reading from a File

    Right now i am coding a game and i need to read from a text file to load the map. The only problem is that i cant do this in internet exploerer because i get an error saying that access is denied. I've been researchign the problem nonstop and the onl

  • During automatic PO in inventory management(MIGO)

    hi,   while creating automatic PO in inventory management(MIGO), it is throwing an error "Cost element 281500 in CO area 1000 does not exist for 11/25/2008" how to resolve this pls....? Regards, Prasath.

  • Creating a trigger in Portal

    I'm trying to create a trigger in Portal using the Wizard with the code below. It will not compile. Any ideas on why? Thank you, Sam DECLARE next_chemical_id msds.chemicals.id%TYPE; BEGIN SELECT chem_id.NEXTVAL INTO next_chemical_id FROM dual; :chemi

  • Is the retina display for the new mac book pro worth the extra cost? I'm buying a new mac book pro but not sure about the retina display.

    Is the retina display for the new mac book pro worth the extra cost? I'm buying a new mac book pro but not sure about the retina display.

  • 16x DVD's not useable on a G5?

    Hey all, I bought some 16x DVD's to backup my music collection, but I can't get them to burn. I tried blowing out the drive bay (to the best of my ability) and still nothing. It will see that there's a DVD in there, but not every time. Does this soun