Generating Leads from Campaigns

Our business wants to establish campaigns and then generate leads to assign to service technicans to followup with customers. I understand how through relationships to make leads carry the campaign, but wanted to know if there is a program similar to CRMD_MKT_PROC (create transactions without campaign reference) that would allow you to create leads from a campaign.
Should the approach be to copy this standard program and modify it, or are there alternative approaches functionality from within campaigns themselves?

Hi Williams,
This is an example of how to create leads within campaigns.
Unique TV, a television manufacturer, introduces a flat television model, Unique Flat Century, and decides to run an e-mail campaign just before the summer Olympics. The target group consists of business partners who had purchased any product of the umbrella organization, Unique Enterprises, in the last five years. About 25,311 business partners qualify. 
The e-mail campaign is executed in two steps. In the first step, e-mails containing some information about the flat TV are sent out to all 25,311 business partners. Each e-mail also contains a link to a survey, which includes the question: “Would you like to receive any further information on Unique Flat Century?“ All those who respond positively to this original e-mail qualify for the second step of the campaign.
In the second step of the campaign, Unique TV uses the process of campaign automation to automatically generate leads for all business partners who responded positively in the first step of the campaign.
I think the above Example will give brief idea, how to create the leads from campaign.
create a campaign and two campaign elements, from the  campaign  F5 or Campaign automation button, campaign automation screen will open and there you can define ur condtions and assign the workflows to create a leads to campaign elements.
Regards
Chandramohan
Reward points if it helps................

Similar Messages

  • Generating Activities from Campaigns

    Is it possible to generate Activities from Campaigns or otherwise progress a Campaign?
    For example, you can send campaigns to a list of contact prospects etc. Is there any way to genereate an Activity within Web Tools to be used as a follow-up?
    I presume that you could use the DTW to create Activities directly within B1, but what about working in Web Tools only?
    More generally, what are you expected to do with a Campaign once you have sent emails to the contacts? There seems to be no way to progress a Campaign other than to make it inactive.
    Regards,
    Douglas

    Hi Douglas
    You can write a report to track people who clicked a link to a product in the campaign email, went to the site, viewed the item and checked out. There is a URL variable, campaignid= that is appended on the end of the url and stored on the ordermaster table for that order if present.
    How to progress a campaign forward is up to the sender of the campaign.
    You can view if a prospect or user has been sent a campaign on the user or prospect details as well.

  • Generating Leads in Siebel from contacts availble in external database

    Hello All,
    Current situation: I am able to generate leads from existing contacts
    Future: Generate leads from external contacts that does not exist in Siebel Marketing. This external table is exposed as Subject area in List format and Target level in Segment
    1. I am able to create contacts by creating Segment loading and launching campaign. It creates record in contact and campaign contact table.
    2. After this I go to Program Lead setup to Generate leads for these contacts. This does not create Leads.
    Any Idea?
    thanks

    Even on the same machine ...
    I am not working with mySQL, try Google it, but what I am saying is that if you are anticipating requests for reports printing and practically every business application would have reporting mechanism, you should look into integrating into your Flex front-end program some server side reports generation. There are free SQL Server versions available, you can try these. But I would carefully select a report engine because depending on user requirements you will get down the road some report programs might not be what you want. What you could do with a free copy is to come up with a vehicle to deliver a report to your Flex interface. You need to decide what format to use. For example: PDF, HTML, Image, something else.

  • Upload of Campaign and Leads from flat file into SAP CRM system

    Hi Gurus,
    We need to upload Campaign and Leads from our legacy systems to SAP CRM systems. The source data will be available in the form of flat files (tab delimited)
    Please let me know the possible ways of doing this.
    Reward points are assured.
    Thanks in advance.

    Hi
    you can use external list management functionality in CRM 5.0 useing the flat file tab delimited you can upload the contacts and create business partners followed by lead transaction types with business partners created and also external list management will allow you to create target groups for executing the campaigns in SAP CRM
    please do reward points if helpful
    regards
    Dinaker vikas

  • Need for generating Leads???

    Hi Experts,
    With the help of acquired list or campaign execution any many more. ...we are generating leads and later we qualify them and create follow-up to make them as opportunity and hence sales cycle starts..
    But I want to know if at all we have to create the opportunity  what the need of generating leads???
    Is is mandatory to create leads then only we can create opportunity. OR can say what is the significance of generating leads and storing them in data base???
    How can I convince or make customer understandable while going for DEMO of Marketing system...
    Please reply ASAP.
    Regards
    Rajeev

    From where you are getting the leads?
    If the leads are getting from external list management. and the leads are rented , then the rejects leads which are created as business partners will be deleted by the system automatically .
    we have an option of selecting whether  leads are rented oo bought while generating the business partners for external source in ELM.
    If the leads are getting from external list management. and the leads are bought by cleint, then we acan decide whether the rejected leads should be deleted or used for other campaigns.
    Hope it clarify ur doubts.
    For furhter refernce u can see the external list mangement.
    http://help.sap.com/saphelp_crm50/helpdata/en/14/98e24044b80b06e10000000a155106/frameset.htm
    <u><b>Reward if it helps</b></u>

  • Problem in generate Java  from PL SQL package in Jdeveloper

    Hi
    i have problem in create java class from PL SQL package in JDeveloper.
    I use Database navigator of jdeveloper and right click on a package and choose Generate Java then in Jpublisher window choose my view Controller and accept other default values.
    I call methods of generated class in the Action of a button in my JSP page, but when I click the button it  throw null pointer exception !!! i fund one of generated method return null and it lead to this exception.
    protected DefaultContext __tx = null;
    public DefaultContext getConnectionContext() throws SQLException  {
    if (__tx==null){
    __tx = (getConnection()==null) ? DefaultContext.getDefaultContext() : new DefaultContext(getConnection());
        return __tx;
      public Connection getConnection() throws SQLException
        if (__onn!=null) return __onn;
         else if (__tx!=null) return __tx.getConnection();
         else if (__dataSource!=null) __onn= __dataSource.getConnection();
         return __onn;
    i try to generate class in Model project and create DataControl for that and use method action but noting change and i get null pointer again!!
    Jdeveloper Versino = 11.1.1.7.0

    Let me ask you another question: Why do you generate java from the package at all?
    Where do you want to call the package?
    Back to your question: you should see code like
        public void setDataSourceLocation(String dataSourceLocation) throws SQLException {
            javax.sql.DataSource dataSource;
            try {
                Class cls = Class.forName("javax.naming.InitialContext");
                Object ctx = cls.newInstance();
                java.lang.reflect.Method meth = cls.getMethod("lookup", new Class[] { String.class });
                dataSource = (javax.sql.DataSource) meth.invoke(ctx, new Object[] { "java:comp/env/" + dataSourceLocation });
                setDataSource(dataSource);
            } catch (Exception e) {
                throw new java.sql.SQLException("Error initializing DataSource at " + dataSourceLocation + ": " + e.getMessage());
    in the generated code. This code look up a datasource (which you have defined e.g. on the Weblogic Server) by calling the method
    setDataSourceLocaltion("jdbc/HRConnDS");
    This look up the datasource nad stores it in the class variable.
    Timo

  • Generating proxies from WSDL utility

    Hey ..
    Does BEA give a utility to generate client webservice proxy classes from a WSDL
    I mean ..instead of any server classes to run clientgen..I have just the WSDL
    and I need to generate the proxy classes for myself..I guess it defeats the purpose
    of webservices(integration)..if I have to ask the webservice deployer for client
    classes ..!
    Thanx,
    Krish

    "Krishnan Venkataraman" <[email protected]> wrote in message
    news:[email protected]...
    >
    Manoj , u sure this is a valid link ...coz I cannot see a wsdl athttp://example.com/myapp/myservice.wsdl..
    This should be the url to your wsdl. (the wsdl from which you want
    to generate the service). You can also copy the wsdl to your local
    machine and use the file url.
    >
    and is there any WLS70 dependency for me to generate these proxies ...Imean do
    I need anything from WLS70 (jar files etc)for me to do this task ...?You need wls70. the clientgen ant task is provided by wls70.
    >
    BTW.. just to update u on our other issue we talked about...have a look atthe
    below trace...Thanx,Krish
    Shridhar ...
    Couple of things ...
    1) We will ask the webservice provider put the CR080927_70sp1.jar intheir classpath.
    But instead of they generating the client-jar and runningVersionMaker on
    this to give us the output , can we do this on ourside...
    I understand that there is a way in which the client itself generatestheir
    own proxies from the wsdl...In case we can do this ...isCR080927_70sp1.jar required
    on
    the client side also for generating the proxies...or is it required onthe
    WLS70 side only at runtime...once we generate these proxies ourselves thenfor
    compiling our 6.0 client and running it , I will use the output ofversionMaker
    and wsclient70.jar.
    2) Can u possibly mail me the patched jar files which u mention below byemail...and
    send me a confirmation email saying u have sent it..coz we seem to havesome firewall
    issues going to an outside ftpserver....and the confirmation mail is onlyincase
    u send the mail and I do not get it coz of the size etc ..
    Thanx,
    Krish
    Krishnan (Krish) Venkataraman
    Bank of America Corp.
    Senior Technology Analyst
    Email: [email protected]
    Work # : 646 733 4248
    Cell # : 646 210 5482
    -----Original Message-----
    From: Shridhar Mysore [mailto:[email protected]]
    Sent: Friday, November 01, 2002 12:38 PM
    To: Venkataraman, Krishnan
    Subject: Invoking 7.0 WS from 6.0 WS client [ Case 367229 ]
    Hello Krishnan,
    Firstly, your present configuration (involving the use of a SessionBeanin 6.0sp1
    as WS client calling into a WS hosted in 7.0sp1) where you are using 7.0webserviceclient.jar
    alongside 6.0 weblogic.jar is not supported, nay non-viable. The result ofsuch
    a configuration would lead to NoSuchMethodError exceptions which you haveseen
    at your end.
    Secondly, in order to solve this we need to use portable stubs for WSclients,
    a feature, that has been included in
    7.0 SP02 ! We, however have made this feature available on 7.0 SP01 aswell in
    the form of a one-off patch !
    And the following is a procedure for enabling this on 7.0SP01 :
    - Add the one-off patch ( CR080927_70sp1.jar ) at the beginning of theCLASSPATH
    in your 7.0 server startup script. Ensure that you restart the server forthis
    to kick in.
    - Generate the client jar for the 7.0 WS
    - Run the weblogic.webservice.tools.versioning.VersionMaker utility bysupplying
    the client jar to generate re-versioned classes.
    - Compile the WS client in 6.0 by supplying the re-versioned classes(generated
    from VersionMaker ) and wsclient70.jar (note wsclient70.jar should workwith
    6.x versions)
    - Run the WS client in 6.0 by supplying the re-versioned classes(generated from
    VersionMaker ) and wsclient70.jar
    Lastly, please find/download the following files from our FTP server(ftpsupport.beasys.com)
    at /pub/case367229
    by logging in with username/password as support/pechool
    ( Note : this password is valid for the week of Oct 27, 2002 )
    CR080927_70sp1.jar - one-off patch for 7.0sp01
    wsclient70.jar - this would be used instead ofwebserviceclient.jar by
    6.x WS client/s
    "manoj cheenath" <[email protected]> wrote:
    Sure. you can generate client from a WSDL.
    Please try this:
    <clientgen wsdl="http://example.com/myapp/myservice.wsdl"
    packageName="myapp.myservice.client"
    clientJar="c:/myapps/myService_client.jar"/>
    regards,
    -manoj
    "Krishnan Venkataraman" <[email protected]> wrote in message
    news:[email protected]...
    Hey ..
    Does BEA give a utility to generate client webservice proxy classesfrom a
    WSDL
    I mean ..instead of any server classes to run clientgen..I have justthe
    WSDL
    and I need to generate the proxy classes for myself..I guess it defeatsthe purpose
    of webservices(integration)..if I have to ask the webservice deployerfor
    client
    classes ..!
    Thanx,
    Krish

  • Call list from Campaign

    How can you create call list from Campaign for a selected target group ? Can anyone help me in this.

    Hi ,
    To generate a call list from the campaign all you need to do is to create your campign and then choose the send target group to channel option the call list will get generated. Please refer the campaign execution link for detials
    http://help.sap.com/saphelp_crm50/helpdata/en/4e/ac6f422f91c153e10000000a1550b0/frameset.htm
    Regards,
    Anita

  • Display product from campaign to agent in IC when making call

    Hello,
    I wonder how can agent see the product that he is to offer to the client in outbound telesales? call list can be generated from campaign, where the product is assigned to campaign.
    In the moment when agent in IC makes call from this call list the product will be displayed ..... - where exactly?
    in navigation area? what workspace and what profile? (Telesales_resource workspace maybe, but what profile)
    Regards
    Radek

    Hi Jesus,
    I was suspecting this, we had a similar problem in CRM 6.0, i thought this is no more there in CRM 7.0. Well we had raised an OSS message for this and the reply was a development in the view or use the service pro view(sans)ICWEB apllications.
    This happens with any followup you want to create in the ICWEB view since there is no pop up here.
    I would suggest you to raise an OSS for this
    Regards
    Raj

  • Capturing response from Campaigns

    Hello,
    Any expert worked on the campaigns(internet) for capturing the response from campaigns.
    Running the campaign with HTTP and exposing it to the external customer, therefore how the external customer will make use of CRM application server in filling the surveys.
    Any advise or document is highly appreciated.
    Regards
    Ahmedi

    Hello Dinesh,
    Thanks a lot for the reply, but this is not as simple was metioned.
    As mentioned by you:
    In the questionnaire, you have to enter your web-id in the XML. you will find this setting in the Best practice.
    Apart from that XML, there are two programmes that are required:
    Get Option:This specifies how the survey is sent to the recipient.
    Send Option:This specifies how the results are later sent back when the recipient submits the survey.
    My process starts after this when the customer clicks on the survey and answers the questions, this response we need to capture automatically in CRM by creating an activity at back end.
    In order to achieve this SAP recommend to implement WEBDISPATCHER and the URL which the users are going to generate will be in https:
    The problem I am facing is when i generate the URL and test it, it is giving me the message that the service is not reacheable, kindly see the screen shot below.
    When i am investigating this and asking SAP for help they are asking to install the EXTERNAL CAT server. Dont know about this.
    If you have done an end to end solution for email campaign for the external world with the following steps then can you please provide me the doc.
    1 - User runs the campaign with  Mail Form: Mail form will have the link of questionnaire.
    2- When the customer is clicking on the link from his yahoo or gmail address this will launch the CRM page for the questionaire where the customer should be able to answer the questions and click on SAVE.
    3 - this will be captured in CRM and creates an activity back end(which in turn we can expose it to BIBW).
    I hope this is clear, needs some urgent advise.
    Regards
    AM
    For your information:
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam
    Action="https://xxxxxxxxxx.internal:xxxxxx/SAPSVY?cmd=svyResult"
    Method="post" Enctype="application/x-www-form-urlencoded"
    AccessURL="https://xxxxxxxxx.internal:xxxxx/SAPSVY?cmd=svyPresGet"
    ConnectorId="CONNECTOR_xxx"
    IncludeStylesheetInOutput="true"/>
    Screen shot:

  • Creation of service order from campaign element

    Hi,
    We have a requirement where service orders are to be created for all those business partners who responded to the campaign. We are using standard service order type SVRO. We have set up campaign automation by creating campaign and element, assigned target group, set decision point (rule & condition) to split target group in two; one for those who have replied to campaign and others who have not replied. These target groups are also linked to other campaign elements within the campaign.
    The question is, how to create a follow-on transactions such as service orders through campaign, so that one service order gets created for each successful BP from campaign result?
    Thanks in advance for your advice / suggestions.
    Regards
    Umesh
    Edited by: Umesh Singh on Sep 30, 2009 6:36 PM

    Hi Shatnhala,
    Thank you for your help. I'll try this and will come back to you.
    My further requirenment is to re-trigger pricing to upade latest price information on these service orders and then to create and send letter to all those customer with price informations. Can I use the same workflow with different steps to complete all these task?
    Also, how will these service orders (created through workflow) be linked with the campaign? Is their a way to link one campaign with many orders?
    Thanks
    Umesh

  • How to delete the Generated files from application server(open hub)?

    hi experts,
    when i try to execute process chain the DTP it is giving below dump. Exception CX_RSBK_REQUEST_LOCKED logged.
    when i execute the DTP manually and trying to delete the previous request, it is giving for dump ITAB_DUPLICATE_KEY.
    so to delete the generated file from application server, how to delete it for specific dates?
    Information on where terminated
    Termination occurred in the ABAP program "GPD6S3OE0BCVGC6L9DBNVYQARZM" - in
    "START_ROUTINE".
    The main program was "RSBATCH_EXECUTE_PROZESS ".
    In the source code you have the termination point in line 2874
    of the (Include) program "GPD6S3OE0BCVGC6L9DBNVYQARZM".
    The program "GPD6S3OE0BCVGC6L9DBNVYQARZM" was started as a background job.
    and when i check the dump it is point out at below code
    " Populate the lookup table for 0STOR_LOC
    SELECT * from /BI0/TSTOR_LOC
    into CORRESPONDING FIELDS OF table L_0STOR_LOC_TEXT
    FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
    STOR_LOC = SOURCE_PACKAGE-STOR_LOC.
    but the programme is syntactically correct only.
    how to rectify the issue.
    regards
    venuscm
    Edited by: venugopal vadlamudi on Sep 28, 2010 1:59 PM

    hi experts,
    We have written start routine to get the storage location text and sending to File located at Application server through OPEN HUB.
    here is the code written in the Transformations
    In the global section
    Text for 0STOR_LOC
        DATA: l_0stor_loc_text TYPE HASHED TABLE OF /bi0/tstor_loc
              WITH UNIQUE KEY stor_loc.
        DATA: l_0stor_loc_text_wa TYPE /bi0/tstor_loc.
    and in the code to get the text
    " Populate the lookup table for 0STOR_LOC
        *SELECT * from /BI0/TSTOR_LOC*
          into CORRESPONDING FIELDS OF table L_0STOR_LOC_TEXT
          FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
                  STOR_LOC = SOURCE_PACKAGE-STOR_LOC.
    im sure there is problem with the Routine only. i think i need to change the code if so please provide me the modified one.
    thanks
    venuscm
    Edited by: venugopal vadlamudi on Sep 29, 2010 9:37 AM

  • How to generate XML from EBusiness suite ARXSGPO

    Could someone tell me how I can generate XML from the EBusiness Suite Accounts Receivable report ARXSGPO.rdf I understand this report is called by a C program. I have tried changing the concurrent request to output format to XML the result does not resemble XML. Does anyone have any suggestions how I can generate XML from the ARXSGPO report?
    Thanks,
    Mark

    Hi Mark
    the next release of XMLP will have last page only support. The problem is that at the template layer you do not know how many lines are going to fit on the page, so you never know what is going to be the last page. The only way around it for now is to specify the number of lines to a page and then check when all the lines have been rendered and then render the remit portion.
    I have a sample invoice that does the same, drop me a mail, you can work out the email from my name and the fact I work for XMLP Im sure.
    Tim

  • Generate report from database using .xsl style sheet

    I am trying to view test result histories for specific uut serial numbers.
    We are logging all test data to the default access database template that was provided with Teststand.
    Is there a method of generating reports from the database that match the format of those generated at runtime?
    I was surprised to find that the default access database did not contain any gui or pre-made reports matching the xsl style sheets chosen in the report options dialog.
    My database skills are weak, I am able to browse the raw data and I see the relationships between some of the tables, but the prospect of recreating one of the xml report formats in access seems daunting. Am I missing something? what is the best way to print a uut report from test data stored in access?

    Hello msears,
    Thank you for posting on the NI Discussion Forums.  Unfortunately there are no tools available in TestStand for directly converting an Access database to a formatted .xsl report.  It is possible to have a step in a sequence that reads the information from the database, and create the .xsl report as if it had been generated at sequence run-time, by writing those values directly to Locals.ResultList.  Admittedly, this would require some knowledge of Microsoft Access, and the ability to write a program that will extract information from the database, in order to include it as a step in the sequence.
    Is there anything stopping you from creating a formatted .xsl report when the sequence is run (instead of trying to create it from previous data stored in an Access database)?
    Chris_G
    Sr Test Engineer
    Medtronic, Inc.

  • Generate Report From Template (Excel).vi & don't understand to fill the cells

    I am trying to use the Generate Report From Template (Excel).vi to build my own template, and then fill it with some of my datas. I am trying to replace the "temperature" or "pressure" labels by others, and then fill them with my vi. I don't understand how labview find the location of the labels in the excel template.
    Thanks in advance
    Attachments:
    Excel_Template.xls ‏33 KB
    Generate_Report_From_Template_(Excel).vi ‏120 KB

    You can get the answer to your question by reading the following thread:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=137&HOID=50650000000500000019360100&HTHREAD=000079385000079477000079498000079542000079632&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    The short answer:
    To setup or modify the Named Labels in your Excel template, use Excel's Insert -> Name -> Define command. A name can be defined as a single cell or a block of cells.
    Michael Munroe
    Certified LabVIEW Developer
    www.abcdefirm.com
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

Maybe you are looking for