Creating Labels in Mail forms

Hello everyone,
I'm currently working on a CRM Marketing implementation.
We are using the Segment builder to create target groups and then either send emails or print mails to the Business partners in that target group.
Is it possible to create and print labels using the Mail Forms in that scenario?
Thanks for your help

Hi Jacques,
You can even try with the File Export Function. The file-export function enables you to create a file with a list of business partners and corresponding specified attribute values. You can use this file for further processing, for example, to send to a lettershop for printing prior to sending as direct mail for example.
During campaign execution, a file is created in CSV or XML. format and attached to the corresponding campaing (according to configuration settings)
The content of the file is defined in the same way as with the mail forms. Each line in the mail form will represent a different column in the data file.
Step1: Define File Export Variant
Transaction Code SPRO->CRM->Marketing->Marketing Planning and Campaign Management->Campaing Execution->Define FIle Export Variants.
Step 2: Define Communication Medium
Transaction Code SPRO->CRM->Marketing->Marketing Planning and Campaign Management->Campaign Execution->Define Communication Medium
Step3: Create Mail Form
For more information, please go through the link provided below:
[http://help.sap.com/saphelp_crm60/helpdata/en/4a/35d4fa296a4064a53c929d79983362/frameset.htm]
Hope this helps you
regards
Srikantan

Similar Messages

  • Creating a simple mail form

    Hi,
    I want to create a simple mail form using portal. The form must not use the HTML "mailto:", cause this requires a mail client to be installed at the customers computer. So I want to use the UTL_SMTP package. I managed to send mails with this package, but the problem is: how do I build my form with lets say 3 fields, so that i can pass the entered values to the SendMail-Funtion? I tried to create a form based on a table, then add new items and delete the table-based-items, but that doesnt work. I cant access the not table-based-items and found the reasons for that in the forums here. Then I tried to do it with a dynamic page, but I didnt succeed in calling my send-mail-function from the dynamic page. How can I do it?
    Bye,
    Pascal
    null

    Pascal,
    You can use something like this:
    Create two tables:
    1) Table1
    (id NUMBER PRIMARY KEY, sender varchar2(100),
    recipient varchar2(100) ,message varchar2(3000) ,subject varchar2(200))
    2) Table2
    (id NUMBER , sender varchar2(100),
    recipient varchar2(100) ,message varchar2(3000) ,subject varchar2(200))
    Here Table2 & Table1 are identical. You can use only one table if you do not want to maintain the history of the mails sent.
    Base your form on "Table1".
    Now pass whatever values you want to pass you can base it through this form to the table1(I mean INSERT).
    Calling utl_smtp directly from here won't be a good idea because your form will hang unless the mail is sent.
    So create a procedure for sending mails:
    it should be something like this:
    create or replace procedure send_email (sender IN varchar2, recipient IN varchar2,
    message IN varchar2, subject IN varchar2)
    is
    mailhost varchar2(30) := 'your mail host';
    mail_conn utl_smtp.connection;
    Vhelo utl_smtp.reply;
    Vvrfy utl_smtp.reply;
    Vmail utl_smtp.reply;
    Vrcpt utl_smtp.reply;
    Vdata utl_smtp.reply;
    Vquit utl_smtp.reply;
    Vtemp number;
    VMsg varchar2(4000);
    begin
    VMsg := 'Subject:'| |subject| |chr(10)| |message;
    mail_conn := utl_smtp.open_connection(mailhost,25);
    Vhelo := utl_smtp.helo(mail_conn, mailhost);
    Vvrfy := utl_smtp.vrfy(mail_conn, recipient);
    Vmail := utl_smtp.mail(mail_conn, sender);
    Vrcpt := utl_smtp.rcpt(mail_conn, recipient);
    vdata := utl_smtp.data(mail_conn, VMsg);
    Vquit := utl_smtp.quit(mail_conn);
    -- Handle the error
    end;
    create or replace procedure call_send_email
    cursor Cur1 is
    select * from table1;
    is
    for vcur1 in cur1
    loop
    send_email(vcur1.sender, cur1.recipient, vcur1.message, vcur1.subject);
    insert into table2 values(vcur1.id,vcur1.sender, vcur.recipient,
    vcur1.message, vcur1.subject);
    delete from table1 where id = vcur1.id;
    End Loop;
    commit;
    exception
    --handle exception
    end;
    now call this procedure (call_send_mail) from dbms_job
    Hope this helps,
    Chetan.

  • Create a simple mail form

    Hi,
    I want to create a simple mail form using portal. The form must not use the HTML "mailto:", cause this requires a mail client to be installed at the customers computer. So I want to use the UTL_SMTP package. I managed to send mails with this package, but the problem is: how do I build my form with lets say 3 fields, so that i can pass the entered values to the SendMail-Funtion? I tried to create a form based on a table, then add new items and delete the table-based-items, but that doesnt work. I cant access the not table-based-items and found the reasons for that in the forums here. Then I tried to do it with a dynamic page, but I didnt succeed in calling my send-mail-function from the dynamic page. How can I do it?
    Bye,
    Pascal

    This question is best suited to the Oracle9iAS Portal Applications forum. But, have you tried a form based on a procedure?

  • To create varaibles in Mail Forms for Order Confirmation

    Hi All,
    I am having an requirement to send an email for order confirmation with some customer dependent data and some product data to be sent along in the mail, This has to be done through action.
    I want to use mail forms for this but in this I am not able to create variables in the mail form through which i can pass th value to the variables in the mail form.
    Please suggest what to do for variable creation in mail form.........
    Is there any standard oder confirmation template available as it is available for campaign??????
    Thanks and Reagrds
    Mayank

    Hi Mayank,
    I am not sure but u can try below standard smartforms :
    CRM_SERVICE_CONF_EXT
    CRM_ORDER_SERVICE
    Regards,
    Dipesh.

  • Sending Adobe form in perzonalized mail forms

    Hi
    I created a personalized mail form and I want to send the Adobe PDF form of the contract to the customer along with the personalized mail forms.
    I know how to send  a personalized mail form, but not sure how do we attach the generate the PDF and attach it to mail form through actions.
    Regards,
    Deepthi.

    Hi Bhargavi,
    In your action method first get the  FM name for your Adobe form using
    fp_function_module_name.
    Then you need to call Adobe form FM.Importing lv_formoutput.
    Then you need to call bcs interface. sample logic
    lcl_send_request - cl_bcs=>create_persistent( ).
    lv_pdfsize = zstrlen(  lv_formoutput-pdf ).
    lt_pdfcontent = cl_document_bcs=>xstring_to_solix( ip_xstring = lv_formoutput-pdf ).
    append the mail body to lt_text.
    append  mail subject to ls_subject.
    then
    lcl_document = cl_document_bcs=>create_document( i_type = 'RAW'
                                                                                            i_text = lt_text
                                                                                             i_length = '25'
                                                                                             i_subject = ls_subject ).
    atach pdf to mail using
    call method lcl_document->add_attachment
         exporting
         i_attachment_type = 'PDF'
         i_attachment_subject = ls_mail_sub
         i_attachment_size = lv_pdf_size
         i_att_content_hex = lt_pdf_content.
    lcl_send_request->set_documnt( lcl_document ).
    lcl_receipient = cl_cam_address_bcs=>create_internet_address( i_address_string = email id ).
    lcl_send_request->add_recipient( i_recipient = lcl_recipient ).
    lcl_sender = cl_cam_address_bcs=>create_internet_address( i_address_string = sender email id ).
    lcl_send_request->set_sender( i_sender = lcl_sender ).
    lv_sent_to_all = lcl_send_request->send( i_with_error_screen = 'x' ).
    commit work.
    Regards,
    Tejaswini P.

  • E-mail Form

    Hello.  I'm trying to create an e-mail form for one of my websites.  I do NOT want to use the mailto: command.  I want to setup the form so that when visitors click Send, the form sends that information to my e-mail address immediately.  I also want to setup a CAPTCHA system for security purposes.  How can I do this?  Thanks.

    Need to use server-side scripting with PHP or ASP.  This would depend on your web hosting provider.  If such options are not available you would need to use a third-party source.
    So, what language can you use on your server?

  • Accents donu00B4t appear in mail form (Mailing Campaigns)

    Hi Gurus,
    When we execute mailing campaigns there are some not common characters that don´t appear. These are characters with accent, €, ..., ñ, ...
    guía and the result in the customer mail is gua
    € and appears #
    ... and appears #
    ñ and appears nothing
    I´ve been cheching OSS in French, Russian... but without success because our language is Spanish
    Luis Angel Fernández

    Hi Luis,
    In the HTML code that you create in Personalized mail form you have to use entities instead of regular accents. (In the Personalized mail form click on the source and edit there directly).
    List of regular entities for various characters can be found here
    http://www.w3schools.com/tags/ref_entities.asp
    Also, please ensure that the system in which you are viewing email address supports UTF-8 characters. e.g. Eudora email clients do not support UTF-8 and you will continue to get problem of junk characters where you have special characters.
    Regards,
    Deepak

  • Mails forms in Campaign Management

    Hi Experts,
    I need to create a new mail for for the camapaign management.
    I have created a new mail form for the campaign, using the Attributes, Address and BP NO
    In Campaign creation under the Channel, Communication is selected as Email and in the Form: my mail form is displaying. When I try to execute,Error : TREX is not configured.
    please let me know how to configure this mail forms in sap crm 7 in campaign mgt, or whether some steps has been missed out  by me.
    regards.
    karthik
    Edited by: Karthik J on Feb 19, 2012 12:20 PM
    Edited by: Karthik J on Feb 19, 2012 12:24 PM

    Hi Karthik,
    In case of HV segmentation, may be you can check whether the TREX settings are maintained for the object ID : BPARTNER
    Path :CRM ->Marketing->Segmentation->High Volume Segmentation ->Define RFC Destination and Settings for TREX Index
    Hope this helps to resolve the error.
    Regards,
    Rashmi

  • Personalized Mail Form

    Hi Friend’s
    I created a Personalized Mail Form in Easy access in Dev server but I didn’t get any request no just that on showing Mail is save so how should I send that Personalized Mail Form Dev server to Qty Server?
    Plz give me the solution with Example plz
    Regard’s
    Mahesh Kumar
    My mail id is [email protected]

    hi
    I have a doubt . do we need mail forms whenever we r using send email in ICWC. actually when we are clicking on new email getting short dump which is coming from check_tracking_text method from the mail class.it is trying to get mail_form name but does not find any so giving dump.any help will be really appreciated
    thanks
    sonia

  • Maintaining mail forms

    hi
    Does anyone know how to create an e-mail form template? Inside the e-mail form are also form elements/variable, such as input field (for BP) and etc? How do I "call" variable (in this case BP)
    For example, I wish to say in the E-mail:-
    <b>Hello    <i>text field box goes here</i>   ,
    blah blah blah</b>
    - A step by step guidance OR documentation on doing this would be great....

    HI Charlene sue,
    In Tcode CRMD_EMAIL_TEMPL1, click on create icon and then select an existing mail(source mail) template and create a new one (target mail) for urself
    click continue..
    You can copy the existing one and then make changes.
    Once you are in, in the email template form editor page, you can enter watever text you want.. in addition if you want thigns like plae holders for BP no , BP name etc.  you need to drag the respective objects to the editor page from the search locator --> Form tab page. Here you would seee a list of objects / attributes taht can be used in the mail form and thus can be dragged.
    Go ahead and drag some...:)
    Julius
    Its as simple as that.

  • How to create the Mail forms

    Hi All,
      Actually i am very new to Mail form . i got the requirement as i need to create the Mail form form sending the mail through campaig as well as i want to print the same form so please help me out how to do this, please help me out by providing some step by step process for creating the mail form and some technical stuff for printing the form
    Regatds
    Mohan

    Hi,
    Creating Mail form is multi stage. Have you created any survey.
    I believe its for CRM 7.0. Broad steps are
    1.Enter the CRM WebClient UI
    2.SAP CRM WebClient menu Marketing >> Create: Mail Form
    Mail Form for E-Mail
    1.On the Mail Form: New screen enter the following values:
    Field name     User action and values
    ID     Y_TRADE_SHOW_INVITATION
    Description     Trade Show Invitation
    Language     Original:English
    Usage     Internet Mail (HTML)
    Attribute Context     ERMS
    Subject     Trade Show Invitation
    2.In the Text Element screen area you can freely define the content of your e-mail in the text element.
    3.Choose New Text Element, enter the following data for the e-mail form text block and choose Create:
    Field name     User action and values
    Text Element ID FORM_LETTER
    Description Invitation
    Format HTML
    4.Enter a text for the new text element FORM_LETTER and design it according to your needs.
    If you want to upload a pre-defined text from an external source, choose Load Local File.
    5.In order to insert the generated survey URL into the text, choose Hyperlink.
    6.In the Insert Hyperlink web page dialog enter the following values and choose Insert:
    Field name User action and values
    URL <surveyURL>
    Description     Information Survey
    URL Category     
    Tracking Option Via Target Site
    7.Save your new mail form.
    Hope it helps.
    Rgds,
    Rajiv

  • My mail forms created by muse 2014.0.1.30 do not work. PHP 5.4 is enabled by hoster, so they should work. Can anyone help me, for these forms are crucial for my business.

    My mail forms created by muse 2014.0.1.30 do not work. PHP 5.4 is enabled by my hoster, so they should work. Can anyone help me, for these forms are crucial for my business. The forms confirm delivery, but the mails are not recieved. No spam filters enabled.
    Meanwhile, I was able to narrow the problem down: PHP seems not to accept a re-directed mail address as sender of the mail in some cases. So, it has nothing to do with the mail form itself.

    Hi Ingo,
    Please refer to this document, Troubleshooting Muse Form Widgets Used on Third-Party Servers
    Last section, "I've uploaded my new Muse form, and tried submitting it in the browser, but I never receive an email with the form data. What's wrong?"
    - Abhishek Maurya

  • Create mail form in CRM

    Hello everyone,
    I'm trying to create new mail form in the CRM (tran " CRMD_EMAIL")  with new structure that we defined.
    The problem is that we can't find a way to fill it with our data.
    To be more specific: when I create the form, the fields that we import from the standard structure are shown, but the fields from our new structure are empty.
    How can we fill them?
    Thank you very much,
    Ronen

    Hello everyone,
    I'm trying to create new mail form in the CRM (tran " CRMD_EMAIL")  with new structure that we defined.
    The problem is that we can't find a way to fill it with our data.
    To be more specific: when I create the form, the fields that we import from the standard structure are shown, but the fields from our new structure are empty.
    How can we fill them?
    Thank you very much,
    Ronen

  • How to transport mail form created in CRMD_EMAIL ????

    Hi All,
          How to transport a mail form created in CRMD_EMAIL ????
    Regards,
    Ashish

    Hi Easwar,
           Thanks for replying !!!!
    I tried to open up the Form in Tx SMARTFORMS, but it doesnt.
    I also tried to change the package by choosing Object directory entry. Even that does not work.
    Can you please explaing to me how I transport it using Tx SE01 ????
    Regards,
    Ashish

  • Create a mail form for Marketing

    Hi,
    I want to create a mail form in Marketing, but before loosing my time trying to understand how it works, it would be very useful if some one has a guide or anything similar to do step by step a nice mail form, with pictures, logos, ....
    If so send it please to [email protected]
    Rewards points if helpful.
    Thanks,
    TPT

    Hi,
    The steps to create a mail form in marketing is available in the Best Practices for Lean Campaign Mangement C22 in the following link http://help.sap.com/bp_crmv250/CRM_DE/BBLibrary/html/BBlibrary.htm
    I understand that you dont want to lose time to understand how it works, but to be good at the job you need to know it and the only way to know it is to do it yourself without help as it will be very good learning for you as well
    Regards
    Rekha Dadwal

Maybe you are looking for