Several SAP Connect nodes for different email schedules

// Internal code: 20081013-TWAN //
Is it possible to define several SAP Connect nodes for email? My client has several application (in BW) that require the sending of email but on a different schedule per application.
For example:
- Application 1 requires email once per week AFTER manual checks of the email queue.
- Application 2 requires automatic email sending every 15 minutes.
I would like to know if it is possible and how it can be done.

Hi,
If you speak about SMTP node from transaction SCOT, it is not possible to define several SMTP nodes in one SAP system.
You'll have to find a way with 2 different jobs.
Maybe you will need to write a specific abap program based on RSCONN01 which would only push the specific mails from one application ?
Regards,
Olivier

Similar Messages

  • What is SAP name space for different objects.

    Hi Guys,
    Kindly let me know the SAP name spaces for different objects.
    Thanks

    hi,
    Naming Conventions in ABAP Objects 
    Global classes and interfaces that you create in the Class Builder are stored in the class library and administered by the R/3 Repository: they therefore have the same namespace as all other Repository objects (database tables, structures, data elements, and so on).
    It is therefore necessary to have naming conventions for object types and their components and to use them uniformly within program development.
    The following naming convention has been conceived for use within the SAP namespace:
    If you do not observe the naming conventions for object types (classes and interfaces), conflicts will occur when the system creates persistent classes, since it will be unable to generate the necessary co-classes.
    Namespace for Components
    A single namespace within a class is shared by:
    All components of the class itself (attributes, methods, events, constructors, interfaces, internal data types in the class, and aliases)
    All public and protected components of the superclasses of the class.
    Method implementation has a local namespace. The names of the local variables can obscure those of class components.
    Naming Convention
    The naming convention has been kept as general as possible to avoid adversely influencing the naming of objects.
    General Remarks
    When you choose names for development objects, you should:
    Use English names
    Use glossary terms when possible
    For example, CL_COMPANY_CODE instead of BUKRS
    In compound names, use the underscore character (_) as a separator. Since names are not case-sensitive, this is the only character that you can use to separate names.
    Example: CL_COMPANY_CODE, CL_GENERAL_LEDGER_ACCOUNT
    Names should describe the action, not the implementation of the action.
    Example: PRINT_RECTANGLE, not RECTANGLE_TO_SPOOL
    Conventions for Object Types
    Class and interface names in the class library belong to the same namespace as data elements, tables, structures, and types. They are maintained centrally in table TADIR.
    Class in the class library
    CL_<class name>
    The class name should be made up of singular nouns.
    CL_COMPANY_CODE, CL_GENERAL_LEDGER_ACCOUNT
    Interfaces in the class library
    IF_<interface name>
    The same naming convention applies to interfaces as to classes.
    IF_STATUS_MANAGEMANT, IF_CHECKER
    Local classes in programs
    (recommendation)
    LCL_<class name>
    The class name should be made up of singular nouns.
    LCL_TREE_MANAGEMENT
    Local interfaces in programs
    (recommendation)
    LIF_<interface name>
    The sane naming convention applies to interfaces as to classes.
    LIF_PRINTER
    Recommended naming conventions are not compulsory. However, if you use prefixes for these class and interface names, you should use those listed above.
    Conventions for Components
    Method name
    <method name>
    Method names should begin with a verb:
    GET_STATUS, CREATE_ORDER, DETERMINE_PRICE
    Events
    <event name>
    Event names should have the form
    <noun>_<participle>:
    BUTTON_PUSHED, COMPANY_CODE_CHANGED, BUSINESS_PARTNER_PRINTED
    Local type definitions within a class
    (recommendation)
    TY_<type name>
    TY_INTERNAL_TYPE, TY_TREE_LIST
    Data definitions (variables)
    <variable name>
    When you name variables within a class (CLASS-DATA or DATA), avoid using verbs at the beginning of the name (to avoid conflicts with method names).
    LINE_COUNT, MARK_PRINTED, MARK_CHANGED, STATUS
    Data definitions (constants)
    (recommendation)
    CO_<constant name>
    CO_MAX_LINE, CO_DEFAULT_STATUS, CO_DEFAULT_WIDTH, CO_MAX_ROWS
    Recommended naming conventions are not compulsory. However, if you use prefixes for these class and interface names, you should use those listed above..
    Concrete Method Descriptions
    Attribute access
    SET_<attribute name>, GET_<attribute name>
    Methods that access attributes of any kind should be prefaced with GET_ or SET_.
    GET_STATUS, SET_USE_COUNT
    Event handler methods
    ON_<event name>
    Methods that handle events should begin with ON, followed by the name of the event that they handle.
    ON_BUTTON_PUSHED, ON_BUSINESS_PARTNER_PRINTED
    Methods that perform type conversions
    AS_<new type>
    AS_STRING, AS_ISOCODE
    Methods that return a Boolean value
    These methods may not return any exceptions.
    Recommendation: Use SPACE and 'X' to represent false and true respectively.
    IS_<adjective>
    IS_OPEN, IS_EMPTY, IS_ACTIVE
    Check methods
    CHECK_<objective>
    CHECK_AUTHORIZATION, CHECK_PROCESS_DATE
    Local Conventions Within Methods
    For parameters
    The parameters are regarded from the point of view of the method that implements them:
    IMPORTING parameters
    IM_<parameter name>
    EXPORTING parameters
    EX_<parameter name>
    CHANGING parameters
    CH_<parameter name>
    RESULT
    RE_<result>
    Using prefixes is NOT compulsory. However, if you do use them, use those listed above.
    For exceptions
    The following table contains a series of possible exception names, that can also be used generically (for example, NOT_FOUND could also be used as DATE_NOT_FOUND)
    EXCEPTION
    Meaning
    ACTION_NOT_SUPPORTED
    The requested action or function code is not supported.
    CANCELLED
    If a method uses a dialog to find out what has to be dome (for example, a list of choices), and the user chooses "Cancel", you can set this exception.
    EXISTING
    A new object that you want to create already exists in the database.
    FAILED
    The method could not be executed because of the current environment. This exception is intended for cases where the method cannot be executed because of variable system circumstances.
    ..._FAILED
    Part of the method could not be completed because of the current environment. (OPEN_FAILED, CLOSE_FAILED, SELECTION_FAILED, AUTHORIZATION_FAILED)
    FOREIGN_LOCK
    Data is locked by another user.
    INCONSISTENT
    Object data in the database is inconsistent.
    ..._INCONSISTENT
    The component data for … of an object in the database is inconsistent.
    INVALID
    The object data entered is incorrect (for example, company code does not exist). Compare NOT_QUALIFIED.
    ..._INVALID
    The component data entered for an object is incorrect. Compare NOT_QUALIFIED.
    INTERNAL_ERROR
    Last resort. Only use this exception if you cannot be more precise about the nature of the error.
    NOT_AUTHORIZED
    The user does not have the required authorization.
    NOT_CUSTOMIZED
    The object requested is not correctly customized.
    ..._NOT_CUSTOMIZED
    The component … of the requested object is not correctly customized.
    NOT_FOUND
    Unable to find the requested object.
    ..._NOT_FOUND
    Unable to find component … of the requested object.
    NOT_QUALIFIED
    The combination of input parameters is insufficient to run the method. Compare INVALID.
    ..._NOT_QUALIFIED
    One parameter of the method is not qualified.
    NUMBER_ERROR
    Error assigning a number.
    SYSTEM_ERROR
    This exception is set if the Basis system returns an unexpected error message.
    regards,
    sudheer.

  • Can you have more than one signature on your ipad  for different email accounts

    Can you have more than one signature on your ipad  for different email accounts.

    No, only one, I'm afraid.

  • Diffent signatures for different email accounts

    I have not been able to find a way to set up different signatures for different email accounts when using the mail program on the iPhone or iPad.  Is there any type of app that allows you do do that?
    Thanks.

    Still no fix with this with the newist OS?

  • Different ring tones for different email accounts

    Is it possible to set different ring tone for different email accounts?

    No - but you can change the sound for the email the notification in the settings .... Settings>General>Sounds>New Mail> and select another sound from the list, but that will use the same sound for all of your email accounts.

  • Different Notification for different email accounts

    On my old blackberry I was able to set up different number of vibration for my different email account so I would know right away which account the email was on.  Is it possible to do the same on the Z10?
    Solved!
    Go to Solution.

    Hey hinjeyan,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    Currently you can not setup notifications for different email accounts on the BlackBerry Z10.  There is no estimated time when this feature will be back.
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Different rings for different email accounts

    After reading the manual and playing with the iphone settings, I'm assuming this is a no, but I was wondering if the iPhone can handle "New Mail" notifications differently for different email accounts? I have a high use personal account that I'd like instant notifications and another that I check occassionally.

    You read correctly. There is no way at present to designate specific ringers for email accounts. Its one generic sound.
    Suggest the feature here:
    http://www.apple.comfeedback/iphone.html

  • Different signatures for different email accounts?

    Is it possible to use different signatures for different email accounts?
    thanks.

    Thank you Michael S. Indeed that solved the problem - but after 2 years of fighting this and a zillion other inefficiencies, I made the switch to Android. Don't get me wrong - I am NOT an Apple hater, but the lack of customization, lack of features, the inability as an example to attach a file to an Email (when replying or composing an Email) which is what 100% (not 99%) of what business people need, or the access to the file system, has made me run away. And now we are hearing all the problems with iOS 6 that are surfacing. WOW. Not having a single issue with Android. Also switched to the Samsung Galaxy S3 on my phone. What a relief. An extra 64 Meg in SD Card, Removable battery that allows me in less than 1 minute to get another 16 hours (awesome when I am travelling), all the gestures, my only regret is that I did not make that switch earlier. Just my opinion. Still love my iTouch though.,

  • How to assign different tones for different email ...

    Hi.
    I have a question, please.
    Because I receive too many emails for work, I'm trying to "differentiate" them, assigning different tones or alerts for different email senders.
    So I can understand when I have to read immediately an email, or it can be delayed.
    I have never found any solutions in the native application (I think there is not); has anyone any idea or third-part software solutions?
    thank you in advance.
    G

    I supposed too. THat's why I'm thinking to change for Blackberry, after many Nokia equipments. I'm not so happy to change, but I do not understand why Nokia remained so late from competitors.
    Ok for OS, but they have not focused on business terminals after E71 (my phone), and so on.
    I'm so sorry.
    G

  • HT2500 How do I set up separate and different mail signatures for different email accounts?

    How do I set up separate and different mail signatures for different email accounts?

    Hi Tom,
    In Mail>Preferences>Signatures, highlight the All Signatures icon on the left, drag the sigs you want to he Account on the left...

  • How can i set up different rings/tones for incoming emails for different email accounts?

    HI, I would like to be able to hear different rings/tones for emails coming from different email accounts. Eg, One sound for incoming email from gmail and another sound for incoming e-mail from Yahoo.
    Thanks!

    " Is there a possibility to set up different ringtones for each of the emails separately? "
    No.  Maybe with ios 6 this fall.
    "Also would there also be an option for high priority emails to have a different ringtone as well?"
    No.  Maybe with ios 6 this fall.

  • Change notifications for different email accounts.

    Is there a way to change notification settings different for differing accounts. I want my work to notify me for every emaik, but want to manually check my aol mail.
    My Droid 1 would let me change those settings, but motoblur sucks so bad that it won't let me make those changes.

    If this is a capability of your phone you can take the following steps.  Hope this helps!
    From the home screen, touch the applications tab (located at the bottom of the display).
    Touch Gmail.
    Touch Menu.
    Touch More.
    Touch Settings.
    From the Notifcation settings section, touch Email Notifications.
    Enabled when a green checkmark is present.

  • Different sounds for different email accounts ?

    Could you please add a feature to the iphone4 OS where you can customize the ringtone, or sound, for different mail boxes.
    I have numerous email accounts attached to my iphone4, and some email accounts are much more important than others.
    1) Do the developers intend on introducing different ring tones or sounds for different events ?
    2) Is this even possible to do?
    3) What about different ring tones for different people?
    The blackberry did a wonderful job at this, and honestly I'm really not liking that you cant customize the sounds.

    Please add a feature where you can change the notification sound/tone of incomming mail dependent on which mail account recieves email.
    I was honestly shocked that this feature wasn't already implemented, BlackBerry has had it for many years now. The reason I'm requesting this is because I work as a volunteer emergency rescue technician (volunteer firefighter) and part of the notification process for an emergency is that we get pages which can be sent to a pager & an email account. Now my problem is that I have numerous email accounts programmed into my iphone 4, and I get emails all day long, day or night. I've had to disable the sounds because it wakes me up all the time.
    If there were customizable notifications (like customizable ringtones) per email account, then at least I could be waken up at night for an emergency (which I should be) as opposed to some junk mail. I'd love to be able to get rid of my pager again and reduce the hardware I carry around.
    Thank you for your time,
    I look forward to hearing news about this

  • Use different names for different email addresses in mail

    Is it possible to somehow override the name that is in the 'full name' field under account settings in mail.app? I send mail from multiple different email addresses all through one enabled account, which is a mobile me account. I use gmail's outgoing smtp server to accomplish this.
    I don't want every email address that I send from to say my full name, but there is not an option to specify different names since it is all one account. Using Mail v3.6
    Any ideas?

    canes1086 wrote:
    Thanks VK. Don't really want to do this though because if I have one mobileme account that multiple accounts forward to, I get push to my iphone for all. Other ideas?
    no. I don't think there is any other way to do it with Mail.

  • App updates asking for different email addresses

    This is so annoying, certain Apps that require updates are asking for further security details. I have now used two different email addresses and now another App needs updating and this also requires further security questions, the problem is each this happens it won't accept the previous email address
    It appears each time this issue arises, you need to have a different email address. Can anyone help, it's driving me mad

    My husband and I both have iphone 3gs. iTunes on one home PC, there are two apps that he cant update cuz it asks for my password on his phone w/ my email already filled in. On iTunes I clicked on the apps and then FILE>Get info and I see that it says I was the original person to get app. But it never did this until maybe the last 2 updates he did for the phone. He thinks its all my fault of coarse. Can someone please help?
    p.s. If he tries to download a new app, there's no problem.

Maybe you are looking for

  • Key functions are not working in oracle11g forms

    I have migrated a oracle 10g form to oracle 11g form 1.Key function such as down arrow,up-arrow is not working in oracle11g forms though key-down etc trigger have been written. 2.Tree node function,i mean when i try to call form from a child node ,it

  • Learning Solution - TOC Placement in CP

    Hi, In using the LSO Authoring Environment, we're trying to find a way to position the Table of Contents on the left side of the Content Player, instead of as a pop-up. In its default mode, the pop-up TOC is a bit clunky and not that convenient for n

  • Auth Objects on ME23N

    Hi Guys, I'm trying to find the authorisation objects that control the GRIR information on the Display PO's tcode - ME23N. I have to seperate roles with ME23N tcode - one shows the GRIR info on the details section and the other not. Just trying to un

  • Airport express and a bose system stopped streaming suddenly.

    I have been using airplay on my airport express and a bose system for 6 months. It works flawlessly. I was streaming Pandora to the airport express and suddenly it went off. The icons are present on all of my devices. The bose stopped working also.

  • Addblock Pluse must be disabled/enabled each time firefox starts-won't start automatically

    Each time I start firefox I have to disable/enable the addblock plus add on. In the extensions it indicates that it is enabled, but it is inoperative until I disable and then enable it again.