How to send notification to IM client?

Dear all,
When a client receives a mail - audio or video mail, the client needs to be notified?
How is this achieved?
Rgds,
Seetesh

Yes I agree. But there must be some service provider who does the forwarding of messages provided it has the valid email addres and the IM Gateway information.
The Gateway of different IM clients along with their port nos can be configured using a Factory and then checking the email address, the service provider can relay back the messages present for that user on that IM.

Similar Messages

  • 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

  • How to send notifications to multiple person with same role and with result

    How to send notifications to multiple people with resultout as approve/reject?
    We are looping the notification by attaching a cursor query to find the different emp nos to send for approval.
    I cannot associate a role because these emp nos are sub-set of a role which I have created and i am getting thru the cursor query.
    For FYI notification there is no problem, but for approval notification, I am not unable to send approval notifications to all the people.It stops at the first person in the loop.Pls suggest alternate way. Thanks in advance.

    Manju,
    I would use the cursor to populate the API for creating an ad-hoc role within the workflow process as a function. Then set your notification performer as the ad-hoc role.
    Here is an example function:
    create or replace procedure sample_emp_fill(itemtype in varchar2,
    itemkey in varchar2,
    actid in number,
    funcmode in varchar2,
    resultout in out varchar2) as
    cursor get_name is
    select ename from scott.emp where mgr = 7839 and empno != 7566;
    role_name varchar2(50);
    names varchar2(500);
    begin
    if (funcmode = 'RUN') then
    role_name := 'ad_hoc_role_'|| itemkey;
    for row in get_name loop
    names := names || row.ename || ' ';
    end loop;
    WF_DIRECTORY.CreateAdHocRole( role_name=>role_name,
    role_display_name=>role_name,
    language=>'AMERICAN',
    territory=>'AMERICA',
    role_description=>role_name,
    notification_preference=>'QUERY',
    role_users=>names,
    email_address=>' ',
    fax=>'',
    status=>'ACTIVE',
    expiration_date=>'');
    resultout := wf_engine.eng_completed||':'||wf_engine.eng_null;
    return;
    end if;
    end;

  • Sending notifications to Mobile Client.

    Hi,
    I want to be able to send notifications down to mobile service using NOTIFN_WRITE linked to a BP. Current replication object appears to be linked to the employee only. I want the notifications to follow te BP. I think SFAKNA1 can be used but I do not know enough about interlinkages to make it work. Has anyone done this or does anyone know how to set up this replication using interlinkages?
    Many thanks
    MM

    Hi,
    Now have notifications specific to Business Partners going to mobile Client. This is a fully functioning mobile sales client. In the service notification/BP tile set I have BP number but not partner function or BP name although both are known in client. Any ideas why this information does not display ?
    The status of the service task is also blank with no drop down so is there additional customizing needed in the client ?
    Regards
    M

  • How to Send Notification to Manager of the Employee using Dynamic Action..

    Hi All,
    I am sending a notification using the Dynamic Action for an Infotype.. I am able to send mail using distribution list but I have a requirement to send the notification to employee manager. I am able to determine the Line Manager ID calling the subroutine in the dynamic action. But I am not sure how to send the notification to the manager.
    If the email's are maintained in distribution list if I specify the text id in the feature M0001 and distribution list the notifications are sent. I am not sure how to pass the line manager id to get the same notification..
    I have seen the option REC1 but infotype 0001 in not having the line manager id..

    Used the Function Module RH_GET_LEADING_POSITION.
    Thanks..

  • 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.

  • 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 echo msg to client after regular time to verify the client

    Hi
    I have socket program which used for communicating information. tow part client and server.
    I am having problem. that is I want to send a msg to client (like echo) after some time duration. so how to do that?
    help
    Kapila

    This is the run method of inner class. when the sever is ideal, the sever has to send the msg to client. I think that I want to declare the this part "byte[] b = byteConcatenate(header, responsefornac,response.length); and out.write(b);" elsewhere. first I want to check the server is ideal then if it is ok, send the msg to client.
    problem is how to recognise the client?
              * Description : This inner class is used for handling the client session
         protected class SessionPda implements Runnable
    //********************************** DECLARATION OF COMMON VARIABLES ******************************************
         protected     byte[]      request;
         protected     byte[]      response;
         protected      byte[]      header;
         protected      byte[]      requestforserver;
         protected      byte[]      responsefornac;
         protected      Socket      client               ;
    //********************************** DEFINE CONSTRACTOR********************************************************
              * Description : This method is using for getting the opening client socket
              * @param e
         public SessionPda(Socket client)
         try
         this.client      =      client;
         catch (Exception e)
              System.out.println(">>>>>>>>>>>>>> This is error is occured when getting the opened clint socket at the inner sessionpda class in serve.>>>>>>>>>>>>>>>>>");
                   SysLog.logError(java.util.logging.Level.SEVERE, this.toString(), "Sessionpda()", StackTraceUtil.getStackTrace(e));
         header                     =      new byte[HEADER_SIZE];
         request                =      new byte[PACKET_SIZE];
         response                =      new byte[PACKET_SIZE];
         requestforserver      =      new byte[PACKET_SIZE];
         responsefornac           =      new byte[PACKET_SIZE];
    //********************************** OVERRIDING THE RUN METHOD IN JAVA LANG THREAD ****************************************************
              * Description : The proccessing the cliet sessionpda
              * @param request
              * @param respons
              public void run()
              try
                   while (true)
                        in     =     new     DataInputStream(client.getInputStream())     ;
                        out     =     new DataOutputStream(client.getOutputStream())     ;
                   //PRINTING THE REQUEST INFO-----------------------------------
                        int     len     =     in.read(request,0,PACKET_SIZE)                    ;
                        String recvString = "";
         for (int i = 0; i < len; i++)
              recvString +=adjustString(Integer.toHexString( (int) (request)));
         // System.out.println("Request Information :"+recvString);
         //PEPARING TO TO PRCESS--------------------------------------
         for (int j = 0; j < PACKET_SIZE - 3 ; j++)
                   requestforserver[j] = request[j + 3];
         Process p = ProcessFactory.getProcess(request);
         boolean redo = p.doProcess();
         ISOMsg m = new ISOMsg();
    m = p.getResponse();
    m.setPackager(new ISO87BPackager());
    response = m.pack();
    //PEPARATRING TO SEND BACK THE RESPOND----------------------
    header[1] = (byte) (response.length + 5);
              header[3] = (byte) 00;
              responsefornac[0] = (byte) Integer.parseInt(NII.substring(1,3),16); //17;
              for (int k = 0; k < response.length; k++)
                   responsefornac[k + 1] = response[k];
              byte[] b = byteConcatenate(header, responsefornac,response.length);
              out.write(b);
              out.flush();
    String sendinString = "";
    for (int i = 0; i < response.length + 5; i++)
         sendinString +=
              adjustString(Integer.toHexString( (int) (b[i])));
    SysLog.logInfo(java.util.logging.Level.INFO,"Response \n"+ sendinString);

  • How to send notifications

    How to send a notifications to an user in OAF; the tool used is Oracle 9i JDeveloper. We are not using any workflow, but on submitting a page for approval , we need the approver to be notified.
    Please give me some insight on how to do this,
    i. e The classes to be imported, steps involved etc.
    Please send a sample code if available.
    Thanks,
    Praji

    Manju,
    I would use the cursor to populate the API for creating an ad-hoc role within the workflow process as a function. Then set your notification performer as the ad-hoc role.
    Here is an example function:
    create or replace procedure sample_emp_fill(itemtype in varchar2,
    itemkey in varchar2,
    actid in number,
    funcmode in varchar2,
    resultout in out varchar2) as
    cursor get_name is
    select ename from scott.emp where mgr = 7839 and empno != 7566;
    role_name varchar2(50);
    names varchar2(500);
    begin
    if (funcmode = 'RUN') then
    role_name := 'ad_hoc_role_'|| itemkey;
    for row in get_name loop
    names := names || row.ename || ' ';
    end loop;
    WF_DIRECTORY.CreateAdHocRole( role_name=>role_name,
    role_display_name=>role_name,
    language=>'AMERICAN',
    territory=>'AMERICA',
    role_description=>role_name,
    notification_preference=>'QUERY',
    role_users=>names,
    email_address=>' ',
    fax=>'',
    status=>'ACTIVE',
    expiration_date=>'');
    resultout := wf_engine.eng_completed||':'||wf_engine.eng_null;
    return;
    end if;
    end;

  • How to send multiple objects from Client to Server

    Hi
    I have a simple Client - Server architecture. I am trying to send 5 objects from Client to the Server which the server would operate on.
    In the past I've used PrintWriter to pass Strings from Client to Server but now when I am dealing with multiple Objects and PrintWriter not allowing sending of Arrays or ArrayList, how can I send these from the Client to the Server? What would be a good writer to use for this purpose?
    Thanks!

    Thanks, I am looking into ObjectOutputStream but from the API it appears I can only send 1 object at a time. I need to send 5 objects per transaction and then send the next group of 5 objects for another transaction.
    Could you clarify some more on how to put these objects together as a single Object perhaps?
    Thanks

  • 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 in the Portal UWL from WD application

    Hi,
      My requirement is user will submit Leave application form from one of the WD application then the Workflow has to send notification in the Protal for the HR.When HR see this request in his UWL it has to display the user entered leave details.
    Thanks in advance...!!!!!

    Follow the link
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/wdjava%20archive/using%20web%20dynpro%20java%20and%20web%20dynpro%20abap%20applications%20in%20universal%20work%20list.pdf

  • RSWUWFML2  - how to send notifications ( not Tasks )

    Hi folks
    I am using RSWUWFML2. Its working fine , sends Tasks to external Email like outlook. 
    But my problem is using the above program i am not able to send the notifications ( again...tasks are working fine).
    Does RSWUWFML2 just sends tasks or it even suppose to send notifications too.
    If no,  please let me know if there is any other way i can send the notifications ( not tasks again) to external email.
    Early responses will be apprciated with full points.

    Hi Sudhir,
    Thanks for the reply.
    Actually i am using a dialogue step,' Enter and send message' . The supervisor  sends a text notification of rejection reason to the WF initiator. A plain text notification is different from workitem or task. Its just a notification.
    when i am testin with RSWUWFML2 in DEV, its just sending the Tasks or workitems to outlook. But the text notifications are not being sent. am i missing any config or parameter that actually does that ?
    Please let me know

  • How to send notifications to different user groups based on payload value

    Hi Gurus,
    I have a scenario in BPM where i have to send notifications to different user groups based on the payload value.
    ex:
    Payload sample:
    <employees>
    <emp1>
    <state>TX</state>
    </emp1>
    <emp2>
    <state>AZ</state>
    </emp2>
    </employees>
    Requirement: I have to send notification through Humantask to users of TX and AZ as mentioned in payload.
    Can you please help me out in achieving this in BPM?
    Thanks,
    Raju
    Edited by: user0808 on Mar 1, 2013 12:58 PM
    Edited by: user080811 on Mar 4, 2013 11:06 AM
    Edited by: user080811 on Mar 4, 2013 11:07 AM

    Hi Daniel,
    thanks a lot for your quick response.
    I went through your blog and tried implementing the same.
    But in my case i have to send parallel notifications to both the states.
    Please correct me if i am wrong, using if conditions in rules is allowing me to send to only one state.
    I also tried the following approach
    1) setting the organization units in bpm workspace
    2) passing values using human task parametric roles
    3) and looping the subprocess that has the humantask for the count of states.
    I am able to loop the subprocess but i am not able to change the parametric role value for the next iteration of the subprocess.
    Can you please help me in resolving this?
    thanks,
    Raju

  • How to send Notification mail (with attachement) from On-Demand job

    Hi Experts,
    I am using SAP IDM 7.2 SP8.
    Requirement is to send a notification mail to a specific mail address [email protected] whenever we run a on-demand job.
    On-Demand job should also attach a csv file (atttachement.csv, which is in a specific folder D:\folder) while sending the notification mail.
    Please help.
    Thanks & Regards,
    Chandan Kumar

    Hi there,
    It sounds like you have the basics all together. I would check how you are setting the following parameters of uSendSMTPMessage:
    Attachment
    Optional. Fully qualified file name of a file to be included as an attachment.
    Multiple attachments can be added by separating the file names by a pipe character (|).
    AttachmentType
    Optional. Valid MIME attachment type.
    Charset
    Optional. Valid ISO character set identifier, for instance ISO-2022-JP. The default value is ISO-8859-1.
    HeaderEncoding
    Optional. 0: Plain text, 1: Base64. Default: 0
    TransferEncoding
    Optional. 1: 7bit, 2: 8bit, 3: Quoted ASCII, 4: Base64. Default: 4.
    Sorry the first row got mangled a bit. 
    Matt

Maybe you are looking for

  • Lightdm with unity-greeter won't load

    I've been attempting to install lightdm and the unity greeter, and I'm a bit stuck here. I've installed the lightdm-ubuntu and lightdm-unity-greeter packages from the AUR.  It starts up normally, but there is no gear available to choose session type,

  • ALUI 6.1 Search Server, Filling in the operational gaps

    The topic is Search Server 6.1 running on ALUI 6.1MP1 or MP2.. The <root>/ptsearchserver/6.1/cluster/requests folder contains a number of folders each uniquely numbered. In these folders are timestamped files with ".delta" ext. We have all these file

  • Hover  and mousedown image on command button

    I have three images for every command button: mouseout, mouseover and mousedown. Could any one tell me how to implement in JSF? Van

  • Speedgrade will not launch

    I'm unable to open Speedgrade - it never appears in the dock.  All other applications in CS6 Production Premium Suite open fine.  I'm running this on a 5,1 Mac Pro, GeForce GTX680, 16GB Ram, Dual 3.4GHz Hex Core Xeon.  Looked for logs under /Users/US

  • Disk verification help please

    I ran a disk verification but it says I need to use the cd to fix the drive. I have snow leopard on my laptop. I got the laptop with Tiger installed. Do i use the snow leopard CD to run and fix the drive or use my original Tiger install DVD and run d