E-mail with Subject, Body and Attachments

Hi,
I am currently completing a project to create an intranet site for employees.
We need functionality to send email confirmation of a sale to customers. I'm going to start by saying i have zero web design experience and have only been doing this for 3 months heavily using the ribbon with minimal coding. So the situation is:
I have a button that i want employees to be able to click and it opens a new email from outlook with pre-populated body text (which is static and never changes) and 3 attachments also never changing. The employee will then enter the clients email address
and add their name to the email. 
I have managed the email and subject no bother. However the body text i want to enter needs to look like this:
"TRAVEL INSURANCE
I confirm cover is in place.
If you need any assistance whilst abroad call: 0800 000 000 for 24 hour assistance or contact our claims department on:
0800 000 000. This office can be contacted on: 0800 000 000
asking for extension number:XXXX to speak to myself.
Yours Sincerely
XXXXXXXXXXXX
Travel Adviser
Please Note: This e-mail was sent from a notification-only email address that cannot accept incoming e-mail. Please do not reply to this message."
I've managed to get some of the body text in but no formatting. I've managed line breaks using %0D%0A but if i add a double break to get a clear line there doesn't seem to be enough room and it begins to lose the body text. 
Thats issue 1.
Issue 2 is how you manage to attach files. Everything i look at says you need to do your own piece of coding which is far beyond my capability for this project!
Any help would be fantastic.
this is my code so far:
[email protected]?subject=Travel%20Confirmation%20Email&body=TRAVEL INSURANCE%0D%0A%0D%0AI confirm cover is in place.%0D%0AIf you are in need of any assistance whilst you are abroad please contact our 24 hour emergency
helpline on: (0000) 000 000 or the claims department on: 00000 000 000. If I can be of any further assistance, please contact our office on 0000 000 0000, extension number: XXXX.%0D%0AThank you for insuring with us.%0D%0AYours sincerely%0D%0AYOUR NAME%0D%0ATravel
Advisor
Thanks,
K

Hi,
According to your description, you might want to let users be able to send email with attachments.
As you might prefer a codeless solution, I would suggest you create a
SharePoint Designer workflow to achieve it.
A solution can be like this:
1. Create a list “ListA” for storing the three attachments which you want to add into your email, it will be referenced in the workflow;
2. Another list “ListB” with two columns “ClientEmailAddress” and “ClientNames”, it will be used to collect user input and sent to the workflow;
3. Create a SharePoint Designer workflow and attach to the “ListB”, set the workflow to be started when there is new item added in the current list.
By doing this, users can simply add a new item in “ListB” with two columns filled, an email will be sent out as you required.
In SharePoint Designer workflow, we can send email contains predefined format easily with the available workflow action in SharePoint Designer.
About how to
send email in SharePoint Designer workflow:
https://support.office.com/en-us/article/Send-e-mail-in-a-workflow-11d5f9dd-955f-412c-b70f-cde4214204f4
http://www.mpspartners.com/2012/05/spdesigner2010workflowsendingemailstomultipleusersfromasinglepeoplepickerfield/
To be able to
send email with attachments, you would like to install this solution in your environment, it provides a useful custom workflow action you will need:
http://sharepointstuff.codeplex.com/releases/view/66258
Best regards,
Patrick
Patrick Liang
TechNet Community Support

Similar Messages

  • Send a mail with a body and attachment

    Hi guys!!!!
    I have a RFC -> XI -> Mail Scenario!
    I'm able to send text in the body of the mail. I'm able to send text as an attachment. But I'd like to send both (text in the body and other text as an attachment). How can I do this?
    thanks in advance
    Julio

    First, I'd like to thank all the replies! And Jagesh, I solved my problem reading the thread you told me.
    I created a message as follow:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns:Mail xmlns:ns="http://sap.com/xi/XI/Mail/30">
         <Subject>test</Subject>
         <From>test_source @ abc.com</From>
         <To>test_target @ abc.com</To>
         <Content_Type>multipart/mixed; boundary="AaBb--984dfgeSSd3532"</Content_Type>
         <Content>*AaBb984dfgeSSd3532*
    Content-Type: text/plain
    Hello, this is sample data.
    *AaBb984dfgeSSd3532*
    Content-Type: text/plain;name="CSV_data.csv"
    abc
    </Content>
    </ns:Mail>
    In addittion to this, I configured Mail channel as follow:
    Content encondig = none
    Keep Attachments = false

  • When I access my google e-mail account on the I-pad my inbox has at least 6 e-mails with no sender and no subject (absent via I-phone, Mac or PC) I cannot delete them as they cannot be selected- how do I stop them and clear the ones there now?

    When I access my google e-mail account on the I-pad my inbox has at least 6 e-mails with no sender and no subject (absent via I-phone, Mac or PC) I cannot delete them as they cannot be selected- how do I stop them and clear the ones there now?

    Try turning the account off and on : Settings > Mail, Contacts, Calendars , then tap the account on the right, slide Mail to 'off', exit settings and go back into the Mail app, and then go back to Settings and slide Mail back to 'on'
    If that doesn't work then try closing the Mail app completely : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How to send a mail with HTML body from Oracle

    Hi Team,
    Can somebody guide me how to send a mail with HTML body from oracle.
    Here is the piece of code i am trying to send a mail.
    procedure SEND_MAIL is
    cursor c_1 is select * from table_name;
    l_mail_id varchar2(40);
    -- ls_mailhost VARCHAR2(64) := Mailhost;
    ls_from VARCHAR2(64) := ‘[email protected]
    ls_subject VARCHAR2(200);
    ls_to VARCHAR2(64);
    l_mail_conn UTL_SMTP.connection;
    ls_left_menu_name VARCHAR2(64);
    ll_emp_num number(8);
    begin
    for i in c_1 loop
    begin
    l_mail_conn := UTL_SMTP.OPEN_CONNECTION('IP');
    UTL_SMTP.HELO(l_mail_conn, 'IP');
    UTL_SMTP.MAIL(l_mail_conn, LS_FROM);
    UTL_SMTP.RCPT(L_mail_conn, LS_TO);
    UTL_SMTP.DATA(l_mail_conn,'From: ' ||ls_from || utl_tcp.crlf ||
    'To: ' ||ls_to || utl_tcp.crlf ||
    'Subject: ' ||ls_subject|| utl_tcp.crlf);
    UTL_SMTP.QUIT(l_mail_conn);
    exception
    when no_data_found then
    null;
    when others then
    RAISE_APPLICATION_ERROR(-20000, 'Failed to send mail due to the following error: ' || sqlerrm);
    end;
    end loop;
    end;
    Thnx

    Hi Nicolas!
    Have you tried to set "Output Format" for "RAW Text" to HTM in SCOT.
    If HTM is missing in your dropdown-list, you could check out table SXCONVERT2. Copy the line with category T/format TXT, and change the format from TXT to HTM. The existing function
    SX_OBJECT_CONVERT__T.TXT does not need to be changed. Now you should be able to choose HTM in SCOT. You will probably need som HTML-tags in your text to make it look good.
    Hope this helps!
    Regards
    Geir

  • Email with html body and a pdf attachment

    Hi,
    i try to send a email with html body and one attach in pdf
    in release 4.6c using the SO_DOCUMENT_SEND_API1.
    I've put the html in the txt table and the pdf in bin table but i obtain the following situation:
    1) with only the html in the body i see a right email in html
    2) with the html body AND the pdf attach i obtain a empty mail with two attach.
    what can i do ? I's possible to do this.
    Thanks in advance.

    Contact my basis guy is a problem !!
    maybe a need a function similar to SX_OBJECT_CONVERT_RAW_TXT to convert raw (containing html text) into real html ?
    my view V_SXCONV contain:
    ALI     HTM     2     SX_OBJECT_CONVERT_ALI_HTM
    ALI     PS     4     SX_OBJECT_CONVERT_ALI_PRT
    ALI     RAW     1     SX_OBJECT_CONVERT_ALI_RAW
    ALI     TXT     2     SX_OBJECT_CONVERT_ALI_TXT
    ICS     RAW     8     SX_OBJECT_CONVERT_ICS_RAW
    INT     RAW     8     SX_OBJECT_CONVERT_INT_RAW
    OBJ     HTM     2     SX_OBJECT_CONVERT_OBJ_HTM
    OTF     PCL     3     SX_OBJECT_CONVERT_OTF_PRT
    OTF     PDF     1     SX_OBJECT_CONVERT_OTF_PDF
    OTF     PS     2     SX_OBJECT_CONVERT_OTF_PRT
    OTF     RAW     9     SX_OBJECT_CONVERT_OTF_RAW
    RAW     SCR     6     SX_OBJECT_CONVERT_RAW_SCR
    RAW     TXT     7     SX_OBJECT_CONVERT_RAW_TXT
    SCR     OTF     1     SX_OBJECT_CONVERT_SCR_OTF
    TXT     INT     7     SX_OBJECT_CONVERT_TXT_INT
    URL     HTM     2     SX_OBJECT_CONVERT_OBJL_HTM
    thanks a lot.

  • Oracle forum watch : please send mail with subject as the question

    Hi Site Administrator,
    The oracle forum send a mail if we are watching any topic. Earlier the subject was named as the question subject , which was very helpful.
    Now we are gettting the mail with subject as the topic name ex java programming, new to java etc.
    With the current form we have to see inside each mail to know what is the question asked. Earlier from the subject itself we were able to find what is/may be the question. Which has helped to easily and quickly scan through. So please change this new pattern to old pattern. Since that is the best practice.
    Hi moderator
    Please put my question in the suitable section if it is not placed in the right one.

    793619 wrote:
    Hi moderator
    Please put my question in the suitable section if it is not placed in the right one.Put it there yourself.
    Community Feedback (No Product Questions)
    The Java and Solaris moderators aka community moderators are not authorized to move content anywhere and everywhere on forums.oracle.com. In future, please check the forum listings and find the correct forum to post to.
    I'm locking this thread and it will be removed later.
    db

  • Procedure or Function that send E-mail with image background and file attached

    hi
    I4d like know if someone there is a procedure or function that send E-mail with image background and file attached, for me.
    thanks
    Josi Vieira

    If you go to this part of OTN you will find the official Oracle UTL_SMTP demo, which includes attachments:
    http://technet.oracle.com/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
    Getting a background is slightly trickier. The UTL_SMTP package is for primarily sending text e-mails, whereas images require HTML e-mail. I suggest you look at the structure of a sample HTML e-mail and see if you can write the necessary HTML strings in the DATA parameter. Otherwise you'll need to investigate handcrafting a program based on the UTL_TCP package.
    [rant]
    If this seems like a lot of trouble I agree and urge you not to bother. HTML e-mail is one of the curses of the modern age, not least because it is frequently used by purveyors of viruses. I have a filter on my Outlook client that strips out all the HTML in any e-mail I receive, which means I get lots of e-mails rendered unreadable by the inclusion of <HTML> tags. But who cares, they're mostly spam anyway. In fact, the use of HTML in an e-mail is almost always an indicator of the irrelevance of its content.
    [rant]
    Vibes, APC

  • Mail workflow with variable recipient, subject, body and attachment

    Here's what I'm trying to solve:
    I do some payroll processing with Direct Deposit. A PDF file is created for each person's check stub, which I then e-mail to the person. Right now I have Excel generate a mailto: link which addresses the messages, inserts the subject and a brief note in the body. I then manually attach the PDF file and send.
    I'd like to be able to have a single workflow that I can drop the PDF file onto and have it mailed to the intended recipient. The filename can be setup to include any necessary info as it is generated by a very extensive VB script in Excel.
    But I can't figure out getting the variable items in to Automator.
    Thanks for any insight.
    Tim

    I was able to find a commercial product that works very well. MaxBulk Mailer from Max Programming allows you to import a list of recipients, merge with personalized message and designate an attachment (just image types and PDFs, not all types work) and send.

  • How send e-mail with XML + PDF and body text

    Hi everyone,
    I have a new requirement but I´m with doubts, how to send an e-mail with two attachements (XML and PDF) and body text using -
    MIME: multipart/mixed;boundary
    I already have code to send XML + body text as you can see below:
    Element contentType = docout.createElement("Content_Type");
      root.appendChild(contentType);
      Text contentTypeText = docout.createTextNode("multipart/mixed;boundary=--AaZz");
      absTraceLog.addDebugMessage("Content_Type e-mail --- "+contentTypeText.toString());
      contentType.appendChild(contentTypeText)
    String text = "----AaZz\r\nContent-Type: text/plain; charset=UTF-8\r\n" +
            "Content-Disposition: inline\r\n\r\n" + nfeText +
            "\r\n----AaZz\r\nContent-Disposition: attachment; filename="+ prefixo +" "+ chaveNFe +".xml" +"\r\n\r\n" + xmlString + "\r\n";
    Element content = docout.createElement("Content");
    root.appendChild(content);
    contentText = docout.createTextNode(text);
    Content.appendChild(contentText);
    The code above work good, but I can´t duplicate any field from XiMail 3.0 - because it´s 0:1.
    So how to do that ?
    Thanks.
    Regards,
    BR.
    Viana.

    Eng,
    That´s works good with mailPackage:
                content= "--" + "--Zz" + CRLF
                        + "Content-Type: text/html; charset=UTF-8" + CRLF
                        + "Content-Disposition: inline" + CRLF + CRLF
                        + textBodyMail + CRLF
                        + "--" + "--Zz" + CRLF
                        + "Content-Type: application/xml; name=" + attachmentName + CRLF
                        + "Content-Disposition: attachment; filename=" + attachmentName + CRLF
                        + "Content-Transfer-Encoding: base64" + CRLF + CRLF
                        + encoder.encode(inputString.getBytes("UTF-8")) + CRLF
                        + "--" + "--Zz" + CRLF
                        + "Content-Type: application/pdf; name=" + pdfName + CRLF
                        + "Content-Disposition: attachment; filename=" + pdfName + CRLF
                        + "Content-Transfer-Encoding: base64" + CRLF + CRLF
                        + encoder.encodeBuffer(new BASE64Decoder().decodeBuffer(pdfAttachment));
    Regards,
    BR.
    Ricardo Viana.

  • Automatic DIR creation when mailed with Subject

    Hi SAP Gurus,
    We Have a requirement where an user sends a Mail with the subject line as the DIR No (particularly the Document folder No in EDMS) with some document files attached to it,
    The requirement is, based on the mail sent the system should create a DIR in DMS with the attached files placed inside the DIR automatically with out any manual interventions.
    So we can have a list of DIRs created under one folder in DMS.
    Please Explain in detail like how this requirement could be met, if it is an development also throw some light on the methord to be followed.
    There are some scanner interfaces available in the market but we are not sure to go for any third party integration for getting this single requirement fullfilled.
    Points awaiting for usefull suggestions
    Thanks and regards
    Priya S

    The TDMC(Technical Document Management Connectivity) offering allows a customer to connect to their SAP Document Management System (DMS) via MS Outlook. This is achieved using a MS Outlook Plug-in that was developed in C#, which you can modify at the customer's site to include customer-specific information. The second part of this offering is the usage of SAP Enterprise Services (ES), which are standard as of ERP 2005. This offering uses a specific ES called DocumentBulkCreate. The final part of this tool is the SAP DMS itself.
    This tool enables the following:
    - From MS Outlook, the user has a context menu option to work with SAP DMS.
    - By selecting this option, the user is prompted to add additional information about the e-mail (for the
      standard offering the user is prompted for the project number but this can be tailored to the customer
      needs via the C# program).
    - After confirmation, the tool then checks this e-mail into SAP DMS via the ES.
    - This creates a new Document Info Record (DIR) in which:
        1) Information about the e-mail along with any entered information via the prompt is automatically
           placed into the classification of this DIR.
        2) The body of the e-mail is saved as an original within the DIR as a *.txt file.
        3) Any/all attachments are stored as originals separately within the DIR in their original file format 
           (such as *.ppt, *.xls, *.docu2026).
    Within this document, you can expect to find step-by-step instructions on how to implement this toolset using the standard developed version. Some aspects of this implementation can be adapted to support customer-specific needs. Where applicable, the document attempts to point out whether customization of the offering is advised.
    Please refer SAP Document, "Enterprise Services End-to-End Implementation Guide Using SAP® ERP 2005, ECC-SE SP3" from SAP Service marketplace.
    Hope this helps.
    Yong Kim

  • Sending emails with both body and attachment to multiple recipients

    I have a requirement to send email with body and attachment to multiple recipients.
    Body of the email is a standard text. It is a proxy-to-mail scenario.
    Here is what I've done: (I'm using PI 7.11)
    One mapping from Source to Target structure (format of the attachment text file)
    Second mapping from Target Structure to Mail Package format.
    In the second mapping I'm concatenating the output of first step into "Content" of the Mail Package.
    "XIPAYLOAD" is the message protocol used.
    The "Keep attachments" option in the Mail adapter allows only to send "Content" as attachment or as body of the email.
    How to send an email with both content and text?
    The other problem is even with using ASMA, I can't send email to multiple recipients. I can only do CC and TO for 1 person each - a total of 2. Although I can resolve this by creating mailing lists, it is better if this can be addressed in PI.
    Thanks for any input you can provide!
    Edited by: crazylad on Jan 18, 2012 3:39 PM

    Thank you for your response Mikael.
    For the first question, I was able to find the solution in the following blog:
    XI Mail Adapter : Dynamically building attachment and message body content using a simple UDF
    (I just needed to search with the right set of key words )
    The key is to set the "Content Encoding" as "None" in the mail adapter. If this is not done, the mail will be sent with an attachment - untitled.bin containing both the mail body and the attachment text. Also, don't forget to check the "Keep Attachments" checkbox in the mail adapter.
    Multiple recipients could be added by separating the email IDs with a Comma. I have used ASMA to set the recipients.

  • Mail  - Uintended Saved Messages and Attachments in .imapmbox

    +Why do I have thousands of documents (messages and attachments) from past years stored in folders with suffix .imapmbox?+
    Time Machine quit backing up because of insufficient space on my external drive. Searching for an answer, I found (and deleted) a few thousand files dating back a couple of years: nearly 150gb of old messages, images, movies, and documents that I did not know were stored. Many were stored multiple times. Most were at the locations:
    Macintosh HD => Users => (Username) => Library => Mail => Mac (Username) => Deleted Messages.imapmbox => Attachments
    . . . and similarly with the last folder in the sequence being "Messages." : Sent Messages.imapmbox =>
    The situation also occurred with "Sent Messages.imapmbox" having hundreds of Messages and Attachments.
    I had no knowledge of these being on my HD because when (in Mail) I clicked on "Sent" and "Trash On My Mac" I saw relatively few files only the ones I expected, given the selections I made in Preferences.
    In Mail Preferences for "Sent" I have checked store on server and delete when one month old.
    For Trash I have checked moved deleted messages to Trash mailbox and store deleted messages on server. Also, "Permanently delete messages when one week old."
    In Preferences - General, I had selected "Remove Unedited Downloads: After message is deleted."
    I do want email downloaded to the Mac HD to read offline, why do they get stored embedded out of sight (and previously out of mind) down in those .imapmbox locations?

    No, you can't emulate that feature. But you can just compose your message and when you're done, press Return at least 3 times and attach your file there; that will make the attachment be at the end of the message (such as an image), or appear separately as an attachment in the message header when the recipient opens it.
    Mulder

  • Mail 2.1.3 and attachments in the middle of messages

    Hi
    We have users with OS 10.4.11 and Mail 2.1.3. Often I get messages from them with attachments mid message, the rest of the message gets converted to ATT00001.html and I have to open that view the rest of the message. Other's with various Mail clients get similar results.
    It's usually because they've attached the message when the cursor was mid-message. 10.5 / Mail 3 has the Edit>Attachments>"Always attach Attachments at End of Message" option which gets around this.
    My query is can I emulate this option somehow with Mail 2.1.3 ?
    Thanks
    Matt

    No, you can't emulate that feature. But you can just compose your message and when you're done, press Return at least 3 times and attach your file there; that will make the attachment be at the end of the message (such as an image), or appear separately as an attachment in the message header when the recipient opens it.
    Mulder

  • Using Mail with both pop and imap accounts

    I have a Q to better understand how the Mail app. works in Lion so there is better coordination among my devices and mail = I'd like to lay out how it is now set up and see whether or not I'm right about how to handle them - and how to do things better.
    1.  I have a .mac account and no problems with it = if I read and delete on iPhone it deletes off iPad and computer fine.
    2.  I have an email account that is an IMAP account but at another host [I use Mail to get email from it] - so what I think happens is that it's sort of the same thing but operating on that other host as an IMAP so that the same thing happens more or less - email comes in on all 3 devices and when I delete from one it deletes from others = but maybe not as fast because it's going thru the Mail intermediary.  My need/wish is to use one email program [Mail] to get all my mail and that's why this and others all go thru Mail.
    3.  I have a 3rd account that is a POP account and can't be made IMAP because of the nature of the plan/host - in that I've noticed that I'll have 100 messages on my main computer and delete 75 of them but the 100 are still left on the iPhone and iPad = so far I don't do much about it but I hope/assume I'm right to think that if I know I've read and dealt with the 100 messages that if I want to I can just delete them all quickly off the iPhone or iPad...I'm not sure how to handle a Pop account to minimize all the hassle.
    Does this seem like the right way to go or is there a better way to manage these 3 diff. accounts ???  I noticed some of the problem when I checked Mail on my iPad and saw there were loads of old emails 'unread' on it that I had dealt with on my computer so I knew things were out of whack.
    Last thought = I do go to Synchronize all Accounts from time to time but really don't notice it makes a difference but maybe I don't understand tht either.
    thanks much

    Okay, it just fixed itself without me doing anything, or even quitting the program again. It still seems like a bug.
    Andy

  • Unable to send mail with different fonts and colors

    Hi All,
    here is the explanation for my problem:
    I am sending mail using javamail. when i send the text with different font and color its not received in the same way. it is simply sending as plain text.
    Please help me on this issue.
    Thanks
    NG

    Hello,
    I am trying to develop an email application. It consists on sending email from [email protected] to [email protected]
    How can I do this in java ?
    I am using this software but it works only with gmail !!
             * Send Email to the webmaster
             String  d_email = "[email protected]",
                     d_host = "smtp.gmail.com",
                     d_port  = "465",
                     m_to = "[email protected]",
                     m_subject = "Email from user";
             Properties props = new Properties();
             props.put("mail.smtp.user", d_email);
             props.put("mail.smtp.host", d_host);
             props.put("mail.smtp.port", d_port);
             props.put("mail.smtp.starttls.enable","true");
             props.put("mail.smtp.auth", "true");
             props.put("mail.smtp.debug", "true");
             props.put("mail.smtp.socketFactory.port", d_port);
             props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
             props.put("mail.smtp.socketFactory.fallback", "false");
             SecurityManager security = System.getSecurityManager();
             try
                Authenticator auth = new SMTPAuthenticator();
                Session session = Session.getInstance(props, auth);
                //session.setDebug(true);
                MimeMessage msg = new MimeMessage(session);
                msg.setText("This is a message from: "+UserEmail+"\n "+UserMessage);
                msg.setSubject(m_subject);
                msg.setFrom(new InternetAddress(d_email));
                msg.setSentDate(new Date());
                msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
                Transport.send(msg);
             catch (Exception ex)
                ex.printStackTrace();
                out.println("Messaging ERROR: " + ex);
                out.println(stack2string(ex));
                    if(ex.getMessage().compareTo("")!=0)
                        check = "Message NOT SENT " + ex.getMessage();
        private class SMTPAuthenticator extends javax.mail.Authenticator
            public PasswordAuthentication getPasswordAuthentication()
                return
    new PasswordAuthentication("[email protected]", "pwd");
        }please advice

Maybe you are looking for

  • Goods receipt of free items

    Let's say for example, PO has 1000 pcs of merchandising items. Upon delivery of the goods, the vendor gave 10 more as a promo. What movement type should we use for this withouth affecting the moving average price?

  • Macbook Pro retina, Windows 8.1 dual screen, Dell E228WFP problem/blurry

    Hello brainiacs, I am running my Macbook Pro 2013+ edition with Retina display and an extrenal screen. Problem: Fonts and windows on secondary screen (Dell E228WFP), in extended display mode, appears blurry and/or large (see screenshot) I use a Mini

  • Unable to delete Order does not exist in live cache but in table POSMAPN

    Hi Experts, We are facing an issue where purchase order is not available in live cache (which means no GUID) but exists in database table POSMAPN. We have tried to delete it using standard SAP inconsistent order deletion program and also using BAPI B

  • Punchout catalog issue

    I have several punchout catalogs working fine, except for one that I cannot connect the supplier's website. The set up is the same as with other punchout catalogs that I have. The error I get with this one is that access is denied. The supplier assur

  • Single BPEL process to server different system?

    Hi All, I have one source system and have three target system. Source System - S1 (Oracle System) Target System - T1, T2, T3 (oracle System) I need to pass supplier data from S1 to T1, T2, T3. I need to create only one single BPEL process to acheive