Solved: Hello Gurus, I have an ABAP program that creates an email and sends it to a list of Users, this works with no problems, I'm using the CL_BCS class to do this. My
SAP Managed Tags: ABAP Development Hi, I have develop this code to send multiple HTML attachments using CL_BCS class Form f_send_html_mail. data: send_request type ref to cl_bcs. data: document type ref to cl_document_bcs. data: sender type ref to cl_sapuser_bcs. data: recipient ...
I want send an email using class CL_BCS. Can someone please help me to tell me how can we send the email with image embedded in the body? The image is stored in the mime repository and was uploaded through se78. I have searched online but am not able to send it. It will be grea...
https://www.samplecodeabap.com/alv-report-output-email-sap-abap/#comment-1510This utility report runs specified ALV report behind the scene and extract its output, converts that to csv and send it to email recipients. Very useful if you want to send output of report to user(s) ...
SAP Managed Tags ABAP Development Hi All, I'm using ECC 6.0 version, I'm trying to attach a pdf file to a mail using the function module SO_NEW_DOCUMENT_ATT_SEND_API1. But gtting error as "wasn't decoded correctly", but the same coding is working fine in 4.6 version. What changes...
SAP Managed Tags ABAP Development Hello, I want to send a mail with PDF attachment from SAP by programming...I have written code..Mail is sending..but the PDF file is not opened... My code is written under... CALL FUNCTION 'CONVERT_OTF' EXPORTING FORMAT = 'PDF' MAX_LINEWIDTH = 132...
SAP Managed Tags: ABAP Development You can send the email in the future using the OO methods as well. Just not well documented but if you dig into the class itself, you'll find that CL_BCS has a public attribute called SEND_REQUEST which is of type CL_SEND_REQUEST_BCS. This class ...
Thanks, Jim Reply All forum topics Previous Topic Next Topic 1 REPLY former_member244850 Explorer 2016 Jun 29 5:50 PM 0 Kudos 253 SAP Managed Tags: ABAP Development Hi All, I rewrote it using cl_bcs and it now works without issue. Thanks, Jim Reply ...
Can you please point me out, if I have to add anything , here? Scenaro:Workflow Send Mail step, has an exit which calls the Smartforrms and make as an attachment to the email. Workflow Exit Code: methodIF_SWF_IFS_WORKITEM_EXIT~EVENT_RAISED.* data type decleration for task elementdat...
My question is "How to send a foramtted Excel sheet (Developed using ABAP program by using OLE Automation Controller)" as an Attachment in a mail. I have checked CL_DOCUMENT_BCS->ADD_ATTACHMENT,which Imports a internal table of type SOLI_TAB / SOLIX_TAB and convert into unformatted Exce...