Custom Workflow for sending Remainder mail in MS CRM 2013/2015 online

Hi All,
We have a requirement to send a remainder email before 5 days,3 days and on the same day of the M/TC date in lead form. To achieve this we tried using Custom Workflow. Below is the logic tried but in the highlighted line
not able to retrieve the "M/TC date" value, this results in no output.
Kindly suggest where we are going wrong or a best approach to do this.
Parameters:
        [RequiredArgument]
        [Input("InputEntity")]
        [ReferenceTarget("lead")]
public
InArgument<EntityReference>inputlead
{ get;
set; }
        [Output("TaskCreated")]
        [ReferenceTarget("task")]
public
OutArgument<EntityReference>
taskCreated { get;
set; }
code:
            try 
            Entity lead
= (Entity)service.Retrieve("lead",
context.PrimaryEntityId, new ColumnSet(newString[]
{ "new_mtcdate" })); //  (unable to
retrieve the mtcdate)            
                  Guid leadId
= this.inputlead.Get(executionContext).Id;
                if(lead.Contains("new_mtcdate"))
                  {  DateTime date
= DateTime.Now;
                      DateTime mtcdate
= (DateTime)lead["new_mtcdate"];
                      TimeSpan elapsed
= date.Subtract(mtcdate);
                      double days
= elapsed.TotalDays;
                      Entity task
= new Entity();
                      task.LogicalName = "task";
                      if (days
== 5)
                      {task["subject"]
= "Five days more for the Meeting";
                          task["regardingobjectid"]=new EntityReference("lead",leadId);
                           Guid taskId
= service.Create(task);
                        this.taskCreated.Set(executionContext,new EntityReference("task",
taskId));}
                      if (days
== 3)
                      {task["subject"]
= "Three days more for the Meeting";
                          task["regardingobjectid"]=new EntityReference("lead",leadId);
                           Guid taskId
= service.Create(task);
                        this.taskCreated.Set(executionContext,new EntityReference("task",
taskId));}
                      if (days
== 0)
                      {task["subject"]
= "Today you have Meeting";
                          task["regardingobjectid"]=new EntityReference("lead",leadId);
                           Guid taskId
= service.Create(task);
                        this.taskCreated.Set(executionContext,new EntityReference("task",
taskId));
Regards, Rekha.J

Hi,
Try with replacing
Entity lead = service.Retrieve("lead", context.PrimaryEntityId, new ColumnSet(new string[] { "new_mtcdate" }));
also make it confirm, you are getting EntityId.
Also check  Link

Similar Messages

  • Workflow for sending reminder mail to approve pending PO in me28

    Hi Experts,
    I have a requirement wherein I have to design a workflow to send a mail to the approver if he has not approved the PO in me28.
    I don need a workflow for PO approval . Only in the case he forgets to approve a PO for one day he needs to get a mail .
    Kindly guide me . Quick help is appreciated

    Hello,
    Design a workflow template which is triggered when the PO is created. Make the template wait for the event 'RELEASED' which is to be triggered once the PO is released. If the event is received, complete the workflow or else, design the deadline monitoring to send a mail to the concerned person if PO is not released.
    You need to take care of the event creation after the PO is released and deadline monitoring of the step in the workflow template.
    If this is not possible, you can create a program which collects all the POs which are not released within a day of creation and send a mail to the concerned people from the program itself. You have to schedule this program daily at a particular time to send the mail. You do not need a workflow for this.
    Hope this will help.
    Thanks,
    Samson

  • How to capture the screen for sending the mail

    dear sir,
                      How to capture the screen for sending the mail .. Is there any funtion module or anyother way ? .. How to do this .. Please tell me..
    Regards,
    Kumar

    dear sir,
    s thats my problem ?
    Regards,
    kumar

  • Built-in class for sending e-mail?

    Is there a built-in class for sending e-mail in ABAP?

    Hello
    No that i know...but check this:
    *& Report  YMAIL
    *& uses sap script
    REPORT  YMAIL.
    DATA: ITCPO LIKE ITCPO,
    TAB_LINES LIKE SY-TABIX.
    Variables for EMAIL functionality
    DATA: MAILDATA LIKE SODOCCHGI1.
    DATA: MAILPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: MAILHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: MAILBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC LIKE SOMLREC90 OCCURS 0 WITH HEADER LINE.
    DATA: SOLISTI1 LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    PERFORM SEND_FORM_VIA_EMAIL.
    FORM SEND_FORM_VIA_EMAIL *
    FORM SEND_FORM_VIA_EMAIL.
    CLEAR: MAILDATA, MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    REFRESH: MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    Creation of the document to be sent File Name
    MAILDATA-OBJ_NAME = 'TEST'.
    Mail Subject
    MAILDATA-OBJ_DESCR = 'Subject'.
    Mail Contents
    MAILTXT-LINE = 'Here is your file, would you check it?'.
    APPEND MAILTXT.
    Prepare Packing List
    PERFORM PREPARE_PACKING_LIST.
    BREAK gpulido.
    Set recipient - email address here!!!
    *MAILREC-RECEIVER = '[email protected]'.
    MAILREC-RECEIVER = '[email protected]'.
    MAILREC-REC_TYPE = 'U'.
    APPEND MAILREC.
    Set recipient - email address here!!!
    *MAILREC-RECEIVER = 'BGIRALDO'.
    *MAILREC-REC_TYPE = 'B'.
    *APPEND MAILREC.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = MAILDATA
    PUT_IN_OUTBOX = 'X'
    TABLES
    PACKING_LIST = MAILPACK
    OBJECT_HEADER = MAILHEAD
    CONTENTS_BIN = MAILBIN
    CONTENTS_TXT = MAILTXT
    RECEIVERS = MAILREC
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    OPERATION_NO_AUTHORIZATION = 4
    OTHERS = 99.
    submit rsconn01 with mode = 'INT' and return.
    CASE SY-SUBRC.
      WHEN 0.
        WRITE: / 'Result of the send process:'.
        LOOP AT MAILREC.
          WRITE: / mailrec-RECEIVER(48), ':'.
          IF mailrec-RETRN_CODE = 0.
            WRITE 'sent successfully'.
          ELSE.
            WRITE 'not sent'.
          ENDIF.
        ENDLOOP.
      WHEN 1.
        WRITE: / 'no authorization to send to the specified number of'
      WHEN 2.
        WRITE: / 'document could not be sent to any of the recipients!'.
      WHEN 4.
        WRITE: / 'no authorization to send !'.
      WHEN OTHERS.
        WRITE: / 'error occurred during sending !'.
    ENDCASE.
    ENDFORM.
    Form PREPARE_PACKING_LIST
    FORM PREPARE_PACKING_LIST.
    CLEAR: MAILPACK, MAILBIN, MAILHEAD.
    REFRESH: MAILPACK, MAILBIN, MAILHEAD.
    DESCRIBE TABLE MAILTXT LINES TAB_LINES.
    READ TABLE MAILTXT INDEX TAB_LINES.
    MAILDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( MAILTXT ).
    Creation of the entry for the compressed document
    CLEAR MAILPACK-TRANSF_BIN.
    MAILPACK-HEAD_START = 1.
    MAILPACK-HEAD_NUM = 0.
    MAILPACK-BODY_START = 1.
    MAILPACK-BODY_NUM = TAB_LINES.
    MAILPACK-DOC_TYPE = 'RAW'.
    APPEND MAILPACK.
    Creation of the document attachment
    This form gets the OTF code from the SAPscript form.
    If you already have your OTF code, I believe that you may
    be able to skip this form. just do the following code, looping thru
    your SOLISTI1 and updating MAILBIN.
    PERFORM GET_OTF_CODE.
    LOOP AT SOLISTI1.
    MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
    APPEND MAILBIN.
    ENDLOOP.
    DESCRIBE TABLE MAILBIN LINES TAB_LINES.
    MAILHEAD = 'TEST.OTF'.
    APPEND MAILHEAD.
    Creation of the entry for the compressed attachment
    MAILPACK-TRANSF_BIN = 'X'.
    MAILPACK-HEAD_START = 1.
    MAILPACK-HEAD_NUM = 1.
    MAILPACK-BODY_START = 1.
    MAILPACK-BODY_NUM = TAB_LINES.
    MAILPACK-DOC_TYPE = 'OTF'.
    MAILPACK-OBJ_NAME = 'TEST'.
    MAILPACK-OBJ_DESCR = 'Subject'.
    MAILPACK-DOC_SIZE = TAB_LINES * 255.
    APPEND MAILPACK.
    ENDFORM.
    Form GET_OTF_CODE
    FORM GET_OTF_CODE.
    DATA: BEGIN OF OTF OCCURS 0.
    INCLUDE STRUCTURE ITCOO .
    DATA: END OF OTF.
    DATA: ITCPO LIKE ITCPO.
    DATA: ITCPP LIKE ITCPP.
    CLEAR ITCPO.
    ITCPO-TDGETOTF = 'X'.
    Start writing OTF code
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    FORM = 'YSEND_MAIL'
    LANGUAGE = SY-LANGU
    OPTIONS = ITCPO
    DIALOG = ' '
    EXCEPTIONS
    OTHERS = 1.
    CALL FUNCTION 'START_FORM'
    EXCEPTIONS
    ERROR_MESSAGE = 01
    OTHERS = 02.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    WINDOW = 'MAIN'
    EXCEPTIONS
    ERROR_MESSAGE = 01
    OTHERS = 02.
    Close up Form and get OTF code
    CALL FUNCTION 'END_FORM'
    EXCEPTIONS
    ERROR_MESSAGE = 01
    OTHERS = 02.
    MOVE-CORRESPONDING ITCPO TO ITCPP.
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
    RESULT = ITCPP
    TABLES
    OTFDATA = OTF
    EXCEPTIONS
    OTHERS = 1.
    Move OTF code to structure SOLI form email
    CLEAR SOLISTI1. REFRESH SOLISTI1.
    LOOP AT OTF.
    SOLISTI1-LINE = OTF.
    APPEND SOLISTI1.
    ENDLOOP.
    ENDFORM.
    Bye Gabriel

  • Debug background task in custom workflow for PO change

    Hi,
    We are on ECC 6.0 EHP7.
    I have a custom workflow for PO object type(delegated to std object type BUS2012).
    There is a background task which has some custom code written and I need to debug this code.
    Can someone please let me know how to debug a background task?
    Thanks.

    As suggested by ronen we can debug through swo1 but we have to pass values manually for importing parameters, by using sm50 also we can do debug and there is one more way  to debug
    if its custom task change background  task to fore ground and change business object method also change it to fore ground and activate the work flow.
    now change any  po  then it will stop at that step now take that work item id in swi1 and go to swia and execute after putting break point in that method of business object.
    But best way to debug  through infinite loop i.e sm50.
    suri

  • Custom workflow for manual merch projects

    Hi,
    Having issues in configuring custom workflow.
    In ATG10.0.3 created a custom workflow(editCommerceAssets.wdl) & configured with catalog import job (importing thru spreadsheet & creating a Merch project).This works successfully.
    I am trying to configure this custom workflow for manually created projects in BCC.
    In the following files I tried replacing commonWorkflow.wdl to editCommerceAssets.wdl.
    <localconfig>\atg\commerce\web\assetmanager\taskConfiguration.xml
    <localconfig>\atg\commerce\web\workflowActivities.xml
    But getting this error in pub console:
    10:13:23,195 WARN [ActivityManager] The workflow activity with ID /Common/commonWorkflow.wdl has been registered multiple times for the same workflow. Please verify your workflow
    configuration as this is not allowed.
    10:14:40,453 ERROR [ApplicationManager] There is no application configured with ID '/Common/commonWorkflow.wdl'.
    Any recommendations?
    Thanks!
    Mani
    Edited by: user11263665 on Oct 17, 2012 9:38 AM

    It is possible that the workflow has already been registered in db before you modified workflowActivities.xml.Did you try cleaning up workflow tables and restart the server??
    epub_workflow_info, epub_coll_workflow, epub_ind_wf,epub_wf_server_id tables
    Make sure there is only one entry for each workflow in epub_workflow_info. If there are multiple entries, then it may be coming from 2 different places and you need to disable one of them. Whenever you create custom work flow, copy the existing workflow and modify it and give it a different name. If you are importing programmatically, you really dont need to configure it in taskConfiguraiton.xml ( as it corresponds to settings related to which item-descriptors, tabs, security in BCC gui).
    -karthik

  • Slow up loading for sending E mail with attachments

    Slow up loading for sending E mail with attachments. It takes a long time to send most attchments. I'm on cable and had no problems prior to changing to Mac.com

    You need to start in the app that contains the file that you want to send as an attachment, and use that app's functionality (assuming that it has it) to select the file and connect it to an email - you can't start in the Mail app itself

  • Any BAPI or FM for sending e-mail

    Hi All,
    Is there a BAPI or FM for sending e-mail.
    Regards
    Nikhil Bansal

    Hi,
    try with this FM:
    <b>SO_NEW_DOCUMENT_SEND_API1</b>
    Reward points for helpful answers.
    Best regards,
    Gianluca Barile

  • Custome Workflow will send mail after 6 months from a document added

    Hi,
    I have created a custom sequential workflow in Visual studio. As per the requirement, the workflow will send mail to approvers after 6 months from the document added date. Is that possible? I don't want to use timer job, as there is some other issue. Can
    I do the same in workflow itself? Which event will work for the same?
    Thanks

    Hi,
    You can setup retention policy to start workflow after 6 months from created date:
    http://blogs.askcts.com/2013/05/14/creating-a-timed-workflow-in-sharepoint-2010/
    http://community.office365.com/en-us/f/154/t/252993.aspx
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

  • Sending remainder mail  in Workflow

    Hi All,
    Please tell me How  to send a remainder mail to employee for after every 5 days.
    Thanks,
    Kumar.

    Hi Raju,
    <li>Develop one Z* program to send mail what matter you want to send.
    <li>You can schedule job with job frequency 5 days in Tcode SM36.
    <li>program to send mail
    <font color=blue><b><pre>   REPORT  zvenkat_mail_simple.
       "Variables
       DATA :
            g_sent_to_all   TYPE sonv-flag,
            g_tab_lines     TYPE i.
       "Types
       TYPES:
            t_document_data  TYPE  sodocchgi1,
            t_packing_list   TYPE  sopcklsti1,
            t_attachment     TYPE  solisti1,
            t_body_msg       TYPE  solisti1,
            t_receivers      TYPE  somlreci1.
       "Workareas
       DATA :
            w_document_data  TYPE  t_document_data,
            w_packing_list   TYPE  t_packing_list,
            w_attachment     TYPE  t_attachment,
            w_body_msg       TYPE  t_body_msg,
            w_receivers      TYPE  t_receivers.
       "Internal Tables
       DATA :
            i_document_data  TYPE STANDARD TABLE OF t_document_data,
            i_packing_list   TYPE STANDARD TABLE OF t_packing_list,
            i_attachment     TYPE STANDARD TABLE OF t_attachment,
            i_body_msg       TYPE STANDARD TABLE OF t_body_msg,
            i_receivers      TYPE STANDARD TABLE OF t_receivers.
       PARAMETERS:p_mail TYPE char120.
       "start-of-selection.
       START-OF-SELECTION.
         "Subject of the mail.
         w_document_data-obj_name  = 'MAIL_TO_HEAD'.
         w_document_data-obj_descr = 'Simple mail using SAP ABAP'.
         "Body of the mail
         w_body_msg = 'Hi,'.
         APPEND w_body_msg TO i_body_msg.
         CLEAR  w_body_msg.
         w_body_msg = 'This is body of the mail.'.
         APPEND w_body_msg TO i_body_msg.
         CLEAR  w_body_msg.
         "Write Packing List (Body)
         DESCRIBE TABLE i_body_msg LINES g_tab_lines.
         w_packing_list-head_start = 1.
         w_packing_list-head_num   = 0.
         w_packing_list-body_start = 1.
         w_packing_list-body_num   = g_tab_lines.
         w_packing_list-doc_type   = 'RAW'.
         APPEND w_packing_list TO i_packing_list.
         CLEAR  w_packing_list.
         "Fill the document data and get size of attachment
         READ TABLE i_body_msg INTO w_body_msg INDEX g_tab_lines.
         w_document_data-doc_size = ( g_tab_lines - 1 ) * 255 + STRLEN( w_body_msg ).
         "Receivers List.
         w_receivers-rec_type   = 'U'.     "Internet address
         w_receivers-receiver   = p_mail.
         w_receivers-com_type   = 'INT'.
         w_receivers-notif_del  = 'X'.
         w_receivers-notif_ndel = 'X'.
         APPEND w_receivers TO i_receivers .
         CLEAR:w_receivers.
         "Function module to send mail to Recipients
         CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
             document_data              = w_document_data
             put_in_outbox              = 'X'
             commit_work                = 'X'
           IMPORTING
             sent_to_all                = g_sent_to_all
           TABLES
             packing_list               = i_packing_list
             contents_txt               = i_body_msg
             receivers                  = i_receivers
           EXCEPTIONS
             too_many_receivers         = 1
             document_not_sent          = 2
             document_type_not_exist    = 3
             operation_no_authorization = 4
             parameter_error            = 5
             x_error                    = 6
             enqueue_error              = 7
             OTHERS                     = 8.
         IF sy-subrc = 0 .
           MESSAGE i303(me) WITH 'Mail has been Successfully Sent.'.
         ELSE.
           WAIT UP TO 2 SECONDS.
           SUBMIT rsconn01 WITH mode = 'INT' WITH output = 'X' AND RETURN.
         ENDIF.</pre></b></font>
    Thanks
    Venkat.O

  • SharePoint Designer 2013 Workflow not sending e-mails

    Hello everyone, it's me again.
    I have a problem with my custom workflow. A simple workflow made in SharePoint Designer 2013 with a "Send Mail" action isn't actually sending any e-mails.
    I am able to send mails with SharePoint 2013 with out-of-the-box workflows or alerts when sharing a page. The simple workflow is: Send Mail to TestUser after a new item has been created. 
    1) SMTP server has been configured and tested successfully, I am able to send mails
    2) The workflow gets "Completed" status even though I didn't actually receive a mail
    3) I double checked User Profiles and the e-mails are correct (I also checked in Active Directory)
    4) The User Profile Sync. Service is running and I even did a full sync
    5) Out of the box workflows are work perfectly fine
    I have no explanation why custom workflows won't send a mail. I can perform other actions like "change workflow status". 
    Any help please?

    Hi Ali,
    Please check if "send mail" action does not work in both SharePoint workflow 2010 platform and SharePoint 2013 platform.
    Please add the actions "log to history" before and after action "send mail" to check if the send mail action is performed.
    And you can also add "pause for a duration" before the "send mail" action, see if it could help.
    You may also check if there are some related ULS log.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Custom Workflow for Shipping Execution

    Hi All,
    We have a requirement to cater approval on issuance i.e. at the time of shipping execution. For this purpose we have used Oracle Workflow Builder to cater the requirement. The workflow is working fine for approval but not for rejection. If we approve the shipping execution, the transaction is working fine but if we rejects it, the shipping transaction got stuck with exception and if we resolve the exception manually, we are unable to re send it for approval or even shipping.
    I will be grateful if anyone can help me out and advise me on how to setup of workflow for rejection.
    Thanks in advance.
    Regards,
    Zulfiqar Ali Mughal

    It is possible that the workflow has already been registered in db before you modified workflowActivities.xml.Did you try cleaning up workflow tables and restart the server??
    epub_workflow_info, epub_coll_workflow, epub_ind_wf,epub_wf_server_id tables
    Make sure there is only one entry for each workflow in epub_workflow_info. If there are multiple entries, then it may be coming from 2 different places and you need to disable one of them. Whenever you create custom work flow, copy the existing workflow and modify it and give it a different name. If you are importing programmatically, you really dont need to configure it in taskConfiguraiton.xml ( as it corresponds to settings related to which item-descriptors, tabs, security in BCC gui).
    -karthik

  • Looking for .XSD for mail for sending the mail through mail adapter

    Hi Experts,
                      I am looking for .XSD file for sending mail.I am using Mail adapter to send mail to report error occur on creating PO document in my scenario to a specified department's email id.I searched for many blogs but not get any .XSD file for email.Looking for a suugesstion.
    Thanks
    Deepak

    Do you have S -user name and password? If not then never mind, Copy the below XSD, I took it from the link which I gave to you.
    <?xml version="1.0" encoding="utf-8" ?>
    <xs:schema targetNamespace="http://sap.com/xi/XI/Mail/30"
      xmlns:xi="http://sap.com/xi/XI/Mail/30"
      xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element name="Mail">
        <xs:annotation>
          <xs:documentation>Mail package for XI - Mail Adapter</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Subject" type="xs:string" minOccurs="0"/>
            <xs:element name="From" type="xs:string" minOccurs="0"/>
            <xs:element name="To" type="xs:string" minOccurs="0"/>
            <xs:element name="Reply_To" type="xs:string" minOccurs="0"/>
            <xs:element name="Content_Type" type="xs:string" minOccurs="0"/>
            <xs:element name="Date" type="xs:dateTime" minOccurs="0"/>
            <xs:element name="Message_ID" type="xs:string" minOccurs="0"/>
            <xs:element name="X_Mailer" type="xs:string" minOccurs="0"/>
            <xs:element name="Content" minOccurs="0">
              <xs:annotation>
                <xs:documentation>any type</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="encoding" type="xs:string"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="MailReceipt">
        <xs:annotation>
          <xs:documentation>Mail Receipt for XI - Mail Adaper</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Server" type="xs:string"/>
            <xs:element name="Format" type="xs:string"/>
            <xs:element name="UseMailPackage" type="xs:boolean"/>
            <xs:element name="Encoding" type="xs:string"/>
            <xs:element name="Subject" type="xs:string" minOccurs="0"/>
            <xs:element name="From" type="xs:dateTime" minOccurs="0"/>
            <xs:element name="To" type="xs:string" minOccurs="0"/>
            <xs:element name="Date" type="xs:dateTime" minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>

  • Is There a size limitation for sending e-mail photos

    I am using the latest version of MS Entourage and my mail account is with .MAC
    Yesterday I highlighted two pictures in iphoto and clicked the e-mail icon but was then unable to send the mail. I got an error message. I deleted one of the phtos and still got the error.
    I then discovered the size dialog box and clicked "small" and was able to send one photo.
    I can receive mail with up to 20 attached Jpg items, But can't forward the same e-mail message. Is there a size limitation in Entourage or in .mac.
    Thanks

    There is no such limit with Entourage or Apple's Mail application but email account providers have an overall message size limit for received and sent messages.
    .Mac has an overall message size limit of 10 MB for received and sent messages which is a typical limit but I have a few friends and business associates who have a smaller overall message size limit of 5 MB. Although I can send a message that is up to 10 MB in size with my .Mac account, the message will not be accepted by the incoming mail server for the friends and business associates with a 5 MB message size limit.
    All files attached to a message must be encoded before being sent and decoded when received. Most email clients such as Entourage and Mail use MIME for attachment encoding/decoding which is the internet standard. A problem with MIME is it isn't very efficient. The encoding process increases the size of the pre-encoded file by roughly 50% of so. A file that is 5 MB in size (pre-encoded) will be roughly 7.5 MB in size due to the encoding process.
    What was the exact error message provided?

  • Custom workflow for Fiori Approve Timesheets

    Hello All,
    I am investigating complexity of adding custom workflow to Approve Timesheets.
    There is BADI SRA010_BADI_TIMESHEET_APV.
    Any experiences/advices  ?

    Hi Lukasz,
    How do you change approver using data from Ztable in the current system?
    If you are talking about workflow approver determination logic, it is a job for Workflow Engine and not for Fiori.
    Regards, Masa
    SAP Customer Experience Group - CEG

Maybe you are looking for

  • How can I remove the SIM card from my 1st generation iPad?

    I am trying to recycle my first generation iPad and am told that I should remove m SIM card. I have the little "tool" with which to remove the card, but it doesn't seem to work!

  • Large Home Wireless Coverage

    Good evening, I have a fairly large home and I have grown tired of my lack of reliable wireless coverage.  I would like to update to the various apple components for my wireless and wired networking needs.  Bob, I have read many of your posts and am

  • Print PO before release

    I've implemented the PO release strategy, and I think the SAP standard is not allow print PO before released. I would like to know is it possible to print a termporary PO (another sapscript form) before Po released. Thanks!

  • Windows 8 and Raid 5 (English)

    Looking for confirmation that Windows 8 does not have the ability to use Raid 5 even if it is presented a single logical drive by a controller. I have a SABERTOOTH 990FX R2.0 that makes a drive. All the docs say Raid 0 and Raid 1. The Windows 8 and R

  • Use of Apple TV in a Mixed network

    I have my Apple TV connected to the network via an ethernet connection.  I have my laptop connected to the same network wirelessly.  Should Apple TV be able to see my iTunes library on my laptop? * if both Apple TV and Laptop are connected wirelessy,