Smartforms Triggered as Email (PDF) Via Action Profile, How To Set sender Details??

Hi all,
Me sending service Quotation to customer as email by using action profile. problem facing here is, while sending email, sender name is going sy-uname so i was trying to set some default name in From address of mail body. Actually standard class and method which i used for this process is  "CL_DOC_PROCESSING_CRM_ORDER=>CRM_SRVORDER_EXEC_SMART_FORM" . In this method signature is_mail_sender is empty while processing and this parameter is used as importing parameter while calling FM "Function_Name" . Can any one give me some idea how to do this  customization.
call function function_name
          exporting
               archive_index        = is_archive_index
               archive_index_tab    = ct_archive_index_tab
               archive_parameters   = is_archive_parameters
               control_parameters   = control_parameters
               mail_appl_obj        = is_mail_appl_obj
               mail_recipient       = is_mail_recipient
               mail_sender          = is_mail_sender
Thanks all,
Anbu

Hi Anbu,
I believe note 573736 content will help you
Kind regards,
Garcia

Similar Messages

  • Smartform Mail Sending via Action profile

    Hi,
    we have a big problem, because our sended emails going into customers spam filter. We hava SAP CRM 5.0 and we send the emails via action profile.
    For that we use the standard for sending smartforms via action profile. Follwing problems are occured:
    1) email recipient is fill only in the cc field, not in the to field of an email
    2) the subjet ist the sam as the dcument name
    3) the emial is sended without text only whith attachment
    So my question are:
    how can i customize that the email is wirtten in the to field and how i can change the subject of this mail.
    Is ist possible to add a text to the email? Maybe not, but than we could add a disclaimer in the mail hub - so my firts questions are more importent for me.
    Thank you for your help
    Stefan

    Hi,
    To manipulate the subject Refer   Note 895550 - Name of Smart Form used as e-mail subject 
    Im not sure why the email recipient is in CC instead of To. Please check your Action settings. How are you determining the recipient? if it's by partner function, it should automatically be filled in To field.
    Smartforms can be sent either as Text or pdf attachment. This is controlled globally in SMTP settings in SCOT. I believe you can choose attachment option and also add some text by manipulating the Action class.
    HOpe this helps.
    Shaik

  • Error while saving a smartform in pdf with action profile in service order

    Hi experts,
    I have a problem in saving a smartform which is converted in pdf.
    WHat i m doing is.
    The action profile is configured with new Z class and Z method. CL_DOC_PROCESSING_CRM_ORDER and CRM_SRVORDER_EXEC_SMART_FORM.
    But when i click the button in the Order, i m able to save the pdf in local drive, but an error is coming in the Order page(at the bottom) "Action could not be executed successfully".
    The action has been setup with "Printonly" and "Smartforms print" in customization.
    I have a dount whether, this action Printonly is only to print the smartform ??? Or can we use just to save the smartform in pdf.
    But when i remove the pdf conversion and save dialog and try to print it directly, Its printing the smartform. No errors are coming.
    But guys, please help me on this. I have tried all the tricks i know.
    I just want to save a smartform in pdf with action profile configured.
    Thanks in advance.
    <REMOVED BY MODERATOR>
    KK
    Edited by: Alvaro Tejada Galindo on Mar 19, 2008 4:26 PM

    Hi;
    Did you checked
    Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1] << seems similar error like yours
    Forms FRM-92050, FRM-92100, FRM-92101, FRM-92102 Reference Guide [ID 444690.1]
    If its not help please enable trace
    How To Perform System Tracing For All Forms Runtime Processes? [ID 400144.1]
    Regard
    Helios

  • My email gets stuck in outbox, how can I send it? It won't even go into draft by saving it.

    My email gets stuck in outbox, how can I send it? It won't even go into draft by saving it.

    Hi organic4,
    Please see if the Mail Connection Doctor can help isolate the issue.
    Check ou the steps in
    OS X Mail: Troubleshooting sending and receiving email messages - Apple Support
    Thank you for visiting Apple Support Communities.
    Nubz

  • Send Smartform Email via Action Profile

    Hello,
    We have an Action Profile with a few actisn athat a workign perfectly.  I have added a new action to send  smartform via email when the the transaction is saved.
    The Action profile is set upfor object type BUS2000115(Quotation) with the context class of CL_DOC_CONTEXT_CRM_ORDER.
    I have set up the Smartform Email action processing as follows:
    Permitted processign type fo Action - Smartform Email
    Mail Settings:
    Form Name                       YC3_SF_CRM_COMM_QUOTATION_V7
    Processing Class              CL_CRM_BP_UM_PROCESSING_PPF
    Processing Method           UM_EXEC_SMART_FORM
    Archive Mode                    Mail only
    there is no schedule or start condition as it is not required.
    When I Save the Quotation nothing is getting triggered.  If in the Quotation I Preview output and select 'Email Quotation; I get the message 'Smartform Error'.  Is there a way to debug the message further ?  I'm assuming this is the SAP standard method of achieving Smartform email as Pdf attachment, are some steps that I have missed ?
    Regards
    Chan

    The Processing class and Processing Method seem to be incorrect.
    Use the below;
    Processing Class  : CL_DOC_PROCESSING_CRM_ORDER
    Processing Method: CRM_ORDER_EXEC_SMART_FORM
    You can always refer to standard action profile for Quotations to see what SAP has delivered.

  • Convert smartform output in to PDF using CONVERT_OTF function  how to do it

    Hi Anil , and  Hi All
             I am trying to display smartforms output in java webdynpro
             for that i have got the following code in sdn.
               can anybody please clarify these doubts in the  below code
               1) What are the mandatory input and output parameters
                   I have to pass here in this code to my application
               2) please check my previous post also in this regards please
       . Please reply at the very earliest. Check the below code
    Convert smartform output in to PDF using CONVERT_OTF function module and you can write pdf using parameter 'binfile' of this function in WebDynpro using the following code:
    It is copied from my prg. I hope you understand it.
    public void onActionGetQuote(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionGetQuote(ServerEvent)
    wdThis.wdGetOppt_QwriterCustController().executeZquote_Writer_Input();
    String fileName = wdContext.currentZquote_Writer_InputElement().getOrder().toString().trim() + System.currentTimeMillis() + ".pdf";
    String pdfOutput = new String(wdContext.currentOutputElement().getBinfile());
    if (pdfOutput != null)
    try
    String pdfResoucePath = WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(), fileName);
    FileOutputStream fileOutputStream = new FileOutputStream(new File(pdfResoucePath));
    PrintStream ps = new PrintStream(fileOutputStream);
    ps.print(pdfOutput);
    ps.close();
    //Display the PDF to the browser
    String fileURL = WDURLGenerator.getAbsoluteWebResourceURL(wdComponentAPI.getDeployableObjectPart(), fileName);
    IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(fileURL, "Pdf Browser", false);
    window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
    window.removeWindowFeature(WDWindowFeature.MENU_BAR);
    window.removeWindowFeature(WDWindowFeature.STATUS_BAR);
    window.removeWindowFeature(WDWindowFeature.TOOL_BAR);
    window.open();
    // To collect all the file created in the server by user
    quoteFiles.add(quoteFiles.size(), pdfResoucePath);
    } catch (Exception e)
    throw new WDRuntimeException(e);
    //@@end

    Hi
        ABAPers prepared a BAPI function module which calls Smart form , how can i execute it from java Webdynpro, so that I can display the smart form in Webdynpro. Pleas reply at the very earliest.  Every answer will be rewarded.
    regards
    jalandhar

  • I have suddenly been getting a lot of fraud emails.  Does anyone know how to set up blocks?

    Hello,
    I have been suddenly getting tons of fraud emails.  This has never been a problem in my mack mail in the past. Does anyone know how to set up blocks?  I have searched through preferences but have not been able to find any way to do it.  Bounce is of no use as these emails are not "respondable".
    Gabrielle

    Hi Gabrielle,
    If you're using Mail, open Mail > Mail menu > Preferences > Rules > Add Rule > set the parameters you want.

  • ACR 4.4 Profiles, how to set them as standard

    Hello All,
    With Lr 1.4.1, and the new ACR camera profiles, how do I make LR use them on all the new images that I am importing. Since updating .4.1 every image that I import uses the older profile (4.2?) Any how, I had read that after you update to .4.1 that every image imported after that would automatically use the new profile....
    How do I make this happen?
    I understand that it will not be automatic on images pre-existing in LR prior to .4.1...
    Thanks

    By default if an image has _NOT_ had settings applied, the new 4.4 profile WILL be used for new settings. But I'm pretty sure any image already in Lightroom will need to have the 4.4 profile newly set. An easy way to do this for existing images is to do a new Develop Preset changing _ONLY_ the Calibrate section (after selecting the 4.4 profile in an image in Develop).
    Then you can select all in the Library and apply the 4.4 preset to all raw images (it's not applicable for non-raw files).
    Then, to make sure the 4.4 profile is used for all new imports from your camera, you should take an image from each of your cameras, select Develop and without altering the rest of the parameters (you want to start FROM the current default) change the Calibrate drop down to the 4.4 profile and then save that as the new default for your camera/cameras...

  • I understand how to convert a file to PDF format, but not how to then send it as an attachment

    How to you retrieve and attach a file which has been converted to PDF format to an email?

    I don't really understand your question since you don't say whether you are trying to send to or from iPad. However on the assumption that you want to send from iPad, if you have Pages on your iPad then you can just go to the "My Documents" screen of Pages and then choose the leftmost icon at the bottom that has an arrow out of it, then choose email document and select whether you want to email it as a pdf, word or pages document.

  • PDF Off-Line Display:  how to set to 100%

    Hello,
    I have created an offline Adobe Form which is sent to the user via e-mail.  Is there a way either through the Form in SFP or my ABAP that sends to form to set the display of the PDF so it always defaults to 100%? 

    Hi Janice,
    Please check the XML Source code for selected zoom percentage. set the value over there.
    or put your values in java script editor (Palettes-> script editor).
    Regards,
    Ramya R

  • Multiple fax/email contacts for same Vendor - How to set it up for Output

    Hi All
    We have two different plant using same vendor A but their contacts are different.
    for example. Plant 1000 has the contact as Rep1 with fax 1 and email1
                       and Plant 2000 has the contact as Rep 2 with fax 2 and email 2
    We would like to send the PO output to corresponding contact persons w.r.t.plant.
    in our communication block in vendor master we have standard communication type to only one email address.
    Please suggest
    Thanks
    Sasi

    Hi
    In vendor master you need to use either vendor subrange or data retension at plant level. It is available in purchasing data additional view. (Check in top menu).
    Then you need to have partner function with different ordering address. Because for every vendor subrange or data retension at plant you can have different purcahsing data and partner function.
    Read SAP libraray and test in development cycle, it will help you.
    Regards
    Antony

  • Trying to send photos and message in iphotos.  Does not send saying your email did not go through because the serve did not reply, check your internet connection.  I can send ordinary emails, server is connected.  How do I send please.  Margee

    I am trying to send photos using iphotos.  I just get a message saying your email did not go through because the serve did not reply, check your internet connection.  Everything else is working, I can send normal emails and attach photos but not iphotos.  What have I missed?  Margee

    I am trying to send photos using iphotos.  I just get a message saying your email did not go through because the serve did not reply, check your internet connection.  Everything else is working, I can send normal emails and attach photos but not iphotos.  What have I missed?  Margee

  • Using TB 24.6.0, to send eMails in txt only format, how do I send images in-line?

    I think all the details are in the question.

    No need to ask repetitive questions.
    See your original question.https://support.mozilla.org/en-US/questions/1029322#answer-649488

  • Action Profiles problem

    Hi All,
    I have an action profile(Method Call) which sends an E-Mail notification for Sales Quotation. This triggers when the status is changed to approved and the document is saved. The E-Mail notification is sent but the Indicator in the scheduled actions(Web UI) is incorrect(and indicator is in red). Can any 1 help me?
    Regards,
    Pradeep.

    Hi Pradeep,
    Please check if you have set the parameter rp_status = '1' when the email has been sent successfully.
    Regards,
    Shobhit

  • Trying to create a fillable, savable, emailable PDF!!

    I have been able to create a fillable, savable, emailable PDF, but when I have my peers send me the response via email it is unviewable by me.  Can you please help?!?

    What kind of file are you getting back (assuming Reader) -- PDF, FDF, or XML? If one of the 2 latter file types then use the Forms>Manage Data>Import after you open the basic form in Acrobat.

Maybe you are looking for