Addeing EMail in the Portal

Hi
i am working on BW 3.0B , i am using 3.X version for WAD , right now i am having issue on in portal i need to add Email setting , is it possible in BW 3.0B
if Possible please let me know how to do it

Hi,
have you defined the smtp server in
=>SYSTEMADMINISTRATION=>SYSTEMCONFIGURATION=>CONFIGURING UME => NOTIFICATION by EMAIL
Please take a look at http://help.sap.com/nw04
Best Regards,
Olaf Reiss

Similar Messages

  • Send an email from the portal

    How do I send an email from the portal?
    Is there support for the IMAP protocol?
    Thank you for any and all help,
    Geoffrey

    WLS has support for the JavaMail standard. That's SMTP on the send side and
    IMAP (or others like POP3) on the receive side. Portal does not have the end
    all, be all IMAP client nor does it have a full featured SMTP client to compose
    mail but the sample portlets have a start.
    Geoffrey wrote:
    How do I send an email from the portal?
    Is there support for the IMAP protocol?
    scott dunbar
    bea systems, inc.
    boulder, co, usa

  • How I can send emails using the client object model?

    I have tried this, but I always get an exception with error message "A recipient must be specified.":
    string webUrl = "http://sharepoint.example.com/";
    EmailProperties properties = new EmailProperties();
    properties.To = new string[] { "[email protected]" };
    properties.Subject = "Test subject";
    properties.Body = "Test body";
    ClientContext context = new ClientContext(webUrl);
    Utility.SendEmail(context, properties);
    context.ExecuteQuery(); // ServerException thrown here
    context.Dispose();
    Server stack trace:
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.SharePoint.Utilities.SPUtility.SendEmail_Client(EmailProperties properties)
    at Microsoft.SharePoint.ServerStub.Utilities.SPUtilityServerStub.InvokeStaticMethod(String methodName, XmlNodeList xmlargs, ProxyContext proxyContext, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ServerStub.InvokeStaticMethodWithMonitoredScope(String methodName, XmlNodeList args, ProxyContext proxyContext, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.InvokeStaticMethod(String typeId, String methodName, XmlNodeList xmlargs, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessStaticMethod(XmlElement xe)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessOne(XmlElement xe)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessStatements(XmlNode xe)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.Process()
    msdn link: http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.utilities.utility.sendemail.aspx

    hi
    if you will check the code of SendEmail_Client(EmailProperties properties), you will find that it may only send emails to internal users. May be it was made intentionally in order to prevent spamming from client code. So let's see:
    internal static void SendEmail_Client(EmailProperties properties)
    if (properties.To.Count == 0)
    throw new SPException(SPResource.GetString(web.LanguageCulture, "SendEmailInvalidRecipients", new object[0]));
    AddressReader func = null;
    using (MailMessage mm = new MailMessage())
    func = delegate (MailAddress a) {
    mm.To.Add(a);
    ResolveAddressesForEmail(web, properties.To, func);
    new SmtpClient(SPAdministrationWebApplication.Local.OutboundMailServiceInstance.Server.Address).Send(mm);
    I.e. it adds recipient in ResolveAddressesForEmail() method. Now let's check this method:
    private static void ResolveAddressesForEmail(SPWeb web, IEnumerable<string> addresses, AddressReader func)
    if (addresses != null)
    foreach (string str in addresses)
    if (string.IsNullOrEmpty(str))
    continue;
    SPPrincipalInfo info = ResolvePrincipal(web, str, SPPrincipalType.All, SPPrincipalSource.All, null, false);
    if ((info != null) && (info.PrincipalId > 0))
    if (!string.IsNullOrEmpty(info.Email))
    try
    func(new MailAddress(info.Email, (info.DisplayName != null) ? info.DisplayName : "", Encoding.UTF8));
    catch (FormatException)
    continue;
    if ((string.IsNullOrEmpty(info.Email) && info.IsSharePointGroup) && web.DoesUserHavePermissions(SPBasePermissions.BrowseUserInfo))
    SPGroup byNameNoThrow = web.SiteGroups.GetByNameNoThrow(info.LoginName);
    if (byNameNoThrow == null)
    continue;
    foreach (SPUser user in byNameNoThrow.Users)
    if (!string.IsNullOrEmpty(user.Email))
    try
    func(new MailAddress(user.Email, (user.Name != null) ? user.Name : "", Encoding.UTF8));
    continue;
    catch (FormatException)
    continue;
    continue;
    I.e. at first it tries to resolve user using ResolvePrincipal() method. If it is not resolved (info == null) email is not sent. But if it is - it first checks that email is not empty. If it is not - it adds email to the MailMessage.To recipients list. If
    it is empty it checks whether the principal info represents Sharepoint group. If yes - it will send email to each member of the group.
    So it may be so that you try to send email to external user (which is not supported according to the code above), or resolved principal doesn't have email specified.
    Blog - http://sadomovalex.blogspot.com
    CAML via C# - http://camlex.codeplex.com

  • User self-registration in the portal

    I am developing an Intranet site for a very large organization using OPortal 3.0. Since is impossible to manage personally every request to add users to the portal (over 3000 potential users) I need to provide a self-registration procedure so users can register themselves to the portal with certain basic privileges.
    Does anybody knows how can I implement such a procedure..?
    Fernando

    Hello Fernado,
    Look topic name "Using API's for Single Sign On" at this forum.There is an answer to your question.Also you can:
    'Create a procedure which does insertion to the tables portal30.wwsec_person$ and portal30_sso.wwsec_person$'.My procedure is:
    CREATE OR REPLACE PROCEDURE PORTAL30_SSO.CREATE_USER
    (username IN VARCHAR2)
    as
    begin
    insert into portal30.wwsec_person$
    (user_name,db_user,created_by_dbuser,created_by_user,password,sso_user_type)values (upper username), 'PORTAL30_PUBLIC','PORTAL30_PUBLIC','PORTAL30','guest','USER');
    insert into portal30_sso.wwsec_person$
    (user_name,db_user,created_by_dbuser,created_by_user,password,sso_user_type) values (upper(username),'PORTAL30_SSO_PUBLIC','PORTAL30_SSO_PUBLIC','PORTAL30','hy?<K2K0~4FA810F520ACB67945FFFA7F03925269','USER');
    end;
    After that create a form to this procedure and publish as portlet.Now put this portlet your 'Welcome' window.Here they will have default password 'guest'.Also you can take another parameters like name,lastname,address,etc.
    Don't forget to give public privilege to this procedure.

  • Why can't I find a keyboard to add emails to my contacts?

    I cannot find a keyboard to add email addresses to my contacts, it only allows numbers...is anyone else having this problem?

    When you're editing a contact and click on the add email address the keyboard that pops up should already be slightly diff and have the @ symbol and other things like a .com button... etc...
    Do you have the right keyboard turned on in the keyboard settings?

  • I would like to set up my email on the apple tv as well as have my husband's email on there so we can view both sets of photos and videos - it is already set up in his name - how do i add my name so as to view my photo library from all of my devices?

    I would like to set up my email on the apple tv as well as have my husband's email on there so we can view both sets of photos and videos - it is already set up in his name - how do i add my name so as to view my photo library and songs from MY phone ?

    this is not a reply - i asked the question - still trying to learn how all this works - someone please HELP ME

  • I add my comcast email to the mail on a iMac running Maverick. It downloads all my emails from there. How do i get my email to delete of the the server

    I add my comcast email to the mail on a iMac running Maverick. It downloads all my emails from there. How do i get my email to delete of the the server

    Go to Mail Preferences>Accounts, click the '+' button below the list of accounts and insert the settings, username and password as instructed. Some account types can be set up automatically as soon as Mail knows the emails address (because the server settings are built in), in other cases you will have to get them from your ISP.

  • HT5312 I forgot my security question and my rescue email are the same as Apple ID so cannot reset my security question. Any advice on how to reset m security or add a rescue email ? Thanks

    I forgot my security question and my rescue email are the same as Apple ID so cannot reset my security question. Any advice on how to reset m security or add a rescue email ? Thanks

    If you don't have a rescue email address then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • How do I add mult emails in the same To: line field?

    Hello, I'm running Thunderbird 31.5.0. I was previously able to send multiple emails in a single To: line field, but now the text turns red and it won't allow me to add contacts from my address book after the 1st contact was added. I figured out after one address is added, you need to press enter key and it creates a second To: field row below the 1st one. This new change isn't ideal and quite cumbersome. How can I go back to the original settings where I can continue to add mult emails in a single line? Thanks!

    Red is just a stupid color who ever choose that should think again.
    You can add more on the same line with a comma (, ) between each address.
    If one entry in address-book has more than one address then you can put all in, they will be comma-separated.
    Warning don't put 2 commas after each other.
    "MoreFunctionsForAddressBook" can help you with "one entry-many addresses"

  • How do I add email address to a cell in a Numbers spreadsheet without the appearance automatically changing color and underlining? In Excel, I would add an apostrophe at the beginning which would keep this from happening.

    How do I add email addresses in a column without them automatically converting to another color with underscores. I want the text to remain text.

    Hi Sclaire,
    Numbers > Preferences > Auto correction.
    Uncheck the indicated checkbox.
    Preferences panel image is from Numbers 2.3.
    For future questions, please indicate the versions of Numbers and of OS X you are using, as answers will differe depending on this information.
    Regards,
    Barry
    Message was edited by: Barry (Corrected arrow position)

  • Regarding : How to add a user to portal group with the help of webdynpro .

    Hii ,
    I am working on an application in which with the help of an action( Button)  we r adding a user in Ztable in R/3 , as well as  group in portal.
    The user r successfully creating in Ztable but from portal side No user is assigned to Portal group.
    I need coding solution for " How to add a user to portal group with help of webdynpro"
    Any usefull link will also do.
    Pls anyone have any solution ??
    Thnks in advance.
    Rewards r waiting for u .

    Hi,
    Use UME api to add user to portal group.
    Using UME API:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40d562b7-1405-2a10-dfa3-b03148a9bd19
    Regards,
    Naga

  • Need to add a link to the masthead area of the Portal

    Hi
    I need to add a link to the masthead area of the portal. That link needs to be able to print the content of the current page.
    Ihave downloaded the com.sap.portal.navigation.masthead into the NWDS.
    Can anybody please let me know where exactly to modify the code.
    i am guessing i may need to use window.print() to print the page.
    Thanks
    Sharath
    Thanks
    Sharath

    Step 1: Adding new link in the masthead
    1. Rename the par file to your own namespace and import the PAR using eclipse
    2. To add your link - modify HeaderiView.jsp appropriately
    3. Build the PAR and export using Eclipse
    Step 2: Create an iView
    1. Content Administrator -> Portal Content -> Select the folder in which you need to create the masthead iView. Right click on the selected folder and "Select New From PAR" -> iView
    2. Select the PAR file name created by you in Step 1 a
    3. Choose "default" in Portal Component Selection
    4. Provide the properties for the iView and save
    Step 3: Modify Portal Masthead
    1. Add the iView created in Step 2 to the Framework Page of your application
    2. Remove the existing Masthead iView from the framework page and add iView created in Step 2 in the framework page.
    3. Note that the position should be the same where the previous masthead is removed.
    Logoff and logon with the user who is assigned the framework page - you should be able to see the new masthead with links
    Incase you are changing the default framework page and default masthead ensure that you have a backup so that you can revert.

  • How can I add a description to a photo so it will be emailed with the photo?

    How can I add a description to a photo that I am going to email so it will be emailed with the photo? For that matter how can I add a description to a photo that will stay with (or on?) the photo?

    Add your description as you normally would. Then export the photo using the File -> Export command. In the resulting dialogue you have a number of options. If you check the box at Titles and Descriptions then these wil be written to the IPTC metadata of the files, and available in any app that understands this metadata.
    Regards
    TD

  • Simple question .... how to add photos to the body of my EMAILS -Found 1000 results for How do I add photos to my emails for Thunderbird

    Simple question - How do I add photos to the body of my emails . But instead of the answer - Found 1000 results for How do I add photos to my emails for Thunderbird. There are answers that don't apply at all to the question in anyway. Why does it have to be so hard to get a simple answer to a simple question?
    Thunderbird is acting much like Microsoft, the every reason I dumping MS Live Mail.

    First of all, much help for Thunderbird refers to menus which may not be visible. It would help you and us if you have your menus and toolbars visible.
    http://chrisramsden.vfast.co.uk/13_Menus_in_Thunderbird.html
    So, open a write window. Enable its menu and toolbar(s).
    Now do you see an "Insert" option?
    If not, you may be set to compose in plain text, which does not support embedded images.
    '''[http://kb.mozillazine.org/Menu_differences_in_Windows,_Linux,_and_Mac Tools|Account Settings]|{select account}|Composition & Addressing''' and ensure "Compose messages in HTML format" is ticked. If it wasn't already ticked, go back to composing a message. Any better now?
    Once you have HTML composition mode going, you can use '''Insert|Image''' or various permutations of copy-and-paste and drag-and-drop into your message body.
    A manual, of sorts: http://en.flossmanuals.net/thunderbird/composing-messages/

  • VBA: How do I add a shortcut to an email into the body of an appointment

    Dear all,
    I want to write a macro for outlook that lets me do the following:
    1. Move a selected email to a specific folder (with selection box)
    2. create an appointment in a non default calendar with the same subject as the email
    3. Put a link into the appointment body that links to the email (similar to the option that Outlook gives you when you drag an email onto the calender: "Copy Here as Appointment with Shortcut")
    Unfortunately step 3 (creating the link to the email) can not be recreated unsing QuickSteps. Therefore I have to solve this with VBA.
    Here is the code I came up with so far:
    Sub Mail2Appt()
    ' Moves each of the selected items on the screen to a selected folder.
    Dim olApp As New Outlook.Application
    Dim olExp As Outlook.Explorer
    Dim olSel As Outlook.Selection
    Dim olNameSpace As Outlook.NameSpace
    Dim olDestFolder As Outlook.Folder
    Dim intItem As Integer
    Set olExp = olApp.ActiveExplorer
    Set olSel = olExp.Selection
    Set olNameSpace = olApp.GetNamespace("MAPI")
    '1. Handle the movement of the selected emails
    'Display form to pick destination Folder
    Set olDestFolder = olNameSpace.PickFolder
    'To do: folder type validation
    If TypeName(olDestFolder) <> "Nothing" Then
    'Debug.Print vbCr & " olDestFolder: " & olDestFolder
    Else
    'Debug.Print vbCr & "Cancel"
    Exit Sub
    End If
    'Move selection to new folder
    For intItem = 1 To olSel.Count
    olSel.Item(intItem).Move olDestFolder
    Next intItem
    '2. Create appointment in To-Do-Calendar
    Dim myCalItem As Outlook.AppointmentItem
    Dim myToDoCalendar As Outlook.Folder
    'get non-default calender
    Set myToDoCalendar = Session.GetDefaultFolder(olFolderCalendar).Parent.Folders("Aufgaben-Kalender")
    For intItem = 1 To olSel.Count
    Set myCalItem = myToDoCalendar.Items.Add(olAppointmentItem)
    myCalItem.Subject = olSel.Item(intItem).Subject
    myCalItem.Location = "Office"
    myCalItem.Duration = 30
    '3. Place link to email in appointment body
    myCalItem.Body = "Hello World" 'Link to Email must go here
    myCalItem.Display
    Next intItem
    End Sub
    It would be great if somebody could push me in the right direction.
    Cheers,
    Sascha

    To Edit the body you need to invoke the WordEditor Inspector. You can then program the body as if you were programming in Word itself e.g.
    Add these declarations
    Dim olInsp As Inspector
    Dim wdDoc As Object
    Dim oRng As Object
    Dim strLink As String
    Then substitute your own link
    With myCalItem
    .Subject = olSel.Item(intItem).Subject
    .Location = "Office"
    .Duration = 30
    '3. Place link to email in appointment body
    Set olInsp = .GetInspector
    Set wdDoc = olInsp.WordEditor
    Set oRng = wdDoc.Range(0, 0)
    .Display
    oRng.Text = "Hello World " 'Link to Email must go here
    oRng.collapse 0
    strLink = "https://www.fedex.com/fedextrack/?tracknumbers="
    wdDoc.Hyperlinks.Add Anchor:=oRng, _
    Address:=strLink, _
    SubAddress:="", _
    ScreenTip:="", _
    TextToDisplay:="Fedex Tracking Site"
    End With
    Graham Mayor - Word MVP
    www.gmayor.com

Maybe you are looking for

  • Please help me with my Nano P

    I recently purchased a Zen Nano Plus and am having difficulty getting my laptop to recognize it. When I connect it via the USB it takes an ungodly long time for it to appear in my Windows Explorer (although I get notification in the lower right of my

  • IPod Touch Mail crashes after update 3.1.3

    Hi, It seems that since we updated our iPods Touch (different ones, 2nd Generation) to software 3.1.3, Mail app stopped working. It opens for a few seconds then it crashes. I have reset one of the iPods completely and synced it again, and still the s

  • After downloading update iTunes will not open, message says "The file "iTunes Libary.itl" cannot be read because it was created by a newer version of iTunes." I have windows 7..

    I downloaded update for iTunes when the computer restarted it said I had perform a system restore. After restore a message says " The file "iTunes Libary.itl" cannot be read because it was created by a newer version of iTunes. She I remove iTunes and

  • Get Next business day conditionally

    Hi All, I have a calendar table with all federal holidays, saturdays and sundays flagged to 1. I need help in finding the next business day from givendate and that too Conditionallly.. means Lets say today's date is 01/02/2014(wednesday) and I want t

  • Oracle OLAP and APEX

    Hi, We have built reports in APEX using Oracle OLAP views. But these reports are very very slow as they query the views which in turn use TABLE and CUBE_TABLE functions to convert cube into two dimensional format of a table. The cube contains 10 dime