IStatemanagementResource and Notification-Service email

Hi All,
Presently, manually submitting the document at path (Content Admin.. --> KM Content -- >root --> content --> temp --> xyz.doc) an email from Notification-Service is sent to the approver with a link for approving or rejecting the document.
My requirement is send an email to approver using custom development.
Using the thread Re: Updating KM Workflow "status" , I'm successfully able to change the workflow status of KM document from "In-Progress" to "For Approval", but not able to send an email to approver.
Request you to kindly help me letting me know how to proceed further incorporating "Notification-Service" to send an email to the approver.
Many Thanks,
SK

Hi,
Content of this notification mail is controlled by xml and xsl files stored in KM. Check the below link which explains how to change those xml and xsl files to customize the approval/subscription notifications.
https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/90626697-0901-0010-2ca7-86e2a50ce70d&overridelayout=true
https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/200c295a-9043-2c10-8d88-a6e1c84b21f9&overridelayout=true
you can find these xml and xsl files in content administration > km content > etc repository > notifications > WORKFLOW_EMAIL.xsl, WORKFLOW_en.xml.
Regards,
Yoga

Similar Messages

  • Using AIA for Error Handling. Logging and Notification Services

    hi,
    In our project we usie OSB and BPEL for integrating different applications.
    There is a suggestion that we should use AIA to just use the Error Handling, Logging and Notification services from AIA. I am not sure about this use case, as most of these services mentioned can be replicated in BPEL. Except for the AIAAsyncExceptionHandling BPEL process, i guess all other functionalties provided by AIA can be easily developed in BPEL or OSB alone.
    However, would like to hear from you guys about this particular use case. Is it advisable?

    Hi,
    It's an issue with 10.1.3.4 OBIEE. (whem using IBM LDAP)
    References
    BUG:7363517 - INTERNAL BI FAILURE ON STARTUP
    They issue can be resolved by setting LD_PRELOAD=/path/libibmldap.so
    Here are the steps:
    . sa-init.sh
    export LD_PRELOAD=/path/libibmldap.so

  • Llocation and notification service issues iPAD2 iOS5.

    Location & notification service has become unstable since updating iPAD2 to iOS5.

    Location & notification service has become unstable since updating iPAD2 to iOS5.

  • UWL and notification service

    I am currently investigating UWL and its features.
    The scenario I am facing is a portal application where users need to be notified on a portal iview (a customized UWL based iview?) about events like file uploading in a KM folder(s) or they would get a custom notification due to a specific business rule. Previously I did some "experiments" by using the RecentNotification iView with not satisfactory results...
    Do you think UWL could be the solution for our needs? I found that docs and infos on SAP sdn are a bit limited and "messy" about this subject so... any suggestion would be much appreciated. Best scenario could be a step-by-step tutorial.
    thanks in adavance for yr support
    From Italy
    Massimiliano Turco

    Hi Max!
    Basicly yes, chapter 6.4 describes the basics of a repository service. However, this isn't too detailed for someone seeking a solution.
    Here's an example of a repository service:
    package com.xxx;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.StringTokenizer;
    import com.sap.netweaver.bc.rf.util.event.IEventBroker;
    import com.sapportals.portal.prt.logger.ILogger;
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    import com.sapportals.wcm.WcmException;
    import com.sapportals.wcm.crt.component.IReconfigurable;
    import com.sapportals.wcm.crt.component.StartupException;
    import com.sapportals.wcm.crt.configuration.ConfigurationException;
    import com.sapportals.wcm.crt.configuration.IConfiguration;
    import com.sapportals.wcm.repository.IResource;
    import com.sapportals.wcm.repository.manager.IRepositoryManager;
    import com.sapportals.wcm.repository.manager.IResourceEvent;
    import com.sapportals.wcm.repository.manager.IResourceEventReceiver;
    import com.sapportals.wcm.repository.manager.ResourceEvent;
    import com.sapportals.wcm.repository.service.AbstractRepositoryService;
    import com.sapportals.wcm.repository.service.ServiceNotAvailableException;
    import com.sapportals.wcm.util.events.IEvent;
    * Class <code>XXXRepositoryService</code> implements a respository service
    * that listens for several events on a defined directory.
    public class XXXRepositoryService extends AbstractRepositoryService implements IReconfigurable, IResourceEventReceiver {
       * The name of the configuration attribute that defines the maximum number of
       * news articles to aggregate.
      public static final String CONFIG_ARTICLECOUNT = "articleCount";
       * The name of the configuration attribute that defines the destination
       * directory in KM.
      public static final String CONFIG_KMDESTDIR = "kmDestDir";
       * The name of the configuration attribute that defines the destination file
       * in KM.
      public static final String CONFIG_KMDESTFILE = "kmDestFile";
       * The name of the configuration attribute that defines the news directory
       * in KM.
      public static final String CONFIG_KMXXXDIR = "kmNewsDir";
       * The name of the configuration attribute that defines the KM service user.
      public static final String CONFIG_KMUSER = "kmUser";
       * The name of the configuration attribute that defines the supported
       * languages.
      public static final String CONFIG_LANGUAGES = "languages";
      // the logger for this service
      private static final ILogger _LOGGER = PortalRuntime.getLogger();
      // The type/name of the repository service.
      private static final String _TYPE = "com.xx.XXXRepositoryService";
      // The destination directory in KM.
      private String _kmDestDir;
      // The destination file in KM.
      private String _kmDestFile;
      // The news directory in KM.
      private String _kmNewsDir;
      // The KM service user unique name.
      private String _kmUser;
      // The supported languages.
      private String[] _languages;
         // Storing repository managers for later unregistering
         private Collection registeredRepositoryManagers = null;
       * Create a new instance of <code>NewsRepositoryService</code>
      public XXXRepositoryService() {
        super();
         _LOGGER.info(_TYPE + ": constructor called.");
       * (non-Javadoc)
       * @see com.sapportals.wcm.repository.service.IRepositoryService#getServiceType()
      public String getServiceType() {
        return _TYPE;
       * (non-Javadoc)
       * @see com.sapportals.wcm.util.events.IEventReceiver#received(com.sapportals.wcm.util.events.IEvent)
      public void received(IEvent event) {
        try {
              _LOGGER.info(_TYPE + ": event received, checking...");
          if ((event != null) && (event instanceof IResourceEvent)) {
            final IResourceEvent resourceEvent = (IResourceEvent) event;
            final IResource eventObject = resourceEvent.getResource();
            final String eventPath = eventObject.getRID().getPath();
            if ((eventObject != null) && (eventPath.startsWith(_kmNewsDir)) && (!eventPath.startsWith(_kmDestDir))) {
              ManageNewsAggregation.work(ManageXXX.getEP5serviceUser(_kmUser), _kmNewsDir, _kmDestDir, _kmDestFile, _articleCount, _languages);
              _LOGGER.info(_TYPE + ": xxx successfully");
        } catch (Throwable t) {
          _LOGGER.severe(t, _TYPE + ": unable to handle event " + event.getDescription() + " caused by " + t.getMessage());
       * (non-Javadoc)
       * @see com.sapportals.wcm.crt.component.IReconfigurable#reconfigure(com.sapportals.wcm.crt.configuration.IConfiguration)
      public void reconfigure(IConfiguration config) throws ConfigurationException {
        stateHandler.preReconfigure();
        try {
          parseConfig(config);
        } catch (ConfigurationException ex) {
          stateHandler.postReconfigure(ex);
          throw ex;
        this.config = config;
        stateHandler.postReconfigure();
       * (non-Javadoc)
       * @see com.sapportals.wcm.repository.service.AbstractRepositoryService#startUpImpl(java.util.Collection)
      protected void startUpImpl(Collection repositoryManagers) throws ConfigurationException, StartupException {
         _LOGGER.info(_TYPE + ": parsing config...");
        parseConfig(config);
         _LOGGER.info(_TYPE + ": done parsing config.");
        try {
              _LOGGER.info(_TYPE + ": startUpImpl(): iterating repository managers: " + repositoryManagers.size());
          Iterator itRepMan = repositoryManagers.iterator();
          while (itRepMan.hasNext()) {
            IRepositoryManager repMan = (IRepositoryManager) itRepMan.next();
            registerMeFor(repMan);
              _LOGGER.info(_TYPE + ": registered for repository manager: " + repMan.getID());
          _LOGGER.info(_TYPE + ": startup completed");
          registeredRepositoryManagers = repositoryManagers;
        } catch (WcmException e) {
          _LOGGER.severe(e, _TYPE + ": error during startup");
          throw new StartupException(e.getMessage(), e);
       * (non-Javadoc)
       * @see com.sapportals.wcm.repository.service.AbstractRepositoryService#shutDownImpl()
      protected void shutDownImpl() {
         try {
              _LOGGER.info(_TYPE + ": shutDownImpl(): iterating repository managers: " + registeredRepositoryManagers.size());
           Iterator itRepMan = registeredRepositoryManagers.iterator();
           while (itRepMan.hasNext()) {
              IRepositoryManager repMan = (IRepositoryManager) itRepMan.next();
              unregisterMeFrom(repMan);
              _LOGGER.info(_TYPE + ": unregistered from repository manager: " + repMan.getID());
           _LOGGER.info(_TYPE + ": shutdown completed");
         } catch (WcmException e) {
           _LOGGER.severe(e, _TYPE + ": error during shutdown");
        _LOGGER.info(_TYPE + ": stopped");
       * (non-Javadoc)
       * @see com.sapportals.wcm.repository.service.AbstractRepositoryService#addRepositoryAssignment(com.sapportals.wcm.repository.manager.IRepositoryManager)
      protected void addRepositoryAssignment(IRepositoryManager mgr) throws ServiceNotAvailableException {
        try {
          registerMeFor(mgr);
        } catch (WcmException e) {
          throw new ServiceNotAvailableException("Cannot register repository service " + _TYPE + " caused by: " + e.getMessage());
       * (non-Javadoc)
       * @see com.sapportals.wcm.repository.service.AbstractRepositoryService#removeRepositoryAssignment(com.sapportals.wcm.repository.manager.IRepositoryManager)
      protected void removeRepositoryAssignment(IRepositoryManager mgr) throws WcmException {
        unregisterMeFrom(mgr);
        _LOGGER.info(_TYPE + ": removed registration from repository manager: " + mgr.getID());
       * Register this repository service for the specified repository manager.
       * @param mgr The repository manager.
       * @throws WcmException When the service cannot be registered.
      private void registerMeFor(IRepositoryManager mgr) throws WcmException {
        // register for all events
        mgr.getEventBroker().register(this, ResourceEvent.CREATE_CHILD_TEMPLATE, IEventBroker.PRIO_MIN, true);
        mgr.getEventBroker().register(this, ResourceEvent.SET_TEMPLATE, IEventBroker.PRIO_MIN, true);
        mgr.getEventBroker().register(this, ResourceEvent.COPY_TEMPLATE, IEventBroker.PRIO_MIN, true);
        mgr.getEventBroker().register(this, ResourceEvent.MOVE_TEMPLATE, IEventBroker.PRIO_MIN, true);
        mgr.getEventBroker().register(this, ResourceEvent.RENAME_TEMPLATE, IEventBroker.PRIO_MIN, true);
        mgr.getEventBroker().register(this, ResourceEvent.DELETE_TEMPLATE, IEventBroker.PRIO_MIN, true);
       * Unregister this repository service from the specified repository manager.
       * @param mgr The repository manager.
       * @throws WcmException When the service cannot be unregistered.
      private void unregisterMeFrom(IRepositoryManager mgr) throws WcmException {
        // unregister all events
        mgr.getEventBroker().unregister(this, ResourceEvent.CREATE_CHILD_TEMPLATE);
        mgr.getEventBroker().unregister(this, ResourceEvent.SET_TEMPLATE);
        mgr.getEventBroker().unregister(this, ResourceEvent.COPY_TEMPLATE);
        mgr.getEventBroker().unregister(this, ResourceEvent.MOVE_TEMPLATE);
        mgr.getEventBroker().unregister(this, ResourceEvent.RENAME_TEMPLATE);
        mgr.getEventBroker().unregister(this, ResourceEvent.DELETE_TEMPLATE);
       * Parse the configuration object and extract the desired attributes.
       * @param config The configuration object.
       * @throws ConfigurationException
      private void parseConfig(IConfiguration config) throws ConfigurationException {
        String tmp = null;
        //     KM service user
        _kmUser = config.getAttribute(CONFIG_KMUSER);
        // news directory     
        tmp = config.getAttribute(CONFIG_KMNEWSDIR);
        if ((tmp == null) || (tmp.length() < 1))
          throw new ConfigurationException("Attribute " + CONFIG_KMXXXDIR + " must not be empty");
        else
          _kmNewsDir = tmp;
        // destination directory
        tmp = config.getAttribute(CONFIG_KMDESTDIR);
        if ((tmp == null) || (tmp.length() < 1))
          throw new ConfigurationException("Attribute " + CONFIG_KMDESTDIR + " must not be empty");
        else
          _kmDestDir = tmp;
        // destination file
        tmp = config.getAttribute(CONFIG_KMDESTFILE);
        if ((tmp == null) || (tmp.length() < 1))
          throw new ConfigurationException("Attribute " + CONFIG_KMDESTFILE + " must not be empty");
        else
          _kmDestFile = tmp;
        // article count
        tmp = config.getAttribute(CONFIG_ARTICLECOUNT);
        try {
          _articleCount = Integer.parseInt(tmp);
        } catch (NumberFormatException e) {
          _articleCount = 0;
          throw new ConfigurationException("Attribute " + CONFIG_ARTICLECOUNT + " must be a valid number");
        // languages
        tmp = config.getAttribute(CONFIG_LANGUAGES);
        if ((tmp == null) || (tmp.length() < 1))
          throw new ConfigurationException("Attribute " + CONFIG_LANGUAGES + " must not be empty");
        else {
          StringTokenizer st = new StringTokenizer(tmp, ",");
          _languages = new String[st.countTokens()];
          int i = 0;
          while (st.hasMoreTokens()) {
            _languages[i++] = st.nextToken();
         _LOGGER.info(_TYPE + ": configuration is _kmUser=" + _kmUser);
         _LOGGER.info(_TYPE + ": _kmNewsDir=" + _kmNewsDir);
         _LOGGER.info(_TYPE + ": _kmDestDir=" + _kmDestDir);
         _LOGGER.info(_TYPE + ": _kmDestFile=" + _kmDestFile);
         _LOGGER.info(_TYPE + ": _articleCount=" + _articleCount);
    This code registeres certain event handlers in the KM, on which the received-method is called. Depending on the event type you may start some processing like creating notifications.
    Many links about implementing repository services can be found here: https://www.sdn.sap.com/irj/sdn/thread?threadID=45636.
    Cheers,
      Jürgen

  • Subscribe and Notification via email

    We would like to use to subscribe mechanism in Oracle Portal. Instead of displaying the new items in a portlet, we wish to notifiy daily via email.
    Has somebody done something similar and can provide the source code?
    regards, André

    Hi, André
    We have the same case, but I have no solution for the moment.
    I think I'll use a triger on the table portal.wwv_things, but it will be difficult to put a filter on the right items.
    Best Regards
    Estelle

  • Location and notification issues.

    Location and notification services have become unstable since updating iPAD 2 to iOS 5.  They seem to just go away for email and apps and then start working intermittently.  I don't know if it has anything to do with weak wifi after updating or what but never had this happen so often before iOS 5.

    Well, before beginning a hard reset, I would love someone to be able to answer me if these are genuine issues introduced with the new software or something gone wrong. I should be able to get an answer on the location issue at bare minimum. Did this update change how location reporting works? It seems the location button in the notification panel no longer simply toggles GPS like it used to but somehow turns on/off all location reporting for the entire device. Thus just tapping on it to turn it on pops up the "Location Consent Agreement" page (every time by the way...you would think it would remember my preference) and forces me to go to the Location settings page to set my desired location settings (high accuracy GPS or low power mobile network approximation). If at any point I turn this off, all location reporting is disabled and the phone thinks I'm in another state. Thus I either have to keep the high accuracy (but battery killing) GPS on all the time which is even worse since I can't get a GPS signal at my work locaion, or I have to enter the Location settings page and change my location mode to GPS every time I want to navigate or find a more accurate location on a map (such as searching for a local business).
    You should be able to answer me that question.

  • Human Task & Notification Services

    Hi! i have a little question about Human Task and Notification Services.
    I have a Human Task with an outcome OK/CANCEL actions, reading the 10.1.3 Dev Guide chapter 15 about notification services, i found an excellent feature i want to use, in the task definition if i mark the "make email messages actionables" checkbox, the user assignee to the task will receive an email with the two outcoume options of the task, the OK/CANCEL already defined, i need to change the wf_config.xml to define <actionableEmailAccountName> tag to configure this functionality, but there is no documentation about how to configure this file, and checking the checkbox there is no changes on the mail message sent to the user, checking or not the option i always get the same email with two attachments, one with a link to the worklist and another one with the payload of the task.
    How can i configure the mail notification to enable the links to my outcome actions?
    any help, advice and guide is welcome!!!
    best regards and blesses!

    Hi Ravikumar! thanks for the reply.
    the email account configured in both files are functional, these are my pop/smtp mail accounts, and the checkbox is marked, but still not workling, i´m still receiving a mail with two attachments, one with the generic message and the other with the payload.
    these are my conf files:
    ns_email.xml
    <EmailAccounts xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"
    EmailMimeCharset=""
    NotificationMode="EMAIL">
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>TEST MAIL</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>mail.cantv.net</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>pop.cantv.net</Server>
    <Port>110</Port>
    <Protocol>pop3</Protocol>
    <UserName>develc014</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">*********</Password>
    <UseSSL>false</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    wf_config.xml
    <workflowConfigurations
    xmlns="http://xmlns.oracle.com/pcbpel/humanworkflow/configurations"
    xmlns:user="http://xmlns.oracle.com/bpel/workflow/userMetadata">
    <taskAutoReleaseConfigurations>
    <taskAutoRelease priority="1" default="P1D" percentageOfExpiration="30"/>
    <taskAutoRelease priority="2" default="P2D" percentageOfExpiration="40"/>
    <taskAutoRelease priority="3" default="P3D" percentageOfExpiration="50"/>
    <taskAutoRelease priority="4" default="P4D" percentageOfExpiration="60"/>
    <taskAutoRelease priority="5" default="P5D" percentageOfExpiration="70"/>
    </taskAutoReleaseConfigurations>
    <worklistApplicationURL>http://bpeldev.SRVBPEL.COM:80/integration/worklistapp/TaskDetails?taskId=PC_HW_TASK_ID_TAG</worklistApplicationURL>
    <actionableEmailAccountName>[email protected]</actionableEmailAccountName>
    <pushbackAssignee>INITIAL_ASSIGNEES</pushbackAssignee>
    <assigneeDelimiter><![CDATA[,]]></assigneeDelimiter>
    <shortHistoryActions>
    <action>ACQUIRE</action>
    <action>INFO_REQUEST</action>
    <action>INFO_SUBMIT</action>
    <action>RELEASE</action>
    </shortHistoryActions>
    <workflowServiceSessionTimeoutInMinutes>60</workflowServiceSessionTimeoutInMinutes>
    <user:ruleRepositoryInfo>
    <user:ruleEngine>ORACLE</user:ruleEngine>
    <user:repositoryLocation>WFRepository</user:repositoryLocation>
    <user:dictionaryName>WFDictionary</user:dictionaryName>
    <user:reposProperty name="reposType">jar</user:reposProperty>
    </user:ruleRepositoryInfo>
    <property name="worklist.redirectpage" value="TaskDetails" />
    <property name="worklist.loginpage" value="Login.jsp" />
    <property name="worklist.errorpage" value="Error.jsp" />
    </workflowConfigurations>
    i can not found the chapter/sections you mention in the post, in dev guide the chapter 15 doesnt have a 79 section! there is an image with this number i saw it yesterday reading the guide, and i dont know where is the admin guide, in the documentation library there is not an admin guide for bpel, at least i dont see it!!!
    thanks again for the reply, hope you can help me with this...
    best regards and blesses!

  • Configuring Email and Notifications in SCSM 2012 R2

    Hi all,
    There appears to be three places to configure email in Service Manager 2012:
    - Administration > Settings > Incident Settings > Incoming email
    - Administration > Notifications > Channels > Email notification
    - Administration > Connectors > Exchange Connector
    Could someone provide a quick rundown on what each of these pieces is designed to do, and why they are separated? Perhaps some are even legacy, or shouldn't really be used at all.
    Any insights are much appreciated.
    Thanks,
    Joe.

    Yes this is by design, You can't provides access rights on field levels in SCSM. You may use:
    1. read-Only Operator: Read-Only Operators have read-only access to work items in their queue scope and to configuration items that are in their group scope.
    2. Incident-Resolvers: Incident Resolvers can edit and create incidents, problems, and manual activities that are in their queue scope. Incident Resolvers also have read-only access to other work items such as change requests that are in their queue scope
    and to configuration items that are in their group scope.
    3. Advanced-Operators: Advanced Operators can create or edit any work items that are in their queue scope and any configuration items that are in their group scope. They can also create, edit, and delete the announcements that are displayed on the Service
    Manager Self-Service portal.
    Any custom Role will inherit the permission basics from the built-in roles.
    Regards
    Antoine AL Ibry

  • Invoking an EMail Notification service from another BPEL process(Service)

    Hi Everyone,
    I have a scenario, where i need to call my email notification service in to another bpel process(for FTPPut). Now i tried to use the email service in the FTP Put process, in the failure condition, the instance is in "Running" state forever. If i tried to run the email service individually its working fine. And if i observe the Audit Trail, i found the process went up to the client of the email service and then onwards its not able to initiate the email activity.
    I guess the way i provide the inputs,(to, subject and body) is making something difficult for the service to complete. I am sending the body and the subject inputs from the FTP put process and giving the to variable as default.
    As my email service is an one way operation, may be due to that even after I wait for long time the instance of the FTP process says running(in running) otherwise it would have thrown an timeout exception or something...
    Can any one shed your thoughts around this scenario...
    Thanks in advance..

    It really comes down to the proxy service on the OSB. Is it invoked by a WSDL? If so you should be able to take the endpoint defined in the proxy service messaging configuration and use that URL. You also need to use the sb transport type.
    Can you also post the blog you used, then we can put it into context.
    also have a look at this link.
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/bpelpmtransport/transport.html#wp1116011
    cheers
    James

  • Send email using notification service

    Hi,
    I need to send mail using notification service. I have configured the <SOA_HOME>/bpel/system/services/config/ns_emails.xmlns_emails.xml as follows:
    <EmailAccounts NotificationMode="NONE" xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>Oracle BPM</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>myhostname</SMTPHost>
    <SMTPPort>25</SMTPPort>
    <AuthenticationRequired>false</AuthenticationRequired>
    <UserName></UserName>
    <Password ns0:encrypted="true" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService"></Password>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>yourdomain.com</Server>
    <Port>110</Port>
    <Protocol>pop3</Protocol>
    <UserName>accountId</UserName>
    <Password ns0:encrypted="true" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">lWlanww1urAqnYt1uPZFjw==</Password>
    <UseSSL/>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    </EmailAccounts>
    Only this ns_emails.xml file has been changed. And I am using the email activity in BPEL code to send mail. But, mail is not being sent.
    Do I need to make any further changes in any other files in the server?

    you need to replace the NONE value with EMAIL
    see :
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28987/phase12.htm
    13.2.1 Configuring Your Company E-Mail Environment

  • HT4899 spam email "notification system" or "notification service"

    I have been receiving lots of emails with the heading "notification system" or "notification service".  They are not being caught by the iCloud spam filter despite my not opening and moving to junk.  Any idea where these are coming from or how to stop?

    I have been getting a number of these as well.   The last one came in with a return address of [email protected]  The subject was "4 service messages has been sent to you"
    The messages have a very Facebook like look to them.

  • BPEL email Notification Service - Can it support protocol other than pop3

    Hi,
    I wanted to confirm can BPEL email Notification Service support protocol for email other than pop3, such as mapi
    Thanks,
    Sachin Sutar

    Currently only pop3 and imap are supported for incoming mail and SMTP for sending email.

  • 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

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

  • HT201342 My ID for apple is my email address with earthlink. Will I need to change my ID to my iCloud address. I want to be able to continue use my earthlink ID. I have had my earthlink email since 1997 and my friend and various services know and use my a

    I use my earthlink address as my apple ID. Will I have to change it if I add my iCloud email
    Account and send email from it. I intend to keep my earthlink account and email
    Address as I have had it since 1997 and my friends and several services I use know
    me by my earthlink handle. Will that be a problem?

    I'm not sure if I understand your question, but if you create a new iCloud account with a different ID your existing ID isn't effected by this.  It will continue to work as it does now, you will just have an additional Apple ID.  If you have an earthlink email address you can continue to use it as a separate account, and it can continue to be your default account if you set it to be (in Settings>Mail,Contacts,Calendars>Default Account).  If I'm misunderstanding your question, please explain further.

Maybe you are looking for

  • How do I install JFE plugin 1.4x or higher?

    To provide an electronic signature, the plug-in is required for FireFox 2 or 3. I have FireFox 3.0.11. Could the plugin installation issue be sidestepped by going to Beta FireFox 4? Please advise. Thank you.

  • Memory leak in solaris 9

    Hi , I have Oracle9i database running on Solaris 9. After every 6 days my solaris box went out of space although its a test box and there is no activity on the system. Why the hell it takes all the ram and swap space when there is no activity on the

  • Adobe Products Install Sheild crash NFORCE

    Well after a full day of troubleshooting i've discovered that my Adobe products will not install correctly with Nvidia Nforce drivers. Premiere Pro install sheild crashes immediatly. Anyone else have this problem?

  • Not able to connect Nokia 5233 with laptop using b...

    Hi Experts, I purchased Nokia 5233 couple of months back. Since then i am facing problem in connecting the phone with any laptop using bluetooth. It gets connected to other phones via bluetooth very easily, but doenot get connected with any laptop. W

  • Cannot drag or move object into mainstoryboard in Xcode 6

    Today when I was using Xcode 6, I found that I cannot drag or move any object into my mainstory board. Also, if I click label, there will be a label stick to the center left and I cannot move it. I don't know why, Please help me!