Email Actions using Smartforms - To and Cc fields

Hi All,
    I have a requirement to send emails to all partners in the order using actions and smartforms. However I need a few of them (Based on partner function) in the To list and the rest in the Cc List.
Is there a possible way to do this?
Thanks,
Reddy
@@ I am using partner dependent actions as the partner independent actions gives me an error - No recipients found

Hi,
you might be aware of the processing class CL_DOC_PROCESSING_CRM_ORDER.
In that class please see the method CRM_ISA_AUCTION_SMART_FORM which sends the smart form as a html mail.
in that you will observe a class and CL_BCS method  ADD_RECIPIENT.
Using  that method you can add as many recipients as u want and u can also set them as CC, BCC .
but if you want to send your smart form as attachment i think u can also achieve that please see the below links
[http://wiki.sdn.sap.com/wiki/display/Snippets/Sending+attachmentusingcl_bcsclasses]
[Send Blindcopy with cl_bcs;
Thanks,
Rajini Aleti.

Similar Messages

  • I'm trying to draw a candlestrick chart without using the open and close fields

    I'm trying to draw a candlestrick chart without using the
    open and close fields, however I am seeing nothing on the cart. The
    horizontal and vertical axis are displaying their labels correctly
    for the data. Any ideas what is going on here?

    "nikos101" <[email protected]> wrote in
    message
    news:gi5rh4$ptn$[email protected]..
    > Is it not to draw the line between the high and low
    then? The data I
    > recieve has no open and close data :(
    >
    I've never seen a candlestick that didn't have all 4
    properties.
    You may find the floating columns do what you want here
    http://demo.quietlyscheming.com/ChartSampler/app.html
    or possibly the
    vertical line type will work for you.
    HTH;
    Amy

  • What is the use of EIN_FEDERAL and EIN_STATE_LOCAL fields in Voucher header record (PeopleSoft AP) ?

    What is the use of EIN_FEDERAL and EIN_STATE_LOCAL fields in Voucher header record (PeopleSoft AP) ? And where can we check record field related information in PeopleBooks ?

    Hi User,
    The best place to search for questions like this one is OTN, Oracle Technology Network. If you have any question about CLOUD and partnering with Oracle we will be more than glad to help! Thanks.

  • I'm unable to delete an existing email account, using iPhone 4 and latest OS. Anyone resolve this problem?

    i'm unable to delete an existing email account, using iPhone 4 and latest OS. Anyone resolve this problem?

    I thought maybe you had a restriction set to Accounts but if you can get to the final screen that's not it. I'd try resetting the phone. First do a hard reset. Turn the phone off then press the Home button an Power button at the same time and hold for 10 seconds or so until the logo appears. If that doesn't work go to Settings > General > Reset > Reset All Settings. That will basically restore the phone to a like new condition but keep your data, music, photos, etc. intact. Do a back up first though.

  • Customized sender email in email action of smartform

    Hi,
    I have an email action configured and working correctly. I'd like to know where I can customize the Sender information to appear in the mail as desired?
    Meaning, instead of displaying the sender's email address + name in the mail, I'd like it to display a text. Pls help. Thks

    Hello,
    I only know how to do this through coding, don't think it's possible through customizing. The system will take the user's e-mail (defined in SU01) by default.
    The FM SO_OBJECT_SEND (to send e-mails/documents) has an attribute called 'ORIGINATOR' where you can pass the e-mail address of the sender. This address will appear as the "From" e-mail address. Don't know if you can pass only text, I think there will be a check for a "@" at least.
    Hope this helps,
    Kind regards,

  • Issue with Email generation using MAPI32.OCX and Outlook 2010

    Our application use MAP32 OCX to generate an email with an attachment (PDF File), but no email address. The user will select the address from their contacts.
    Right now we have an issue with some Outlook 2010 clients that after about 8 emails , Outlook has an issue and hangs.
    Now if we do a mailto://[email protected] before we create the 8th email, Outlook 2010 doesn't hang.  Is there any setting we can set in Outlook 2010 to prevent the "address checking" when the email is generated or do I have to fill
    the email address with a "bogus" address that the user must then overwrite to prevent this from happening?
    Thanks,
    Chad Newman

    Hello Chad,
    Why do you need to use MAPI instead of OOM?
    I'd suggest automating Outlook instead. See
    How to automate Outlook from another program and
    How to automate Outlook and Word by using Visual C# .NET to create a pre-populated e-mail message that can be edited for more information.
    Also you may find the
    C# app automates Outlook (CSAutomateOutlook) sample project helpful.

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • Email application using dreamweaver MX and ASP...Is this possible?

    Hello
    I would like to create a web application that would allow
    users to create and send emails a bit like Outlook but a bespoke
    version.
    There are a few things that this email application should do
    such as:
    1) Allow you to enter name, address, email address and job
    category for each contact.
    2) filter email list based on that above criteria eg. list
    all the contacts that have a job category of Manager. One contact
    may have one or more job category so the list would need to remove
    any duplicates.
    3) The email should get sent to everyone on the filtered list
    so it would need to be able to send to multiple email addresses
    4) The user should be able to send attachments.
    I hope this makes sense. It would be great if I could do all
    this in Dreamweaver.
    Any help would be much appreciated on how I could develop
    such a application and also if there any tutorials that I could
    follow which allow me to do something similar.
    Thanks

    Hopefully this will set you in the right direction.
    1. Create a user table. You will need to do this mentally
    before actually
    creating the database. What will the table contain? After you
    have this
    spec'd out, you can create it. You should create your entire
    database
    before creating it in whatever software you'r eusing (mySQL,
    Access, SQL)
    2. Design your jobs table. This will contain all info you
    need to store
    about the job.
    3. Create a form that uses lists to build your "email". This
    should be a
    form that says, select Name, Adress or job category. This
    will feed into
    your SQL statement(or DW recordset), which will bring up all
    your contacts
    where your Name field in your user table (or Address, or Job
    Category or all
    three). You can tweak this until you get it just how you like
    it.
    4. Lastly you should have a very simple form (you don't
    mention what server
    language you're using) that will build an email based upon
    the contacts you
    have selected and email them.
    You will need to get the database up and structure setup
    before I could help
    you more with it. Do you feel comfortable doing that?
    "aman16" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thank you for your reply. Its much appreciated.
    >
    > I have made website in Dreamweaver before using ASP and
    databases. I dont
    > usually hande code though and just use the built in
    tools that Dreamweaver
    > MX
    > has as standard. I just need a step in the right
    direction really thats
    > why I
    > would appreciate any tutorials that you may no of which
    do something
    > similar or
    > maybe do a part of what I am trying to do. I could get
    as far as making a
    > database with contacts and all there details and then
    making an ASP page
    > to
    > display that information and maybe filter it in some way
    but I dont know
    > how to
    > then extract the email address from that filtered info
    and then make a
    > form to
    > type the message and attach any attachments and then
    email the form to all
    > the
    > email addresses from the filtered list.
    >
    > You mentioned that there are web based email
    applications out there that I
    > can
    > customize to do a similar thing. Could you let me know
    of any names of
    > these
    > programs so I can then read up about them? I would like
    to customize it
    > quite a
    > bit though to try and make them as bespoke as possible.
    >

  • Email output using Standard SAP and outlook

    Can anyone provide detailed configuration tips for output determination which includes defining communication strategy, output types, output procedure and condition records?
    I am trying to set up email generation to customers based on billing documents.
    Regards,
    Ottley.

    Hi
    Please see if the below steps help you- let me know if you need any more information, You ahve to seek help from your basis team in completing the necessary basis related settings
    1. You must maintain email address in Customer master data.
    2. The same applies to user master data.  For the output type for default values, a communication strategy needs to be maintained in the Customizing that supports the e-mail. You can find the definition of the communication strategy in the  Customizing via the following path: 
    (SPRO -> IMG -> SAP Web Application Server -> Basic Services -> Message Control -> Define Communication Strategy). 
    As a default, communication strategy CS01 is delivered. This already contains the necessary entry for the external communication. Please see that without a suitable communication strategy it is not possible to communicate with a partner via Medium 5 (external sending).
    3. Use the standard SAP environment
    4. In the condition records for the output type, use medium '5' (External send).
    5. You can use Transaction SCOT to trigger the output manually. The prerequisite for a correct sending is that the node is set correctly. This is not described here, but it must have already been carried out.
    6. To be able to display, for example, the e-mail in Outlook, enter PDF as the format in the node.

  • Office 365 email deployment using Outlook 2010 and PRF files

    Hi, 
    I've been struggling to get Outlook 2010 setup with a new Office 365 deployment. I would like to use custom PRF files to get the new Outlook profiles configured. I have more than 100 users.
    One of PRF files I'm using is shown at the end of this message. Each user will get a custom PRF file with his/her information already configured (mailbox, server name, etc...). I've obtained the corresponding Exchange server using:
    Get-Mailbox <email> | select ExchangeGUID
    I've attached the domain at the end of the GUID and then that's the Exchange server. It matches what you get with Outlook using Autodiscover.
    Using these PRF fies I'm able to create a new default profile and set all the parameters as if I had create the profile manually. Two problems here though:
    1) I don't know what to change in the PRF file to set the Logon Network Security to Anonymous Authentication under the Security tab (Exchange account properties)
    2) When Outlook asks me for the username and password, it won't take it, and I know I'm using the right credentials. If I create the profile manually (not using Autodiscover) and I use the same configuration parameters in the PRF file, everything is ok. I have
    already run all the updates and tools that come as part of Setup Desktop in Office 365. Actually I get the same results with Outlook 2013.
    I'm looking for some help here or ideas how to roll Office 365 without having to go user by user and creating a new profile and waiting for Autodiscover to finish :)
    PRF FILE  for one of the users (i'm using [email protected] to avoid putting here the actual client's address):
    ;Automatically generated PRF file from the Microsoft Office Customization and Installation Wizard
    ; Section 1 - Profile Defaults
    [General]
    Custom=1
    ProfileName=Office365
    DefaultProfile=Yes
    OverwriteProfile=Yes
    ModifyDefaultProfileIfPresent=false
    ; Section 2 - Services in Profile
    [Service List]
    ;ServiceX=Microsoft Outlook Client
    ServiceEGS1=Exchange Global Section
    Service1=Microsoft Exchange Server
    ; Section 3 - List of internet accounts
    [Internet Account List]
    ; Section 4 - Default values for each service.
    ;[ServiceX]
    ;FormDirectoryPage=
    ;-- The URL of Exchange Web Services Form Directory page used to create Web forms.
    ;WebServicesLocation=
    ;-- The URL of Exchange Web Services page used to display unknown forms.
    ;ComposeWithWebServices=
    ;-- Set to true to use Exchange Web Services to compose forms.
    ;PromptWhenUsingWebServices=
    ;-- Set to true to use Exchange Web Services to display unknown forms.
    ;OpenWithWebServices=
    ;-- Set to true to prompt user before opening unknown forms when using Exchange Web Services.
    [ServiceEGS1]
    [email protected]
    [email protected]
    [email protected]
    ConfigFlags=0x00000100
    RPCoverHTTPflags=0x002f
    RPCProxyServer=outlook.office365.com
    RPCProxyPrincipalName=msstd:outlook.com
    RPCProxyAuthScheme=0x0001
    [Service1]
    OverwriteExistingService=Yes
    UniqueService=No
    [email protected]
    [email protected]
    OfflineAddressBookPath=
    OfflineFolderPathAndFilename=
    ; Section 5 - Values for each internet account.
    ; Section 6 - Mapping for profile properties
    [Microsoft Exchange Server]
    ServiceName=MSEMS
    MDBGUID=5494A1C0297F101BA58708002B2A2517
    MailboxName=PT_STRING8,0x6607
    HomeServer=PT_STRING8,0x6608
    OfflineAddressBookPath=PT_STRING8,0x660E
    OfflineFolderPathAndFilename=PT_STRING8,0x6610
    [Exchange Global Section]
    SectionGUID=13dbb0c8aa05101a9bb000aa002fc45a
    MailboxName=PT_STRING8,0x6607
    HomeServer=PT_STRING8,0x6608
    ConfigFlags=PT_LONG,0x6601
    RPCoverHTTPflags=PT_LONG,0x6623
    RPCProxyServer=PT_UNICODE,0x6622
    RPCProxyPrincipalName=PT_UNICODE,0x6625
    RPCProxyAuthScheme=PT_LONG,0x6627
    AccountName=PT_UNICODE,0x6620
    [Microsoft Mail]
    ServiceName=MSFS
    ServerPath=PT_STRING8,0x6600
    Mailbox=PT_STRING8,0x6601
    Password=PT_STRING8,0x67f0
    RememberPassword=PT_BOOLEAN,0x6606
    ConnectionType=PT_LONG,0x6603
    UseSessionLog=PT_BOOLEAN,0x6604
    SessionLogPath=PT_STRING8,0x6605
    EnableUpload=PT_BOOLEAN,0x6620
    EnableDownload=PT_BOOLEAN,0x6621
    UploadMask=PT_LONG,0x6622
    NetBiosNotification=PT_BOOLEAN,0x6623
    NewMailPollInterval=PT_STRING8,0x6624
    DisplayGalOnly=PT_BOOLEAN,0x6625
    UseHeadersOnLAN=PT_BOOLEAN,0x6630
    UseLocalAdressBookOnLAN=PT_BOOLEAN,0x6631
    UseExternalToHelpDeliverOnLAN=PT_BOOLEAN,0x6632
    UseHeadersOnRAS=PT_BOOLEAN,0x6640
    UseLocalAdressBookOnRAS=PT_BOOLEAN,0x6641
    UseExternalToHelpDeliverOnRAS=PT_BOOLEAN,0x6639
    ConnectOnStartup=PT_BOOLEAN,0x6642
    DisconnectAfterRetrieveHeaders=PT_BOOLEAN,0x6643
    DisconnectAfterRetrieveMail=PT_BOOLEAN,0x6644
    DisconnectOnExit=PT_BOOLEAN,0x6645
    DefaultDialupConnectionName=PT_STRING8,0x6646
    DialupRetryCount=PT_STRING8,0x6648
    DialupRetryDelay=PT_STRING8,0x6649
    [Personal Folders]
    ServiceName=MSPST MS
    Name=PT_STRING8,0x3001
    PathAndFilenameToPersonalFolders=PT_STRING8,0x6700 
    RememberPassword=PT_BOOLEAN,0x6701
    EncryptionType=PT_LONG,0x6702
    Password=PT_STRING8,0x6703
    [Unicode Personal Folders]
    ServiceName=MSUPST MS
    Name=PT_UNICODE,0x3001
    PathAndFilenameToPersonalFolders=PT_STRING8,0x6700 
    RememberPassword=PT_BOOLEAN,0x6701
    EncryptionType=PT_LONG,0x6702
    Password=PT_STRING8,0x6703
    [Outlook Address Book]
    ServiceName=CONTAB
    [LDAP Directory]
    ServiceName=EMABLT
    ServerName=PT_STRING8,0x6600
    UserName=PT_STRING8,0x6602
    UseSSL=PT_BOOLEAN,0x6613
    UseSPA=PT_BOOLEAN,0x6615
    EnableBrowsing=PT_BOOLEAN,0x6622
    DisplayName=PT_STRING8,0x3001
    ConnectionPort=PT_STRING8,0x6601
    SearchTimeout=PT_STRING8,0x6607
    MaxEntriesReturned=PT_STRING8,0x6608
    SearchBase=PT_STRING8,0x6603
    CheckNames=PT_STRING8,0x6624
    DefaultSearch=PT_LONG,0x6623
    [Microsoft Outlook Client]
    SectionGUID=0a0d020000000000c000000000000046
    FormDirectoryPage=PT_STRING8,0x0270
    WebServicesLocation=PT_STRING8,0x0271
    ComposeWithWebServices=PT_BOOLEAN,0x0272
    PromptWhenUsingWebServices=PT_BOOLEAN,0x0273
    OpenWithWebServices=PT_BOOLEAN,0x0274
    CachedExchangeMode=PT_LONG,0x041f
    CachedExchangeSlowDetect=PT_BOOLEAN,0x0420
    [Personal Address Book]
    ServiceName=MSPST AB
    NameOfPAB=PT_STRING8,0x001e3001
    PathAndFilename=PT_STRING8,0x001e6600
    ShowNamesBy=PT_LONG,0x00036601
    ; Section 7 - Mapping for internet account properties. DO NOT MODIFY.
    [I_Mail]
    AccountType=POP3
    ;--- POP3 Account Settings ---
    AccountName=PT_UNICODE,0x0002
    DisplayName=PT_UNICODE,0x000B
    EmailAddress=PT_UNICODE,0x000C
    ;--- POP3 Account Settings ---
    POP3Server=PT_UNICODE,0x0100
    POP3UserName=PT_UNICODE,0x0101
    POP3UseSPA=PT_LONG,0x0108
    Organization=PT_UNICODE,0x0107
    ReplyEmailAddress=PT_UNICODE,0x0103
    POP3Port=PT_LONG,0x0104
    POP3UseSSL=PT_LONG,0x0105
    ; --- SMTP Account Settings ---
    SMTPServer=PT_UNICODE,0x0200
    SMTPUseAuth=PT_LONG,0x0203
    SMTPAuthMethod=PT_LONG,0x0208
    SMTPUserName=PT_UNICODE,0x0204
    SMTPUseSPA=PT_LONG,0x0207
    ConnectionType=PT_LONG,0x000F
    ConnectionOID=PT_UNICODE,0x0010
    SMTPPort=PT_LONG,0x0201
    SMTPSecureConnection=PT_LONG,0x020A
    ServerTimeOut=PT_LONG,0x0209
    LeaveOnServer=PT_LONG,0x1000
    [IMAP_I_Mail]
    AccountType=IMAP
    ;--- IMAP Account Settings ---
    AccountName=PT_UNICODE,0x0002
    DisplayName=PT_UNICODE,0x000B
    EmailAddress=PT_UNICODE,0x000C
    ;--- IMAP Account Settings ---
    IMAPServer=PT_UNICODE,0x0100
    IMAPUserName=PT_UNICODE,0x0101
    IMAPUseSPA=PT_LONG,0x0108
    Organization=PT_UNICODE,0x0107
    ReplyEmailAddress=PT_UNICODE,0x0103
    IMAPPort=PT_LONG,0x0104
    IMAPUseSSL=PT_LONG,0x0105
    ; --- SMTP Account Settings ---
    SMTPServer=PT_UNICODE,0x0200
    SMTPUseAuth=PT_LONG,0x0203
    SMTPAuthMethod=PT_LONG,0x0208
    SMTPUserName=PT_UNICODE,0x0204
    SMTPUseSPA=PT_LONG,0x0207
    ConnectionType=PT_LONG,0x000F
    ConnectionOID=PT_UNICODE,0x0010
    SMTPPort=PT_LONG,0x0201
    SMTPSecureConnection=PT_LONG,0x020A
    ServerTimeOut=PT_LONG,0x0209
    CheckNewImap=PT_LONG,0x1100
    RootFolder=PT_UNICODE,0x1101
    Account=PT_UNICODE,0x0002
    HttpServer=PT_UNICODE,0x0100
    UserName=PT_UNICODE,0x0101
    Organization=PT_UNICODE,0x0107
    UseSPA=PT_LONG,0x0108
    TimeOut=PT_LONG,0x0209
    Reply=PT_UNICODE,0x0103
    EmailAddress=PT_UNICODE,0x000C
    FullName=PT_UNICODE,0x000B
    Connection Type=PT_LONG,0x000F
    ConnectOID=PT_UNICODE,0x0010

    Wow, even if we were to find out what to add to the PRF, it turns out each user mailbox has it's own unique server name (aka Virtual Connection Point). I cannot believe two departments of Microsoft aren't talking to each other!!!! ..... wait, that always
    happens. 1 week later and probably 100 hours later I am just going to create a simple how-to for each user. 
    Here is the link I just found explaining the "virtual connection points". http://www.blackmanticore.com/2c209fbaa93ae6cf8f8dac5b50281f2e
    I'm sure NEXT YEAR Microsoft will catch up with itself and add this option/feature in the Office Customization Tool to create PRF files that will actually work with their services.

  • How to get emails sent using my iphone and gmail sent to my Outlook inbox?

    I have set up my my Iphone Mail Account using gmail/googlemail.
    If I send an e-mail from my iphone then it appears in my sent folder on my iphone but does not get sent to my Outlook inbox (when I carry out the Send/Receive function). However, when I send an e-mail using gmail webmail (rather than Outlook), the sent e-mail DOES get sent to my Outlook inbox.
    How do I set things up (using my Iphone? Using gmail? Using Outlook?) to get e-mails sent using my iphone delivered to my Outlook inbox?

    Thanks for your efforts...
    ..but still not working yet.
    I have deleted the account and created it again, using your instructions.
    I do not know whether Outlook is configured as IMAP or not: sorry to sound ignorant but I am literate only up to a point!
    I do not understand why e-mail that is sent via the webmail goes into my inbox...while e-mail sent via iphone does not. I would therefore imagine that I need to do something to my iphone (as you initially suggested) than to Outlook or Googlemail...but I am quite prepared to be told I am wrong.

  • Anyone ever used decalgirl shield and martins field?

    Anyone ever bought any protective shields from these companies? I would love to hear your experiences on the product. Even if you have a nano and not a video Id still like to hear it. How do they compare to invisible shield?

    Hi! I bought a skin and the screen armor for my iPod from DecalGirl. The screen armor has no scratches so far so I don't know if it's doing it's job or not but I MUST say that IT IS NOT CLEAR. There are various tiny bubbles that I can't out and once you take it off you have to put in a new one, they're not reusable AT ALL in my experience. It looks speckled and it's not clear like it should be so I don't recommend the screen armor from Decalgirl but the skins are okay. I bought an invisibile shield but don't plan on using it after finding out that I had to use soapy water to apply it, and plus it apparently leaves a sticky residue behind. I hope this helps! I may end up using the invisible shield but only after I get over the fact that there's water involved. xD

  • How to design a smartform with below tables and table-fields??

    How to design a smartform  and driver program using this tables and table fields
    FIELD DESCRIPTION     TABLE-FIELD                                   
    Tax Invoice No:     vbrk-vbeln                    
    Code     vbpa-kunnr where parvw = RG                                   
    Ship To     vbpa-kunnr where parvw = WE                                   
    PAN No     J_1IMOCUST-J_1IPANNO for WE                              
    ECC     ,,                                   
    Range     ,,                                   
    Div     ,,                                   
    Excise Reg No     ,,                                   
    LST No     ,,                                   
    CST No     ,,                                   
    Invoice No:      vbrk-vbeln                                   
    Do No:     vbfa-vbelv where vbeln = inv no and vbtyp_v = C get the vbeln where vbak-auart = 'ZDO'           
    Sales Doc Num:     vbfa-vbelv where vbeln = inv no and vbtyp_v = C get the vbeln where vbak-auart = 'ZSO'                             
    PO:     vbkd-bstkd where vbeln = sales doc no                                   
    Delivery No:     select vbelv from vbfa where vbeln = inv no and vbtyp_v = J                             
    Goods Removal Dt&Time:     select vbeln from vbfa where vbelv = dlv no and vbtyp_v = R Put this vbeln in mkpf and get BUDAT and CPUTM     
    Selection screen parameter should be : vbrk-vbeln.

    Hi,
    First design your form interface, this is the set of fields that you need to display in your form and create this as a structure in SE11.  In your print program code the logic to extract the data into this structure, this is just regular ABAP, nothing special here.
    When you have your data call function module SSF_FUNCTION_MODULE_NAME to determine the name of the generated smartform function module.  Then call this function module, passing the data collected into your structure.  If necessary you will need to find the print parameters required and pass these too.
    In your smartform you will need to use the data structure you created in SE11 as the smartform interface and design the layout required to display these fields.
    Regards,
    Nick

  • Interactive document using Smartforms

    Hi,
    The customer wants an interactive page to be developed using Smartforms with editable text field and checkboxes. Can this be done in Smartforms? If yes then can you please tell how to do it?
    I thought Smartforms in for output only. Can it be used to take inputs and perform some events based on these inputs?
    Please reply asap as the customer is behind me and I need to say if it is possible or not..
    Thanks in advance,
    Rashmi

    Rashmi,
    You will have to use the new ADOBE forms, which are interactive and the user can enter data. But I think its available with WAS 6.40. The transaction code is SFP.
    I am not sure which version of SAP / BASIS your on. If you are SAP R/3 4.6C or 4.7, this might not work.
    Hope this helps.
    Regards,
    Ravi
    Note : Please reward points if this helps.

  • Is it possible to download a mail(.eml) from outlook 365 using exchange service and store in database using c#

    Hi All,
    I have a outlook mail account ex:- my mail account id is
    [email protected] , using c# code and Microsoft.Exchange.WebServices ,
     I want to download entair email and want to save this email in database , is it possible suggest me how can I go forward on this, if not possible please suggest some alternative ways to find the solution.
    the reason want to store this entair mail is  on click on some button I want to open this mail from database in .eml format with attachments if any are there.
    Thank in Advance
    Ravi

    Hello Ravi,
    Try this:
    http://msdn.microsoft.com/en-us/library/office/dn672317(v=exchg.150).aspx#sectionSection2
    With regards,
    Michael | Microsoft Exchange Developer Content
    The
    Exchange Development Forum Guide has useful information for using the Exchange Development Forum.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for

  • Post-upgrade tasks for OWB 10g Release 2

    Hi, we're planning to upgrade from OWB 10.1.0.2 to 10.2.x. Now, I'm trying to get a clear view on what will be the "post-upgrade" tasks, in terms of manual adaptations, corrections, etc. to get everything back up and running after the upgrade ... E.g

  • Why can I no longer see my Airport Extreme router in AirPort Utility after installing Yosemite?

    After upgrading to Yosemite, I can no longer see my router in the Airport Utility application.  In Finder, my router shows up as an AirPort Time Capsule but when I try to select it, I get message saying it can't connect.  I can, however, connect to t

  • What is the method used for upload of  data

    Hi All, What is the method used for upload of  Data from excel spread sheets to SAP HR. it is Bulk Data from many countries.LSMW or BDC Session Method? what are country specific infotypes used for PA and OM. can u plz give the list of country specifi

  • Unexpected error: None of the checked updates could be installed

    When attempting to update firmware, I get: unexpected error: None of the checked updates could be installed So, I go to the downloads section of the apple website and manually download and install it. However, when I run for updates, the same files s

  • Country of purchase

    How to find the country of purchase of iPhone 2G?