Regarding mail sent

Hi Abap Experts,
                             i have 4 fields in my selection screen.
                            1.  Trigger mail it is check box.
                            2.  Mail ids it is parameter field
                            3. display all      it is radio button
                            4. display exception   it is radio button
        my requirement is if i mark check in trigger mail then maild field should enable and allows to enter the mail id.
in the radio button if i click display all then the data from the display all should be linked to mail id and its get triggered.
similarly if i press display exceptions then the data from this is linked to mail id field and mail gets trigerred.
for that i am using the function module called so_new_document_api1. i need how to link the data from radio button to the mail id.  i hope u understood my query.

HI EXPERTS MY PROBLENM IS SOLVED BY TAKING THAT FUNCTION MODULE

Similar Messages

  • I'm a Microsoft Outlook for Mac user, I need information of how to know when e-mail was readed and confirm receipt of e-mails sent. thank you!  regards Mauricio

    I'm a Microsoft Outlook for Mac user, I need information of how to know when e-mail was readed and confirm receipt of e-mails sent. thank you!  regards Mauricio

    Mail and Address book

  • Find table which contains "job name" and "Mail sent to users"

    Hi Folks,
    I have a requirement” whenever I run a job(xyz), it send mail to users”, Can you please let me know the table which contains both “job name” and “successfully mail sent to users”.
    Thanks in Advance.
    Lakshmi.

    Hi,
    You can find the job name in TBTCJOB.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • Status to Mail sent and Not sent

    Hi,
        I have a list of records which contains to whom i should send a mail.Below is the screen shot and procedure which gives me the records.
    Now i want a stored procedure , In below screenshot if 1st record means if the mail is sent  for 1st record it should mark as sent . and i should be left out with a records for which a mail is not sent.
    From the below proc i have got these two records.
    Please help me with the procedure.I am using SQL server 2008.
    The mail sending process is all done through coldfusion. I just want to give a list of mails sent  and if sent it should mark as sent and should be left out with not sent mails.
         IF OBJECT_ID ('dbo.Mail_Send') IS NOT NULL
         DROP PROCEDURE dbo.Mail_Send
    GO
    CREATE  PROCEDURE [dbo].Mail_Send
    @userid            int,
    @weekEndDate       datetime,
    @sessionUserID     int
    AS
    BEGIN
                 IF OBJECT_ID ('tempdb..#Temp') IS NOT NULL
                BEGIN
                      DROP TABLE #temp
                END--IF
                CREATE TABLE  #Temp
     [Action]         varchar(50),
     UserID         int,
     LastName       varchar(50),
     FirstName      varchar(50),
     WeekEndDate    DateTime,
     Reason         Varchar(500),
     To_email       varchar(100),
     SessionUserID  int,
     MFirstName     varchar(50),
     MLastName      varchar(50), 
        INSERT INTO #Temp 
    SELECT 
                ts_ActionHistory_Action AS ACTION, ts_ActionHistory_tsOwner_usr_ID_FK AS UserID,lname AS LastName , fname AS FirstName,
                ts_ActionHistory_WeekEndingDate AS WeekEndDate,ts_ActionHistory_comments AS Reason ,email,mgr_id AS SessionUserID,SUPFIRSTNAME AS MFirstName,SUPLastName AS MLastName
                FROM tbl_timeSheet_ActionHistory TAH,  
                                  SELECT 
                                        ts_ActionHistory_WeekEndingDate as WeekEndingDate,
                                        MAX(ts_ActionHistory_ActionDate) AS actionDate ,
                                        ts_ActionHistory_tsOwner_usr_ID_FK AS userID 
                                  FROM tbl_timeSheet_ActionHistory  
                                  WHERE ts_ActionHistory_tsOwner_usr_ID_FK =@userid 
                                  and ts_ActionHistory_WeekEndingDate = @weekEndDate 
                                  and ts_ActionHistory_Action='Disapprove'
                                  GROUP BY ts_ActionHistory_tsOwner_usr_ID_FK ,
                                  ts_ActionHistory_WeekEndingDate 
                         )TAH1  
                         Inner join v_empSup AS A
                         ON TAH1.userID = A.usr_id 
                         WHERE   
                                  TAH1.userID = TAH.ts_ActionHistory_tsOwner_usr_ID_FK  
                                  AND TAH1.WeekEndingDate= TAH.ts_ActionHistory_WeekEndingDate
                                  AND TAH.ts_ActionHistory_ActionDate  = TAH1.actionDate
       Insert into Mail ([Action],FirstName ,LastName ,WeekEndDate ,MFirstName ,MLastName ,Reason ,To_email ,From_email )
       Select
               [Action],
               FirstName ,
               LastName ,
               WeekEndDate ,
               MFirstName ,
               MLastName ,
               Reason,
               To_email,
               From_email =  (Select  email from v_empSup  where usr_id  = @sessionUserID  ) 
               from #Temp 
        --Select * from Mail                          
    END
    Thanks,
    Deepa

    Check the area where i have set BOLD characters,
       IF OBJECT_ID ('dbo.Mail_Send') IS NOT NULL
         DROP PROCEDURE dbo.Mail_Send
    GO
    CREATE  PROCEDURE [dbo].Mail_Send
      @userid            int,
      @weekEndDate       datetime,
      @sessionUserID     int
    AS
    BEGIN
    IF OBJECT_ID ('tempdb..#Temp') IS NOT NULL  DROP TABLE #temp
    CREATE TABLE  #Temp(           
     [Action]         varchar(50),
     UserID         int,
     LastName       varchar(50),
     FirstName      varchar(50),
     WeekEndDate    DateTime,
     Reason         Varchar(500),
     To_email       varchar(100),
     SessionUserID  int,
     MFirstName     varchar(50),
     MLastName      varchar(50)
    INSERT INTO #Temp
    SELECT ts_ActionHistory_Action AS ACTION,
    ts_ActionHistory_tsOwner_usr_ID_FK AS UserID,
    lname AS LastName ,
    fname AS FirstName,
    ts_ActionHistory_WeekEndingDate AS WeekEndDate,
    ts_ActionHistory_comments AS Reason ,
    email,
    mgr_id AS SessionUserID,
    SUPFIRSTNAME AS MFirstName,
    SUPLastName AS MLastName
    FROM tbl_timeSheet_ActionHistory TAH, 
      SELECT
      ts_ActionHistory_WeekEndingDate as WeekEndingDate,
      MAX(ts_ActionHistory_ActionDate) AS actionDate ,
      ts_ActionHistory_tsOwner_usr_ID_FK AS userID
      FROM tbl_timeSheet_ActionHistory 
      WHERE ts_ActionHistory_tsOwner_usr_ID_FK = @userid
      and ts_ActionHistory_WeekEndingDate = @weekEndDate
      and ts_ActionHistory_Action='Disapprove'
      GROUP BY ts_ActionHistory_tsOwner_usr_ID_FK ,
      ts_ActionHistory_WeekEndingDate) TAH1 
     Inner join v_empSup AS A
     ON TAH1.userID = A.usr_id AND TAH1.WeekEndingDate= TAH.ts_ActionHistory_WeekEndingDate
     AND TAH.ts_ActionHistory_ActionDate = TAH1.actionDate
     Left join Mail M on M.userID = A.usr_id AND TAH1.WeekEndingDate= M.WeekEndingDate
     WHERE M.IsSent is Null
     --LOOP BELOW SET OF STATEMENT FOR ALL USERS SELECTED IN THE ABOVE TEMP TABLE.
     -- YOU CAN ACHIEVE USING CURSOR
     -- DECLARE C CURSOR FOR SELECT * FROM #TEMP
     --- example to send email, change the parameter accordingly...
     EXEC master.dbo.xp_sendmail
        @recipients = N'[email protected]',
        --@query = N'SELECT * FROM INFORMATION_SCHEMA.TABLES',
        @subject = N'SQL Server Report',
        @message = N'The contents of INFORMATION_SCHEMA.TABLES:',
        @attach_results = 'TRUE',
        @width = 250 ;
       Insert into Mail (IsSent , UserID, [Action],FirstName ,LastName ,WeekEndDate ,MFirstName ,MLastName ,Reason ,To_email ,From_email )
       Select  'Y',  
         @userid,
               [Action],
               FirstName ,
               LastName ,
               WeekEndDate ,
               MFirstName ,
               MLastName ,
               Reason,
               To_email,
               From_email =  (Select  email from v_empSup  where usr_id  = @sessionUserID)
          from #Temp
     ------------- END OF LOOP             
    END
    Regards, RSingh

  • Mail sent to an alias arrives then disappears

    This is really weird. I have four aliases. Two of them have both .mac and .me extensions. I was not receiving mail at one of my aliases, so I checked them all, sending mail to each one. Mail sent to the .mac extension of one of my aliases arrives in my inbox then immediately disappears. The same alias, oddly, with a .me extension arrives with no problem. All the other aliases are fine. What gives? Thanks in advance for any advice on this.
    EDIT: woops. Went to another mac and saw it was being marked as junk. Unjunked it and all is fine.

    I am also having this problem. I've had my .Mac account for three years and, while I want the convenience of using Mac Mail, like you said, aliases are pointless if not indicated. I'm forced to use web-based email. I had this problem with Mail ever since I've started my .Mac account and was hoping the Leopard upgrade would solve it, too little avail.
    Sorry to piggyback, but I wanted to be notified if there is a solution. If you've found anything else out, please let me know!
    Regards,
    Drew

  • See e-mails sent from Mac on iPhone?

    Hi, I have OSX 10.9.1 on my Macbook and ios 7 on my iPhone and I use iCloud. What can I do to make an e-mail sent from my Mac turn up on my iPhone when I search for it on the iPhone for instance by using the sent e-mail´s subject content?
    Kind regards
    tellef
    oslo

    The default setup on the phone does not synchronise the "sent" folder, so it wont appear on your webmail account.
    If you enable synchronisation for that folder, it will appear on your webmail account as a new folder called "sent items", So you end up with a "sent" and a "sent items" folder on your webmail account.
    You can enable folder sychronisation by the following sequence.
    Messaging - select account - press menu - select "folders (5)" - press menu - select "manage folder (2)".
    You will then be given the option whether to sync, or not sync a folder.
    Any folder that you sync, will appear on your webmail account next time you connect.
    This only works for the default IMAP setup.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Regarding Mail:  When I return to my computer after it has gone to sleep, my accounts go offline, and are always asking me for the password.  THis is very annoying.  How can I prevent this?

    Regarding Mail:  When I return to my computer after it has gone to sleep, my accounts go offline, and are always asking me for the password.  THis is very annoying.  How can I prevent this?

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • How can I find an e-mail sent in October...I only see November Sent e-mails in my Sent folder?

    How can I find an e-mail sent in October...I only see November Sent e-mails in my Sent folder?

    Simply enter the configurations menu from settings, go to personal config and the account should be listed there, select options and delete.
    Simple! :-)
    iPhone 5 32GB
    MacBook Pro Retina 15" Mac OS X Mountain Lion 10.8.4

  • Why does mail sent using the MacOSX mail client not show up in my sent folder when I access my Gmail account in a browser?

    I've recently started using my first Mac, and I hooked my work email (Forwarded to Google Mail) and my personal email (Gmail) into the MacOSX mail client. Everything seemed to be going smoothly, until I noticed that sent mail from my work email through the MacOSX Mail client is not showing up in my sent box on any other clients. Sent mail does show up in my personal email in Gmail, though.
    Can anyone help me understand why mail sent from the MacOSX Mail client doesn't end up in the sent folder of my work Gmail account? I suspect it has something to do with the forwarding-to-Google process -- a sort of "too many cooks in the kitchen" situation. Has anyone heard of this problem before? What should I try?

    I've been noticing that too.  Just told me there were 6 outgoing messages, even though I did not create any new messages.
    One hypothesis is that it's generating those messages when a rule moves an email from one folder to another.
    Can someone at Apple confirm this?

  • How do I sync mail SENT from other devices onto my iPad?

    I am on ipad mini, iOS 6.0.2 and using yahoo business mail with IMAP settings. In my Sent box I can only see mail sent through the ipad but not mail sent through other devices. On my Android I can sync Sent mail just like I can sync my in box. Can someone please tell me how to do this? In mail, contacts, calendar, advancedssetting my sent box is set to server. Thanks

    Is your email account an IMAP account? If not, the folders will not sync.
    If your email account is a POP account, you can create folders and mailboxes in the Mac mail app and those folders will be for local storage and organization on the Mac only. That is a feature of the Mac mail software. Those folders/mailboxes will not sync if you do not have an IMAP account.

  • ALL e-mail SENT since 28 Oct FAILED. Is this a SMP...

    I use BT Yahoo e-mail and Outlook 2003. No problems whatsoever until yesterday when a client advised that he'd not received a couple of e-mails. I re-sent them and all looked fine. The pop-up box confirmed Send/Receive complete & the e-mail moved from Outbox to Sent Mail.
    First thing this morning I sent myself a test e-mail from Outlook and again it seemed OK. The test though didn't appear (8 hours later) in my In-box. I then logged onto my BT e-mail a/c via the webpage to see if my mail had got that far; but discovered that BT Yahoo Internet's homepage had moved and that BT claimed they were "changing the way e-mail worked". I therefore wondered if this mightn't be linked to my problem. Further reading showed that BT had signed-up to some anti-spam initiative and that "IF YOUR CLIENT DOES NOT SUPPORT THE SMTP AUTHENTICATION YOU WILL NOT BE ABLE TO USE IT TO SEND BT YAHOO MAIL". The website offered a link to automatically check and fix my client settings, but Outlook 2003 wasn't on the list of clients supported.
    I checked my Outlook e-mail account settings manually and found the "my outgoing server (SMPT) requires authentication" box already checked. I even unchecked the "Use same settings as my incoming mail server" box and re-entered my user name and password. But still the same problem. All Sent mail LOOKS normal but isn't being delivered if sent using Outlook. TO BE CLEAR - e-mail sent from the BT Internet webpage is fine
    The incoming and outgoing server details and the port settings all look fine (POP3/port 110 & SMTP Server/port 25)
    Any ideas, anybody???

    This may help to get your correct settings.
    BT Help with your e-mail
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Mail sent from iPad not appearing on desktop (windows) pc

    Have had to change my BT Yahoo email account to BT Mail so on the iPad deleted the BT yahoo account and then added the BT mail account.  Problem is that mail sent from iPad no longer appears on the (windows) pc. What am I missing
    ipad iOs 7.1.2

    If it is IMAP, then obviously something is wrong. I don't know if there is a problem on the computer setup. Are you sending the email from a web browser or from an email client? I don't think that should matter anyway unless you have incorrect settings in the email client.
    Have you tried sending an email from your computer and see if it shows up as sent mail on the iPad?  Have you considered deleting the account and then add it back yourself on the iPad?

  • When people text me pictures to my iphone5, I can not open them.  This was not a problem until I downloaded iOS 6.1.3.  I also can't open attachments from e-mails sent to me on my phone.

    When people text me pictures to my iphone5, I can not open them.  This was not a problem until I downloaded iOS 6.1.3.  I also can't open attachments from e-mails sent to me on my phone.

    Try a reset hold home/sleep buttons until Apple logo appears
    If that does not improve try a restore
    http://support.apple.com/kb/HT4137
    For your information
    We are NOT Apple here we are all users helping other users
    so emotion is ignored

  • Is it easily possible to synchronize mails sent from iphone 3GS with MacBook Pro retina

    is it easily possible to synchronize mails sent from iphone 3GS with MacBook Pro retina

    Read through this:
    http://clients.websavers.ca/whmcs/knowledgebase/115/Keeping-your-Sent-folder-in- sync-across-devices.html

  • Yahoo mail sent through Mail app do not appear when login into Yahoo mail

    Hi everybody,
    I have a problem that annoying me very much. I've used Yahoomail for very long before I bought a MBA. For the first time I use Mac OSX, I try to use Mac mail combine with my old Yahoo mail. Actually, I have done the config. But anything I do with my Yahoo mail through Mail app can't appear when I login into original Yahoo mail. For example: I sent a Yahoo mail through Mac mail, it's shown that the mail was sent sucessfully, but when I try to login into Yahoo mail on Web, the sent mail doesn't exist. And the same happen when I do the opposite: the mail I sent on Yahoo mail doesn't exist on Mac mail. It's a big trouble if I use other lap and try to contact with someone. So is there any solution can fix it?
    Many thanks

    I'm having the same problem, and the only help I ever seem to find suggested anywhere is "make sure its set up as an IMAP account"
    BUT it is! Mail automaticly sets all yahoo accounts up as IMAP. So is this just a yahoo problem? Is there anyway to fix this?
    For me the bigger issue isnt that I need to be able to check my e-mail through a web browser regulerly, but on my Iphone and Ipad the account, which is through the mail app, also dosnt show sent mail sent through the mac app.
    I agree this makes mail on my mac totally usless.

Maybe you are looking for

  • Battery charge percentage diminishes when connected to mains?

    Hello, I am not sure if I am right or wrong but I think there might be something strange with my Macbook Air. (11", core i7, 250ssd, 4gb ram). Every time the laptop is connected to the mains, the battery percentage starts dropping. For example, last

  • Problem withdata while saving the Webi Report in Excel

    Hi All, Just Now  we migrated our Webi reports on 4.1. When I am schduling report in excel In my report some ? sign will come. If I do save -> save as Excel it will save properly but Save as execel 2007 It will save ? marks in some column. Schdule in

  • Confused between getting an APPLE TV or VGA cables...

    Hey Folks. Im not sure if I should get an APPLE TV or a VGA cable to connect my MacBook Pro to my LCD TV... what do you recommend. Im a heavy film buff, so I watch a lot of movies - with that said, APPLE TV seems like a good selection since I can pur

  • Can I use Oracle XE for ODM prototyping?

    Hi experts, Can I use Oracle XE (Oracle Database Express, the free light weight database) for prototyping about ODM? I am worrying about the ODM components are not installed with Oracle XE so I won't be able to use the data mining features. Thanks Pe

  • Creative MediaSource player and URL addr

    how?can i?to hear music via Creative MediaSource player in version?3.30.2- from URL address ?like http://www.i can't find this option,and which version of the MediaSource player,i can find this option?thanks for help.