Notification thru email

Hi Gurus,
I do aware that we have a possiblity of sending email to the users once notification is technically completed.
Can anyone explain me step by step process?
Help would greatly appreciated with rewards.
Regards,
Vijay.

Dear,
In this step, you define the functions, with which you can generate tasks or activities (known as supplementary actions) for a notification. These functions should be defined using a key and a label. They are assigned to a notification type, and are available at header level when processing notifications. When the function is called up, the system copies the task or activity defined into the notification. For calling up the function, you can define a label, and an icon together with explanatory quick information.
For each function, you can specify an internally programmed function module that is processed when the function is called up. A dialog with the user can also be programmed here. If you link a business operation with the function, then the function is only executed if the status of the notification belonging to the operation allows this.
If a task is involved, you have released or completed the alternatives for this status. In addition, you can define a workflow task that is activated when the notification is saved. You can also enter a function module, which still changes the workflow container when the notification is saved.
Purpose
To create a follow up actions from the notification screen itself, in the action box some activities have been defined and that will be available as a link in the notification initial screen. By clicking that link we can carry out that follow up function.
*Path
Plant Maintenance and Customer Service _ Maintenance and Service Processing _ Maintenance and Service Notification _Notification Processing _ Additional Functions  Define Action Box _Define Follow-Up Functions (Generated Tasks/Activities)
Hope u satisfied with this reply with reward points
Regards,
Rakesh

Similar Messages

  • Notification via eMail and/or worklist

    Hi everyone,
    We have a requirement that some notifications will need to be send via eMail and worklist and other notification should only be thru worklist only.
    e.g.,
    Notification FYI - eMail and Worklist
    Notification Approval - Worklist only
    Is there a document or a way to do the such thing?
    Thanks and Regards
    elmer

    Hi,
    If they are in separate item types, then I would create a new mailer, specifying the name of the item type as the correlation ID. That way the mailer will only send emails for that one item type. You will need to disable the standard mailer, otherwise that will email everything.
    The disadvantage of this approach is that you will need to have multiple mailers if you want to email from different item types - there is no way to include multiple correlations in the mailer configuration (e.g. you can't run a mailer for APINV and POAPPRV item types).
    A trigger would still do the job - you could automatically set the mail status for the notification to SENT as soon as the notification is created. If you are going this route, I would write a function that is invoked from the trigger to determine whether the notification should be emailed or not. That way, as more item types are used, you can easily modify the code in the function to determine whether to send the notification or not. I would even have a separate table / value set which can be checked, which contains a list of item types and / or processes which should not be emailed and have the code check that - if you add more conditions, then it's just an extra record in that table / set.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • PR Release Notification thru Mail

    Hi,
    Whenever  a Purchase Requisition is created it follows the defined release strategy.
    1) The issue is we want to notify the person
    concerned to release next, thru Email(Outlook or to SAP Inbox atleast).
    2)And when the final PR release is done notify the Buyer about the PO?
    Can we do this without Workflow.
    Thanks in advance,
    Suzane.

    Hi John,
    I tried PFTC_DIS transaction..it indeed has options for Notifying  about the PR's.There's one task(50000070) which sends an email to the author of Requisition.But i donot know how should i use this or what should i do further.
    Hi Pranav,
    My second query was about sending an Email Notification to the Buyers(Guys in our Purchasing deaprtment) to create a PO when the final PR release is over.
    anywayz  thank u both for the help.
    regards,
    suzane.

  • Smartforms thru EMAIL

    Hi frnds,
    how to send the smartforms thru email?
    please send me the documents or links or materials to my id.
    [email protected]
    thanks in advance.
    Regards,
    Balu

    Hi Reddy,
    Use 'SO_NEW_DOCUMENT_SEND_API1 F.M
    Please go through the code.
    data declaration
    c_u(1)            VALUE 'U',      "Value U
    c_int(3)          VALUE 'INT',    "Value Int
    c_saprpt(6)       VALUE 'SAPRPT', "Heading
    c_f(1)            VALUE 'F',      "Value F
    c_raw(3)          VALUE 'RAW'.    "Doc Type
    getting the data from TVARV
    CONCATENATE  'CBSI_FILE_NAME' '0227' INTO l_var_name SEPARATED BY '_'.
      CALL FUNCTION 'Z_GET_TVARV_ENTRIES'
        EXPORTING
          i_name            = l_var_name
          i_type            = 'P'
      I_MSGTY           =
       IMPORTING
          e_parameter       = l_file.
    TABLES
       t_tvarv           =
      p_file = l_file .
    Sending email
      PERFORM send_file_as_email_attachment
              USING v_email
                    'SM0003 Control Total Data'
                    'SM0003 Control Total Data'
          Send email
         -->P_GV_EMAIL   Email id
         -->P_TEXT_003   Subject
         -->P_TEXT_003   Subject
         -->P_6200       text
    FORM send_file_as_email_attachment
                               USING p_email      TYPE somlreci1-receiver
                                 p_mtitle         TYPE sodocchgi1-obj_descr
                                 p_filename       TYPE so_obj_des
                                 p_attdescription TYPE so_obj_nam.
    *Local varibales
      DATA: lv_mtitle           TYPE sodocchgi1-obj_descr,
            lv_email            TYPE  somlreci1-receiver,
            lv_attdescription   TYPE  so_obj_nam ,
            lv_attfilename      TYPE  so_obj_des ,
            lv_sent_all         TYPE  sonv-flag.
    *move values
      it_attach[] = it_output[].
      lv_sent_all = c_x.
      lv_email   = p_email.
      lv_mtitle  = p_mtitle.
      lv_attdescription      = p_attdescription.
      lv_attfilename         = p_filename.
    Fill the document data.
      it_docchange-doc_size = 1.
    Populate the subject/generic message attributes
      it_docchange-obj_langu = sy-langu.
      it_docchange-obj_name  = c_saprpt.
      it_docchange-obj_descr = lv_mtitle .
      it_docchange-sensitivty = c_f.
    Fill the document data and get size of attachment
      READ TABLE it_attach
           INDEX v_chr_entries
    TRANSPORTING NO FIELDS.
      it_docchange-doc_size =
         ( v_chr_entries - 1 ) * 255 + STRLEN( it_attach ).
      it_docchange-obj_langu  = sy-langu.
      it_docchange-obj_name   = c_saprpt.
      it_docchange-obj_descr  = lv_mtitle.
      it_docchange-sensitivty = c_f.
    Describe the body of the message
      CLEAR wa_objpack.
      REFRESH it_objpack.
      wa_objpack-transf_bin = space.
      wa_objpack-head_start = 1.
      wa_objpack-head_num = 0.
      wa_objpack-body_start = 1.
      DESCRIBE TABLE it_message LINES v_objpackbody.
      wa_objpack-doc_type = c_raw.
      APPEND wa_objpack
          TO it_objpack.
    Create attachment notification
      wa_objpack-transf_bin = c_x.
      wa_objpack-head_start = 1.
      wa_objpack-head_num   = 1.
      wa_objpack-body_start = 1.
      DESCRIBE TABLE it_attach LINES v_objpackbody.
      wa_objpack-obj_descr  =  lv_attdescription.
      wa_objpack-obj_name   =  lv_attfilename.
      wa_objpack-doc_size   =  wa_objpack-body_num * 255.
      APPEND wa_objpack
          TO it_objpack.
    Add the recipients email address
      REFRESH it_reclist.
      LOOP AT it_mailid .
        wa_reclist-receiver = it_mailid-low.
    wa_reclist-receiver = '[email protected]'.
        wa_reclist-rec_type = c_u.
        wa_reclist-com_type = c_int.
        wa_reclist-notif_del = c_x.
        wa_reclist-notif_ndel = c_x.
        APPEND wa_reclist
         TO it_reclist.
        CLEAR wa_reclist.
      ENDLOOP.
      IF 1 = 2.
      ENDIF.
      CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = it_docchange
                document_type              = c_raw
                put_in_outbox              = c_x
               commit_work                = c_x
           IMPORTING
                sent_to_all                = lv_sent_all
           TABLES
                object_content             = it_attach
                receivers                  = it_reclist
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      IF sy-subrc NE 0.
        MESSAGE e114 ."Unable to send An Email with Session Log.
      ENDIF.      "IF sy-subrc NE 0.
    ENDFORM.                    "send_file_as_email_attachment
    Thanks & Regards,
    Padmaja

  • Send notifications by email and showup in Worklist as well

    I am working on an Approval process where I need to send the Approval notification to an emailID and because the approver is a user of Oracle Apps, show the notification in his Worklist. This gives them flexibility to respond by email OR thru Worklist.
    If I assign the Performer of a notification to emailID of the FND USER, its only sending it as email, it doesnt show up in the Worklist. If I re-assign the Performer to the username of the FND USER, its showing up in Worklist and not as an email ( even though I have defined emailID for that FNF USER).
    Thx in advance,
    Suresh

    Hi,
    Check that the users preferences (Preferences responsibility, General tab) are set to something that includes email, e.g. HTML Mail with Attachments.
    Make sure you setup your FND USER as Employee and email address Employee and FND User, then run Synchronize WF Local Tables.
    You should see notification both email and notification.
    Regards,
    Gareth

  • Facebook Notifications and email notifications on ...

    Hi
    Is that possible Facebook Notifications and email notifications on sleeping screen nokia 808 like it had on N9..
    On my 808 it shows only msgs and miscalls....any fix??
    Thanks

    not possible unless the app supports that behaviour. but email notifications and on notification lights has been broken on Symbian for a while, and as Symbian is in maintenance mode, is unlikely to see a fix, possibly ever.

  • Sales order thru email

    Hi Gurus,
    How to send sales Order thru email , wht r the settings ?
    Thanks & Regards,
    Vikas

    Hi,
    This is similar to any other output that is sent. Pls goto NACE transaction select Sales - then output types, then select your output type and give the transmission medium as Mail and then you need to have the right processing routines and forms. If you have any standard texts which need to come in the order the same can be set as well and called in the print programs.
    Hope it helps.

  • HT1386 Just downloaded 7.2 into my Iphone 5 what a mess.  Dropped called no audible notifications for email or text messages.  Went to the apple store and reset phone to original specs. Now trying to restore apps and music and itunes will not recognize th

    Just downloaded 7.2 into my Iphone 5 what a mess.  Dropped called no audible notifications for email or text messages.  Went to the apple store and reset phone to original specs. Now trying to restore apps and music and itunes will not recognize the phone.  I have gone thur the steps for windows 7 and still nothing???  I have downloaded the newest version I itunes too. 

    Hi Midwestboy,
    If your iPhone isn't being recognized by iTunes on your Windows machine, you may find the following article helpful:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Regards,
    - Brenden

  • Sending messages thru email and SMS without using XMS APIs

    Hi,
    I already have some working code that sends messages thru email and SMS. But currently it uses XMS APIs therefore I have a dependency on files like wdk.jar. I want to try and eliminate using the XMS APIs and only use soap to send these messages. I was wondering if there is some documentation available on how I can do this. Also if there a lot of code that needs to be written to do that.
    I primarily want a very simple application that sends only string messages and reduce my dependencies.
    I would really appreciate all the advice.
    Thanks,
    Sonali Nath

    Hi,
    You may refer to the following links to check if they help:
    Sending SCCM Status Messages from MDT Scripts.
    Send SCCM task sequence email report
    Regards,
    Sabrina

  • Email notifications per email account, and bundled together? (former Android user)

    Hello there,
    I made the switch from an old HTC Android to the new iPhone 5S two weeks ago and the one thing I cannot configure to my liking is email notifications in the notification center. I have multiple email accounts that recieve a moderate volume of emails on most of my accounts per day and need a quick way to view the activity of a given email account, not the app. I currently use two email apps as follows:
    Mail - iOS7 native app
    x2 Exchange email accounts
    x1 Windows Live email account
    x1 Yahoo email account
    Gmail App
    x2 Gmail email accounts
    I have configured the notification center to notify me for all but the yahoo email account. The problem I have is that the notificaiton center only shows X number of recent emails (selected in settings) the APP has recieved, and does not say which email account it is, or how many extra emails on top of X that I selected were recieved. My phone is on silent 24/7 and the only vibrates for phone calls and text messages. I will periodically check the notification center throughout the day and use it as a summary of what has happend since the last time I checked.
    On my Android, each email account would have two lines in the Android Notification center. The first unread email on an account would use those two lines to tell you the subject line, time recieved, email account, the total number of unread emails, and the app. Once that account gets two or more emails, it simplifies to say the number of new messages, time the last one was recieved, the email account, the total number of unread emails, and the app. What is really nice about that setup is that each email account had two lines in the notification center, no matter what, and at a quick glance I can see which email accounts are really acitve and I probably need to check on. If one email account was really active and I wanted to check on it, I could select the single notification for that account and it would take me to the (already updated) inbox where I can quickly browse to see what all the emails are about. At this point it may sound like it is just different and I just need to get used to the iOS7 interface, but let me share an example where iOS7 lets me down, and Android has done well for the last couple years:
    During M-F from 8-6, my two exhange accounts and one of my gmail accounts are the only accounts I care about. One exchange account receieves 5-20 emails per hour, and the other exchange account might recieve 1-5 per day. Only a small percentage of those 5-20 emails need a priority response, but the account that gets 1-5 per day are emails that I need to know about and respond to right away. What happens in the iOS7 notification center is that I may not even see a notification for the email account that gets 1-5 emails per day, and if I do, it only tells me the sender, subject line, and some of the body if I allow more than 2 lines - it does not specify which email account it was sent to. I can choose 1, 5, or 10 emails to be displayed for the Mail App in settings, but the 5-20 emails I recieve can bump the 1 important email from the one account out of the notification center.
    Is there a way to configure notifications per email account, and bundle all the recieved emails (by saying "# New Messages" or similar) on a given account into 2-4 lines? My ultimate goal here is to not lose a notification on one account due to the high volume of another, but to also keep them concise enough that I don't need to scroll through a massive list of notifications like one giant inbox.
    I would appreciate any tips or advice to configure the notification center better for my use case. Thank you!

    Yeah.. I have problems with all apps that have notifications.
    Forget the Google Gmail example.. I'll use imo, Groupme, and Facebook as examples.
    I see the notifications. But when I open the app, it won't show the newest received messages. It will take a few second before the app would refresh.
    With my Android experience, all apps would update with the new information in the background. It appears that even though the apps are running in the background in iOS, the actual app appears to be paused until you reopen the app. That's when the app will refresh with the new information.

  • HT5035 I had a balance of $5.30 on my account. It disappeared when I added a $25 gift card. I have tried to get this issue resolved thru email. I need a call back. Where do I look to get a call back number for this issue

    I have already contacted apple thru email, twice. I don't see that they have an option for a call back for a missing iTunes balance, I did however see where I could get a call back(and did) for not being able to sign in on another device to make a purchase. This problem was resolved quickly for this device. I told this rep about the unresolved problem of the missing iTunes balance and he said he could transfer me but the wait times are very long. In my 2 email correspondences on this missing balance issue both times I was told to check my balance history- which does not resolve the issue that I am having to go thru a huge hassle to get my missing balance back prior to my card purchase. I had a balance of $5.86 show on my ipad2 and on my Mac book pro prior to applying the $25 gift card. Then the balance showed only $25 after apply my gift card, now here's what's weird: aprox. A week and a half later I sign in on my iPod touch and shows a balance of $5.30!, but when it has me resign into iTunes that balance disappeared, and the $25 gift card balance shows up. I made NO PURCHASES to use the $5.86/ or $5.30- so I want my money to equal $30.30/ or $30.86 as it should, and I want to not go thru so much to take care of it. To just hope Apple would have a call back option for this type of issue. I won't be buying iTunes gift cards or purchasing thru iTunes if my balance disappears when I do so.

    When you tried to contact Support with the card's images how were you trying to do it, on your phone or a browser on your computer ? And have you tried a different browser to see if you get the same error message ?
    As well as images of the card they might also want an image of its receipt.
    And to contact Support you were using : http://www.apple.com/support/itunes/contact/ , and clicked on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes ?

  • I want to send notifications to outside(i,e mail box) from oracle, and users will approve the notification from email

    Hi
    I have a client required to send notifications to outside email box, and also user will approve this notification through email.(i,e not logged into oracle and approve it) in 11i instance.
    i need to send mail from po department to finance department
    once finance department approves , then mail back to po department that your notificaiton approved.
    from address:=[email protected]
    to address:=[email protected]
    as part of this we did IMAP set up
    and used the following code. and getting the notifications from Oracle to my mail box.
    my main issue is when user approves the wf notifications, it is not showing my specified email address in the attribute #WFM_REPLYTO, always it is showing the IMAP set up wfdev address
    what is the value i need to use for this #WFM_REPLYTO
    eventhough i am sending the to_address email id to the following attribute(wf_engine.setitemattrtext), the workflow approval not working for that email id.
    only if i am using the '[email protected]' in the imap set up, then only approval is working.
    how can i override this to_email address value([email protected]) to my desired email address?
    wf_engine.setitemattrtext (itemtype => l_item_type,
    itemkey => l_item_key,
    aname => '#WFM_REPLYTO', -- to_ address
    avalue => '[email protected]' -- [email protected]
    if any body having some sample code related to this please share on this.
    Thanks
    sam

    Sam,
    Can you find any errors in the Workflow log file?
    Please review the following docs.
    Setting Different Values For Attributes #WFM_FROM & #WFM_REPLYTO Does Not Happen Or Results In SAXParseException (Doc ID 1455191.1)
    How To Change The Default From and Reply To Email Address For Workflow Email Notifications (Doc ID 760477.1)
    Thanks,
    Hussein

  • How do I save my project and share it thru email?

    I saved and rendered my video but when I send it thru email it can't be opened.  Please help!

    It sounds like you may be trying to e-mail the project file. That won't work.
    It's also probably not a good idea to send videos through e-mail in any event. The files are too much.
    It's much wiser to post your video to a site like Youtube or Vimeo and then e-mail a link to it.
    Do you know how to post a video to YouTube or Vimeo?

  • How to send notification and email to all approvers

    Hi
    I am customizing the requisition approval workflow in p2p cycle.
    We have to send out notifications and emails to all people in the approval heirarchy , who have already approved the req if some body higher up in the chain rejects it.
    right now oracle only send email and notification to the requester.
    ex -- If A requested it and next approver is B , who approves it , next is C, who approves it
    but next person D rejects it
    I want to send notification to C , B and A
    not just A
    please let me know how to do this.
    thanks

    Hi,
    I've provided advice on how to do it in response to your thread on the WorkflowFAQ forum at
    http://smforum.workflowfaq.com/index.php?topic=358.0
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Sending PDF thru email with password protection in our SAP system

    Need solution for sending PDF thru email with password protection in our SAP ecc 6

    Or maybe you have found any other way? You can check here:
    Password protect PDF file:
    Re: Password protected PDF file 
    pdf with password encryption
    Regards Otto

Maybe you are looking for

  • I can't convert my 3.x start routine to BI 7.0 start routine...

    Hi All, Can anyone help me to convert the below coding from 3.x start routine to BI 7.0 start routine. PROGRAM UPDATE_ROUTINE. $$ begin of global - insert your declaration only below this line  - TABLES: ... DATA:   ... $$ end of global - insert your

  • How to install Ant in Windows XP

    Er, what do I do? I've downloaded the binary distribution from Apache; where do I put it so it will work from the command line?

  • Table Name in OOPS ALV HotSpot click

    Hi Team, I am displaying 3 ALVs in a single screen using set_table_for_first_display (say Table A , table B , Table C). In the screen i have used 3 custom controls to display each ALV. Now i have a need to put a hotspot event for some fields in each

  • VPD column-masking: unexpected results using masked column in WHERE?

    Hi everyone.. We are considering implementing VPD column-masking (to hide sensitive columns from unauthorized users), but I am concerned that queries will return incorrect results if an unauthorized user submits a query using a masked column in a WHE

  • Weird issue with Bridge CC and vector masked TIFF files

    For some reason in Bridge CC my vector masked transparent backgrounds in my tiff files are showing.  I didnt have this issue with CS6.  only way to fix it is for me to flatten my image and resave it as a tiff without the mask.  Any option i need to c