Campaign Code in Mail forms and Marketing Planner - Campaign

Hi Experts,
What is the purpose for campaign code field? How to generate this field value in Mail forms?
Why it appears in marketing planner - campaign.
Anybody please help.
Thanks in Advance,
Suvitha

Hi Dipesh
Thanks for your reply. I want to know how this campaign code is related to the product order number?
Where you will specify which product you are offering discount?
when u execute the campaign Campaign Code will be read from campaign. -- Can you explain me in detail this statement
Thanks in advance
Regards
Suvitha

Similar Messages

  • 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

  • Generate bar codes in mail forms

    Hi,
    I know how to insert Bar codes in smartforms, but I need to print the bar codes in Mail Forms, is that possible?
    Thanks a lot,
    Nuno Moreira

    Hi Gregor,
    What I need to do is:
    I have several mail forms treated as a standard response in ICWC. We are using the e-mail view (in ICWC) mainly to print the forms, via smartforms or in “online” mode without smartforms.
    So, at the moment, I have two questions:
    1) If I use a smartform to print the mail form, even if I create the form in plain text and create the bar code into mail form, when I print the “number” it is not converted in a bar code;
    2) If I generate the bar code in a mail form and I try to print it in ICWC e-mail view the number is not printed as a bar code too;
    Thanks a lot for your help and interest,
    Best Regards,
    Nuno

  • Email (mail form) response tracking in Campaign Management

    Hi ,
    There is a requirement in my project where we need to track the reponse of a campaign .
    We are executing campaigns through mail forms which are being sent to a selected  target group.
    We want  to track the number of people in the target group who have read the mail form and send a confirmation mail back to the sender.
    Can it be done through PRCu2019s (Personal Response Codeu2019s ) or Repsonse Id's .
    Could please guide  me  ?Any suggestions would be welcomed.
    Regards,
    Maroof

    Hi Satish
    Can you help me out with regard to redirection of URL as i am stuck with the same scenario as you explained in your answer, where i have to use Intermediate site option for sending links in email for the tracking for customers. I hvae done the config settings, it is works fine Internal nework, but i am not sure how i can do the re-direction of the URL. Can you please explain me
    example:
    I am sending email with following link
    https://www.xxx.com/customersupply/xxx.html (External Link)
    i need to re-direct to to our CRM system which is
    http://hxxxx.com:8000/ (CRM System)
    Thank you in advance
    regards
    shankar

  • Mail forms and ELM

    Hello All,
    Can anybody plz give me an idea of mail forms with file export and ELM in marketing....
    Regards
    Sarjit

    See these links to get basic idea of Mail forms.
    SAP help page on Mail Forms
    http://help.sap.com/saphelp_crm40/helpdata/en/82/dbfd38ccd23942e10000000a114084/content.htm
    Config Guide for lean Campaign Management. This gives some info on Mail form as well.
    help.sap.com/bp_htsw603/bblibrary/.../c22_bb_configguide_en_de.doc
    rgrds,
    Randhir

  • E Mail Forms and Spam Bots

    I have created a form and using a PHP script to forward the
    form results to an e mail account. How protected is this from
    harvesting the e mail address by spam bots? If this is not the best
    way to go, any suggestions on a better method. I'm familiar with
    captcha but would prefer not to have to use this.
    thnx
    Fred

    If the email address is ONLY mentioned in the PHP script,
    it's completely
    secure.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Fred1000" <[email protected]> wrote in
    message
    news:fahij6$576$[email protected]..
    >I have created a form and using a PHP script to forward
    the form results to
    >an
    > e mail account. How protected is this from harvesting
    the e mail address
    > by
    > spam bots? If this is not the best way to go, any
    suggestions on a better
    > method. I'm familiar with captcha but would prefer not
    to have to use
    > this.
    >
    > thnx
    > Fred
    >

  • Import java code applet into form and execute it

    Hi all.
    I'm on devsuite 10g.
    I have the following applet code:
    import java.applet.Applet;
    import java.awt.event.*;
    import java.awt.*;
    public class simple2 extends Applet
      implements MouseListener, MouseMotionListener {
          double r0 = 100.0;
          double r1 = 40.0;
        public void paint(Graphics g) {
          int n = 400;
          int x0=0,y0=0,x1,y1;
          for(int i=0;i <=n;i++)
               double rho   = 2*Math.PI*i/n;
               double theta = 16*Math.PI*i/n;
               double x = r0*Math.cos(rho) + r1*Math.cos(theta);
               double y = r0*Math.sin(rho) + r1*Math.sin(theta);
               // cambio sistema di riferimento
               x1 = getSize().width/2+(int)x;
               y1 = getSize().height/2+(int)y;
               // disegno
               if(i>0) g.drawLine(x0,y0,x1,y1);
               x0 = x1;
               y0 = y1;
        public void init() {
          addMouseListener(this);
          addMouseMotionListener(this);
        public void mouseClicked(MouseEvent e) {}
        public void mousePressed(MouseEvent e) {}
        public void mouseReleased(MouseEvent e) {}
        public void mouseEntered(MouseEvent e) {}
        public void mouseExited(MouseEvent e) {}
        public void mouseMoved(MouseEvent e) {}
        public void mouseDragged(MouseEvent e) {
          int x = e.getX(), y = e.getY();
          r0 = x-getSize().width/2;
          r1 = y-getSize().height/2;
          repaint();
          e.consume();
    } I want to import this code into my form in order to execute it.
    Code make possible drawing graphs to screen...
    What I want is to execute this code into my form, in a when-new-block instance trigger or something else.
    How can I achieve this???
    Thanks all for collaboration,
    Fabrizio

    It isn't quite as simple as just "importing" your java code if your goal is to have the forms and the java app communicate with each other. Interaction occurs when a properly designed Java Bean is created.
    Take a look at some of the examples on the following page as they can likely provide you with a good starting place:
    http://sheikyerbouti.developpez.com/forms-pjc-bean/menu/

  • Please check the code reg mail implementation and give guide lines to me

    Hi experts
    I written some code for implementing the mail in webdynpro using java mail API,i did not get the out put ,Is any configuration i have to do in webdynpro or WAS
    Can any body review my code and tell me where i mistaken in the implementation .Is there any thing i want to configure .Here with i am sending my code in the action of Send button
    public void onActionSendMail(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSendMail(ServerEvent)
        // get the values entered by the user  in the form
        try{
        String toAddress=wdContext.currentContextElement().getTo();
        String ccAddress=wdContext.currentContextElement().getCC();
        String bccAddress=wdContext.currentContextElement().getBCC();
        String subject=wdContext.currentContextElement().getSubject();
        String messageBody=wdContext.currentContextElement().getMessage();
        //set the properties of host and port no
        Properties p = new Properties();
        p.put("mail.transport.protocol","smtp");
        p.put("mail.smtp.host","12.38.145.108");
         p.put("mail.smtp.port","25");
         //get the session object or connection to the mail server or host
         Session sess=Session.getDefaultInstance(p,null);
         //create a MimeMessage and add recipients
         MimeMessage message = new MimeMessage(sess);
         if(toAddress !=null && toAddress.length()>0){
              message.addRecipient(Message.RecipientType.TO, new InternetAddress(toAddress));
         }else
              wdComponentAPI.getMessageManager().reportSuccess("Please Enter the To Address");
         if(bccAddress !=null && bccAddress.length()>0)
         message.addRecipient(Message.RecipientType.BCC, new InternetAddress(bccAddress));
         if(ccAddress !=null && ccAddress.length()>0)
         message.addRecipient(Message.RecipientType.CC, new InternetAddress(ccAddress));
        if(subject!=null && subject.length()>0)
         message.setSubject(subject);
         message.setFrom(new InternetAddress("[email protected]"));
         if((messageBody!=null) && (messageBody.length()>0))
              message.setContent(messageBody,"text/plain");
         }else
              message.setContent("","text/plain"); 
         Transport.send(message);
        catch(Exception e)
             e.printStackTrace();
    Please mail to :  [email protected]
    Thanks and regards
    kalyan

    Hi Venkat,
       The code seems ok to me. you don't need to configure WAS to use JavaMail APIs. However, if this code doesnot work then check with the code given below as this is working fine.
    Properties prop = new Properties();
              prop.put("mail.smtp.host", host);
              prop.put("mail.smtp.auth", "false");
              Session session = Session.getInstance(prop, null);
              session.setDebug(true);
              try {
                   MimeMessage msg = new MimeMessage(session);
                   msg.setFrom(new InternetAddress(from));
                   InternetAddress[] address =
                        { new InternetAddress(to1)};
                   msg.setRecipients(Message.RecipientType.TO, address);
                   msg.setSubject(subject);
                   msg.setSentDate(new Date());
                   MimeBodyPart msg1Body = new MimeBodyPart();
                   msg1Body.setText(msg1);
                   MimeBodyPart msg2Body = new MimeBodyPart();
                   msg2Body.setText(msg2);
                   Multipart mp = new MimeMultipart();
                   mp.addBodyPart(msg1Body);
                   mp.addBodyPart(msg2Body);
                   msg.setContent(mp);
                   Transport.send(msg);
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   System.out.print("AddressException : " + e.getMessage());
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   System.out.print("MessagingException : " + e.getMessage());
              } catch (Exception e) {
                   System.out.print("Exception : " + e.getMessage());
    where host is 12.38.145.108 in your case. May be you chk if your mail server  is using another port. 25 is the default port for the smtp. This may be the case that your code is not working.
    Regards:
    Abhinav Sharma
    PS : Do reward points if it helps

  • Mail delivery and Marketing contact list

    Hi Experts,
    I have sent some mails with marketing campaign. In Marketing contact list all mails seem to have been sent successfully, but indeed most of them have caused some kind of mail delivery error.
    Is it standard behaviour that a delivery problem does not occurr in the report?????
    What do I have to do to make the report reflect the delivery problem?
    Thanks and best regards,
    Christina Hammer
    Edited by: Christina Hammer on Apr 13, 2010 6:10 PM

    Once again:
    In SAP Library I found that one of the features of Marketing contact list is to show Transmission status of the personalized mail.
    In my case this is not working, because it does not show a mail reboted due to invalid mail (for example: name.surname@company).
    There is a lot of information about bounce management, but it explains how to do follow-up to those mails. It does not explain how to show them in the report.
    Thanks for your help!!!
    Christina
    Edited by: Christina Hammer on Apr 13, 2010 10:25 PM

  • Mail form in SAP CRM campaign

    Hi Experts,
    I want to create a MailForm in CRM WebUI .It must be possible for receivers of emails regarding a campaign/event to automatically unsubscribe via e.g. a browser.
    I want to implement News Letter Functionality.
    Could you please suggest me how to do it?
    Thanks

    Hello Majid,
    Since you seem to be using CRM 2006s (CRM 5.1 / CRM 5.2) the easiest solution -- which is actually an out of the box solution -- is to use the ERMS Push functionality provided by SAP. With the ERMS Push solution you first send the emails from the third-party contact center software into the SAP SAPconnect interface (which ERMS uses) instead of into the SAP ICI interface (which real-time push emails normally use). Once inside ERMS you have a chance to use all of the standard functionality like auto-acknowledge and auto-prepare. Then instead of using ERMS to route the email to the Agent Inbox, you pass the email back to the third-party contact center software for routing. A special ERMS action called ERMS Push sends the email back to the ICI interface where it is pushed real time to an agent using the normal routing rules defined by your third-party conctact center software! Then the agent receives the email via real-time push just like normal. When the agent clicks reply in the Email Editor, the system automatically inserts the defined email template (standard response) as defined in the ERMS Auto Prepare action paramter and linked Category Modeler categorization!
    Currently I think only Genesys has implemented the ERMS Push interface. However, SAP BCM is also on the way to support this feature. And other vendors such as Avaya and others would also do so on request. Who is your vendor???
    Warm regards,
    John

  • Marketing - Email Campaign

    Hi All
    We have created email channel for campaign execution. When I select the same in a campaign, assign a mail form and perform the channel test the email is sent and I can check the same in SCOT and SOST and in the reciepents inbox.
    But when I Release the campaign and transfer Target Group to Channels. The emails does not go even if the email addresses for all BP in target group are maintained.
    We have also configured a system email as senders email.
    I'm using CRM 5.0 with SP10.
    Please advice what should I do in this case.
    Thanks Avi

    Hi all,
    I also want to provide with some info that could help...
    - you mentioned to have "released" the marketing campaign. I assume you have also "started" it if you have some more complex marketing campaign (use the campaign automation to check it better).
    - From the campaign automation you can see the process log (you should find the Start Campaign Process set to "completed") and for each marketing campaign element the process log displays the "workflow log". You should have "Create Target Group + Channel Transfer" in processing or completed with an associated work flow id. Go to the SWI1 transaction with this ID and check the log. You could have got a workflow error. If th status is instead "in waiting" check the ST22 if you have got any dumps! Even if you have the most recent SP (10) the Marketing Segmentation module is still affect of some bugs.
    Hope it helps.
    Ciao
    Diego

  • Links donu00B4t work in mail forms(Mailing Campaign)

    Hello,
    We have created some links in a mail form and when we execute the campaign, the
    link doesn´t navegate to the URL.
    The code is as follows:
    href="/exchweb/bin/redir.asp?URL=http://www.efeservicios.com
    It happens the same with a sound link, the page doesn´t load, and the defined code is as follows: 
    href="/exchweb/bin/redir.asp?URL=http://www.EFE.com/radio/mkt/copaamerica.asx
    Any solution??
    I´ll reward points!!
    Luis Angel Fernández
    CRM Consultant

    Sorry, the forum created links of my post automatically
    I meant to say:
    Hi,
    Normally, the HTML code should look like this:
    {a href="/exchweb/bin/redir.asp?URL=http://www.efeservicios.com">PUT YOUR DESCRIPTION OF THE LINK HERE</a}
    CHANGE the { to an < and the } to an >
    If your link should point to http://www.efeservicios.com, it should be:
    {a href="http://www.efeservicios.com">PUT YOUR DESCRIPTION OF THE LINK HERE</a}
    again, CHANGE the { to an < and the } to an >
    Hope this helps!
    Jeroen

  • Mail forms in CRM Marketing

    Hi All,
    I need your help, i have to create a new smartform using the mail forms in marketing.Can any one tell which marketing transaction is used for printing mailing labels and how to find out the output type associated with smartforms. Actually i don't know how sf are executed in CRM.can anybody through some light on this area.
    Thanks in advance,
    Gaurav

    HI Gaurav,
    After you create mail form in CRMD_EMAIL, you have to execute it by pressing f8 then you have give the printer which is already defined in SPRO settings of marketing.
    Thats only way you can print the mail form of a BP.
    Hope this clarifies you.
    Regards
    Rajanikanth Pamireddy

  • Attributes in Mail Forms

    Hi All,
    How can I make available attributes of other objects in mail form templates.
    example: billing details, payment details etc.
    Thanks,
    Raj.

    Hi Raj,
    Follow these steps:
    SPRO --> Marketing --> Marketing Planning and Campaign management --> Personalize mail forms --> maintain attribute context for mail forms
    Select The context and double click on structures
    Create a New Entery there with the table name where the items of the other objects are stored. (Check for fields, but double clicking of the Field)
    Save this and these attributes should be visible in your mail forms
    Regards,
    Namita

  • Academic Title in Mail Forms

    Hi all,
    just a short question about mail forms.
    We use the mail form for file export, there in the standard attributes you can choose the academic titlle. When you start the campaign with that mail form the system will give you the description of the academic title (Data element AD_TITLE1D) and not the academic title (Data element: AD_TITLE1T) itself. So for example you have Professor instead of Prof. But nobody wants to be addressed as Professor Doctor Maier on a letter but as Prof. Dr. Maier.
    Has anyone of you an idea how we can get the short version of the academic title (AD_TITLE1T) in our mail form?
    Thanks in advance!
    Regards Anne

    Hi Anne,
    do you have created an attribute context for mail forms?
    if not, you can find it here:
    SPRO-CRM-Marketing-Marketing Plannig and Campaign Management-Personalized Mail-Maintain Attribute Context for Mail Forms.
    There you can create your own stuctures for your mail forms.
    If I remind right, you can choose these attributes as "additional attributes" while creating a mail form.
    Regards,
    Dennis

Maybe you are looking for

  • Using Sub Queries in OBIEE

    Hi, I am new to the OBIEE world and was wondering how we can work with sub queries. I have the following problem. I have a table namely XYZ in which we have "effective date" and "Amount". In the answers section have have filter out the data for the m

  • Need iPhoto upgrade for an old OS 10.3.9 system

    I have an old Mac G5 desktop computer that uses 10.3.9 Tiger.  My iPhoto software came from my iLife '06 software. I'd like to upgrade the iPhoto software to at least be able to organize photos into "events."   I am an artist and my only use for this

  • LANGUAGE DEPENDANT TEXT

    WHAT IS THE USE OF  MARKING TEXTS AS LANGUAGE DEPENDANT UNDER THE MASTER/DATA TEXTS TAB WHILE CREATING CHARACTERISTIC INFOOBJECTS? AND HOW DOES IT AFFECT THE TRANSFORMATION?

  • How do I open my programs?

    i have managed to download illustrator creative cloud which is great but now i cannot see how to start practising my lessons . i cannot see how to open the pergramme to start on a document? can anybody help me?

  • TS4083 I don't remember my password

    When I register for different apps my password won't work how come?..