Send "notification" immediatily

Hi, again friends...
I'm using the FM "SO_DOCUMENT_SEND_API1" .
Well.... my problem is... I need send the notification as fast as possible.
Searching for more information about this FM here at SDN, I got this example, and noticed that last "IF" after the FM.
That is the way to guarantee that my "notification" goes in "real time"?
Any way to guarantee that?
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data                    = wa_doc_chng
        put_in_outbox                    = c_x
      TABLES
        packing_list                     = i_objpack
        contents_txt                     = i_objtxt
        receivers                        = i_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 IS INITIAL.
    CALL FUNCTION 'SO_DEQUEUE_UPDATE_LOCKS'.
  ELSE.
    RAISE mail_not_sent.
  ENDIF.
ENDFORM.                   

Hi  Oliveira
just give the following after the FM  'SO_NEW_DOCUMENT_ATT_SEND_API1'
SUBMIT RSCONN01 with MODE = ''                              "aesterik
                               with OUTPUT = space
                               AND RETURN.*
this will send your 'notification(s)' immediately :-D
reward if useful.
Regards
Prabumanoharan

Similar Messages

  • One point voice mail not sending notification to cell phone

    I have been through the prompts to set up one point voice mail and even have entered the phone number to send notification to but never receive and such service. Voice mail does work and the prompt is in place asking for notification number and time to do so but again no such service.

    Call your phone number from your phone and when they prompt to change password you can select set up password. You will be able to set your password and review them on your phone.

  • IPhone mail app not sending notifications

    I use the mail app for iphone to check my college email,
    usually it sends notifications when I receive a new messege but it is not sending any more (No sounds, no banners, no badges),
    Although the email app is in Notification Center when I check it in the settings
    Is that beacuse I Use IMAP Not POP ?

    If Mail is in the notification center and the badge icon is on, alert is on, and ect... Try to reset your device holding home and sleep/wake button; Wait til the Apple logo appears and then let go of the buttons and wait for reboot. Has nothing to do with what type of email account you are using.

  • Disabled subscription sends notifications, relative date not working properly

    Hi
    I have two problems regarding subscriptions:
    1.When I disable a subscription, should I receive any further notifications? I am receiving notifications despite disabling the subscription.
    (I have cloned the template and deleted the original template, then sending email notification will be stopped, but as soon as assigning new template to subscription, sending emails starts, whether subscription is enabled or not)
    2. The criteria for subscription is as follows:
    Status = Active or Status = Pending and Source = Portal and Created date [relative] = [now-7d]
    Regarding the criteria, it must check whether it has past 7 days from incident creation, but it starts sending notifications without considering the [now -7d] condition.
    I use SCSM 2012 SP1 - Rollup 6.
    Am I doing something wrong?
    YSobhdel

    The actual criteria was Created Date greater than or equal to [now-7d]
    What I am trying to accomplish is that whenever an open incident (i.e., not resolved or closed incident) is active more than 7 days, assigned to user will be notified.
    My Question is , why is it happening in the first place, this criteria is nearly impossible to catch (equal to [now-7d]), yet it is sending notifications from the first day. I have testes the notification with
    Created Date greater than or equal to [now-7d] as well but to no avail, still the same problem.
    About delay, I am 100% sure that this is not performance problem, since this workflow is set to periodically check criteria and is run once a day. I have waited for the setting to apply for about two days and this is far beyond any delay! (for two consecutive
    days, I have received this notification).
    YSobhdel

  • Need to send notification to a specific person based on condition

    Please help.
    I need to send notification to a specific person based on condition. When a specific hold is placed on an invoice, send a notification to the Buyer who is referenced on the Purchase Order that is associated with that invoice. It will be an FYI notification.
    I'm looking at APINVHDN AP Hold Maiin Process. I thought possibly adding a notification into the "No" condition after the GET_APPROVER function since there would not be an approver on the invoice since it's on hold.
    Any ideas would be very much appreciated.

    Try the LiveCycle Designer forum.

  • 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

  • Workflow API which can be used to avoid sending notification to user

    Hi Folks,
    We want Workflow API which can be used to avoid sending notification to user for particular type of error.
    Say we are using following API which are used to send notification to mailbox as soon as program run into error.
    wf_core.context(c_v_package_name
    ,c_v_func_name2
    ,p_event.getEventName()
    ,c_v_task_id_prompt||l_n_task_id
    ,l_v_msg_data);
    wf_event.seterrorinfo(p_event, c_v_result_error);
    Now we want to restrict certain type of error to send as a notification however we want to keep this record in wf_notifications table for further investigation.
    Thanks and Regards,
    Javed Khan

    Matt,
    It looks like another person had a similar question before, see the following thread:
    https://supportforums.cisco.com/discussion/9697836/can-use-axl-or-other-api-get-calls-progress
    Also, according to the comments seen on that post, I was able to find the JTAPI developers guide, see more information below:
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/jtapi_dev/8_6_1/jtapidevguide/overview.html
    If this still does not satisfy your question then, the best you can do is post this inquiry on the Cisco Developer Network on the following link:
    https://developer.cisco.com/site/devnet/home/index.gsp
    Hope this information helps,
    Marco Rojas.

  • How to create a new role : Need to send notifications to multiple users.

    Hi All,
    I have a requirement where in I need to send notifications to multiple users
    and no. of users in the list is not fixed.i.e. this builds up dynamically.
    Kindly let me know how do I achieve this.
    Also wanted to know where form the Workflow roles get created i.e. who inserts data into wf_roles and wf_user_roles tables. Is there any UI to create roles and associate users with them.
    Thanks,

    Hi,
    Yes - by default all responsibilities are defined as roles in the Workflow directory. You just need to identify the role that corresponds to the responsibility (look at ORIG_SYSTEM and ORIG_SYSTEM_ID columns, IIRC) and then send the notification to the role.
    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

  • FIX ADOBE SEND NOTIFICATIONS AND OTHER FEATURES

    I would love for us to select which notifications do we want when we use the adobe send product. In the previous version (sendnow) we used to receive notifications when the file was actually sent out, and downloaded. In this version we only receive when the file is downloaded which is terrible. Moreover, it would be great to have a CC option in an email too. Lastly, I cannot view my history of files that I have sent but instead I just see a history of files available but no record on what that file is associated with, etc.. TERRIBLE. Please fix these things in the future release.

    Hi Donegergroup,
    Please see my response in your other post on this topic: FIX ADOBE SEND NOTIFICATIONS & Other features
    Best,
    Sara

  • How to send notification mail by IDM 7.1?

    HI,
    I configured the idm 7.1 and want to send notification mail to user when a new user is created.
    But I can not get email from IDM. I think the SMTP server is right and I can telnet to SMTP server and send mails.
    How to test the IDM configuration is right ? or how to test send mail notification by an easy way ?
    Thanks.

    I configured the IDM from Configure--> servers -->Edit Server Settings page ,Email Template, as filled form:
    Default SMTP Server      192.168.22.222
         Use default
    Default SMTP Port      25
         Use default (25)
    SMTP Port      25
    SMTP Authentication Enabled      
         Use default (true)
         Authentication Enabled
    User Id      idmmail
    Password      *****
    Default SMTP Enable SSL      
         Use default (false)
         SSL Enabled
         Disable Certificate Authentication
    When I run the "ALL USERS" report, I select the 'Email Report' and filled the mail address. But after running the report , I can't receive email and no error messages displayed.
    Could you tell me how to do I can debug or trace the messages if the IDM sent or not sent mail , if it connects to mail server ?
    Thanks.

  • Need to send notification to user when salary added or updated on Salary form (11.5.10.2)

    We do not have AME so workflows are not available to us, but I need to find a way to send notifications to users/managers of salary changes.  When a user adds or updates a salary, it needs to go to a second user for approval.  The second user is not going to know to approve without a notification that one is ready to approve.  Can someone help me set this up?  I don't see anywhere in the form where it can be personalized. Is there a simple way to do this?  I see from blogs that some used an alert which fired when the salary admin record is inserted and sent a message to the manager. The manager could then go back into the salary admin form with the salary admin:approve profile on and approve it.  Or if that wouldn't work, then to use a trigger.  Where would these be done at using the Salary form?
    Any help would be appreciated!

    Any thoughts?Just kill the user

  • How to send Notification email to Outlook mail?

    Hi all,
    am new to workflow,
    is there any possiblity with sending notification emails using rule?
    in my requirement i have to send email notifications to concerned manager using A002 relationship in HR?
    Can anybody help me?
    Thanks in advance,

    Hi,
    You will have to do the following:
    1. Create a new container element (for eg. APPROVER) with Data type WFSYST-AGENT.
    2. Create a new background method(if required create a new Business object also) to your BO object to populate this container element.
    3. Use the following code in your method:
         DATA: G_SNAME TYPE SMNAM,
            G_USER TYPE SYSID,
            NEXT_PROCESSOR_TAB     TYPE PTREQ_UIA_APPROVER_TAB.
         PERFORM FIND_NEXT_PROCESSOR(RPTREQAPPRCHK)
         USING
         PERNR
         REQTYPE
         CHANGING
         NEXT_PROCESSOR_TAB
         G_SNAME
         G_USER.
         CONCATENATE 'US' G_USER INTO APPROVER.
    3. Add a new activity step to your workflow calling this method.
    4. Use your(current) send mail step with agent field having value 'APPROVER'.
    Hope this will work.
    Regards
    Gautam

  • 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

  • HOW TO SEND NOTIFICATION THRO. MAIL

    I have installed workflow 2.6.4 on oracle 10.2.
    1) How to send notification thro mail?
    2) what kind of setting I need to do?
    3) Do I need to include all users email address in Microsoft Outlook contact or in WF_LOCAL_ROLES?
    Regards,
    Jitendra

    The Workflow Agent Listener and Workflow Notification Mailer components should be up and running in order for e-mails to be received from Oracle Workflow. These components are managed using batch files located on $ORACLE_HOME/wf/admin. You may verify the status and view the log files of these components using Workflow Manager UI accessible from Enterprise Manager.
    Thanks

  • Exception: Could not send notifications due to Error

    Hi experts...
    I have configure the Notification Message function for the new task in UWL follow the guide below.
    https://help.sap.com/saphelp_nwce711/helpdata/en/e4/32ff7865fa483dba3686160f5c6dd0/frameset.htm
    It does work on the server (BPM/CE7.11) in my office. (CE install in VMware along with mail Server, use same IP: 8.8.2.180)
    But when I do the same thing on client's side, it just doesn't work out. (use the same VM instance, but in different Network environment)
    I list the detail info. of settings and exception below:
    For BPM Mail Server Connectivity:
    host: 8.8.2.180 (also try bpm.hjoy.com.tw)
    user: jason
    e-mailAddress: jason @demo.hjoy.com.tw
    PSW: goodtry
    For BPM Notification Messages Configuration:
    Mark both option
    URL: http://bpm.hjoy.com.tw:50000
    Could not send notifications due to Error: (Failed in component: sap.com/tcbpemtmear, BC-BMT-BPM-DSK) Exception raised from invocation of public int com.sap.bpem.tm.notification.MailNotificationSender.startNotification(com.sap.bpem.tm.adapter.Action,com.sap.bpem.tm.ITaskInstance) throws java.lang.IllegalArgumentException method on bean instance com.sap.bpem.tm.notification.MailNotificationSender@1a44705 for bean sap.com/tcbpemtmearannotation|bpemtmejb.jarannotation|MailNotificationSender in application sap.com/tcbpemtmear.; nested exception is: javax.ejb.EJBTransactionRolledbackException: (Failed in component: sap.com/tcbpembaseear, BC-BMT-BPM-DSK) Exception raised from invocation of public void com.sap.bpem.base.mail.MailSenderBean.send(com.sap.bpem.base.mail.IMessage) throws com.sap.bpem.base.mail.MailException method on bean instance com.sap.bpem.base.mail.MailSenderBean@14d43e4 for bean sap.com/tcbpembaseear*annotation|bpembaseejb.jar*annotation|MailSenderBean in application sap.com/tcbpembaseear.; nested exception is: com.sap.bpem.base.mail.MailException: javax.mail.SendFailedException: Invalid Addresses;
      nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 554 User unknown
    Please kindly help me for this...

    Good day! I configured the notification but I stack with a problem.
    There is an error in logs:
    Could not send notifications due to Error: {...} nested exception is: com.sap.bpem.base.mail.MailException: com.sun.mail.smtp.SMTPSendFailedException: 550 authentication required
    But I've entered the login and the password to the smtp. Where can I find a reason of the error?
    Also I tried to configure notification service using the link http://help.sap.com/saphelp_nwce711/helpdata/EN/e4/32ff7865fa483dba3686160f5c6dd0/content.htm, but when I try to configure tcbpembase~ear service there is no edit button and the column "Modifiable" has no check. What it can be?

Maybe you are looking for