Mobile lead generation- Referal

Hi Friends,
we are facing a problem. We use CICO for customer interaction  with customer and sales personal.
We require a solution where the CIC person in SAP CRM  refers a lead to a sales personal . We need a process  here. Also the process of selecting  right sales personal with the customer appointment  , comparing the calenders of all the sales personal to look who is available at that time. The sales personal use lotus notes. Require a process flow in details.
Points assured in full for proper solution!
Thanks and regards,
rajesh

hi
please explain your question properly because there is many customization related to lead.
basically lead generation is two types 1-- with reference to campaign
                                                              2--- wihout reference to campaign
in case of without reference to campaign you to don 1--- customization in transaction                                                                               
2-- customize data sources                                                                               
3-- create filters                                                                               
4--  formed some target group
                                                                                5-- customize product
                                                                                6-- a status profile required
these all you have customized

Similar Messages

  • Lead generation using CRM Survey

    How leads can be generated suing HTML Survey for external campaigs. What i mean here if campaigns are executed using external website and based on visit by customers on website if they fill in information , how that information can be captured and inturn generate the Lead in CRM system.
    You researching CRM Survey, i noticed that there is functional module given by SAP to generate the Lead. So question is is there any webservice available to integrate the web site - feedback to SAP CRM. We are still on CRM 5.0 SP13.
    Thanks

    Nicol,
    In Tcode: CRM_SURVEY_SUITE select the questionnaire, right click and select
    survey attributes, uncheck the checkbox Evaluate in BIW.
    I know this sounds weird but it works hopefully.
    Lets us know if you still face the same issue.
    Julius

  • Problem in playing the 3GP in Nokia 6600 mobile...

    Hi,
    I am developing application with MMAPI. I want to play the video file saved in 3GP. It is not supported by the emulator. So i am directly checking with the Nokia 6600. The video is not visible on the screen. Any one please help in this topic. The file size very is small. My coding is as follows:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import javax.microedition.media.*;
    import javax.microedition.media.control.*;
    import java.io.*;
    public class PlayVideo extends MIDlet
         private Display display;
         private MyCanvas canvas;
         private Player player;
         private VolumeControl vc;
         private InputStream is;
         private VideoControl vdc;
         private HttpConnection connection;
         private ContentConnection c = null;
         private DataInputStream dis = null;
         public PlayVideo()
              display = Display.getDisplay(this);
              canvas = new MyCanvas(this);
         protected void startApp()
              display.setCurrent(canvas);
              canvas.setFullScreenMode(true);
         protected void pauseApp()
         protected void destroyApp(boolean unconditional)
         class MyCanvas extends Canvas
              private PlayVideo playVideo;
              private int Xposition = 0, Yposition = 0, volume = 30, keyValue = 0, width = 30, count = 0, run = 0, barWidth = 0;
              private int videoCount = 0, delay = 0, keyValueCopy = 0;
              private long[] barValue = new long[100];
              private long mediaDuration = 0, totalDuration = 0, temp = 0, newDuration = 0, startDuration = 0, firstDuration = 0;
              private String error, fileFormat = null, filename = null;
              private Image upImage, downImage;
              private boolean isPause = true, isMute = false, isOptionTwo = false, isOptionThree = false, isRewindMode = false, isForwardMode = false;
              private boolean isHTTP = false, isOptionFour = false, isOptionFive = false, isRunning = false, isError = false;
              public MyCanvas(PlayVideo playVideo)
                   this.playVideo = playVideo;
    /*               try
                        upImage = Image.createImage("/up_arrow.png");
                        downImage = Image.createImage("/dn_arrow.png");
                   catch(Exception error)
                        System.out.println("Error is = "+error);
    //               thread.start();
              public void setMute()  //Setting sound in Mute
                   try
                        vc = (VolumeControl) player.getControl("VolumeControl");
                        vc.setMute(true);
                   catch (Exception e)
                        System.out.println("Error in setMute() = "+e);
              public void setUnmute()  //Setting sound to ReMute
                   try
                        vc = (VolumeControl) player.getControl("VolumeControl");
                        vc.setMute(false);
                   catch (Exception e)
                        System.out.println("Error in setUnmute() = "+e);
              public void playVideoFile(Graphics graphics)  //Playing video file from the local path
                   try
                        filename = "02.3gp";
                        fileFormat = TypeOfFile(filename);
                        fileFormat = "video/" + fileFormat;
                        is = getClass().getResourceAsStream(filename);//  To play given file from jar file
                        player = Manager.createPlayer(is, fileFormat);
                        player.realize();
                        vdc = (VideoControl) player.getControl("VideoControl");
                        if(vdc != null)
                             vdc.initDisplayMode(VideoControl.USE_DIRECT_VIDEO, this);
                             vdc.setDisplayLocation(5, 25); //Setting location for video
                             vdc.setVisible(true); //Setting visible
                             player.start(); //Start playing
                             graphics.drawString("Now playing . . .", 5, getHeight()-24, Graphics.LEFT | Graphics.BASELINE);
                   catch(Exception e)
                        error = "Error: "+e;
                        graphics.drawString(error, 5, getHeight()-24, Graphics.LEFT | Graphics.BASELINE);
              public String TypeOfFile(String filename)
                   String filetype = null;
                   filename = filename.toLowerCase();
                   int positionFrom = filename.indexOf(".") + 1;
                   int positionTo = filename.length();
                   String extension = filename.substring(positionFrom, positionTo);  //Splitting the string
                   if (extension.equals("mpg"))
                        filetype = "mpeg";
                   else if (extension.equals("mp3"))
                        filetype = "mp3";
                   else if (extension.equals("mp4"))
                        filetype = "mp4";
                   else if (extension.equals("3gp"))
                        filetype = "3gpp";
                   else if (extension.equals("aac"))
                        filetype = "aac";
                   else if (extension.equals("wma"))
                        filetype = "x-ms-wma";
                   else if (extension.equals("mpeg4"))
                        filetype = "mpeg4";
                   else if (extension.equals("gif"))
                        filetype = "gif";
                   else if (extension.equals("jts"))
                        filetype = "x-tone-seq";
                   else if (extension.equals("wav"))
                        filetype = "x-wav";
                   else if (extension.equals("au"))
                        filetype = "x-au";
                   else if (extension.equals("amr"))
                        filetype = "x-amr";
                   else if (extension.equals("awb"))
                        filetype = "amr-wb";
                   else if (extension.equals("mid"))
                        filetype = "midi";
                   return filetype;
              public void paint(Graphics graphics)
                   if(keyValue == 51)
                        playVideoFile(graphics);
              public void keyPressed(int keyCode)
                   keyValue = keyCode;
                   switch(keyCode)
                   case 51:
                        repaint();
                        break;
                   case 35://Exit from the application
                        destroyApp(true);
                                 notifyDestroyed();
                        break;
         }//  end of Canvas
    }//  end of MIDLETRegards,
    G.Dhanalakashmi

    Hi,
    I am trying to install the Oracle Lite suit versioned 5.0.2 for Windows. The RDBMS is Oralce 9i (9.2.0.1). I am able to install the Mobile server. Refering the Installation mannual I am trying to configure and run the mobile serve in either standalone mode or with Oracle HTTP server. In the installation mannual it is mentioned that the HTTPD.conf file for apache http server should be modified to include the wtgapach.conf file from the Oralce Lite ORACLE_HOME\mobile\server\bin folder. On making this change and starting the apache server I am getting the error listed in the post. In the mannual it is mentioned that for standalone mode run the webtogo executable from the bin folder. On doing so I am getting a message
    "D:\oracle\oralite\Mobile\Server\bin>webtogo
    Unrecognized option: -Xrs"
    So currently I am stuck and do not know how to start the mobile server. Please let me know the appropriate steps to start the Mobile server in stadalone as well as with Oracle HTTP server.
    Also as mentioned by you I replaced the wtgapach.conf with wtgias.conf. The warning message which was displaying earlier on start of Apache is now gone but if tried to start the mobile server from the browser it is not working as expected.
    Thanks and Regards,
    Sachin.

  • Cisco 3850 Mobility Agent unable to connect clients

    Hi
    We are trying to use Cisco 3850 as Mobility agents with 5760. We can't seem to get the clients to authenticate to the radius server. We don't even see them appear in the radius logs.
    We have defined the radius server and the profile
    wlan Wireless 2 WAP
    aaa-override
    accounting-list Radius
    client vlan wireless
    security dot1x authentication-list Radius
    session-timeout 1800
    no shutdown
    radius server Primary
    address ipv4 x.x.x.x auth-port 1812 acct-port 1813
    timeout 5
    retransmit 2
    key 7 ........
    radius server Primary
    address ipv4 x.x.x.x port 1812 acct-port 1813
    timeout 5
    retransmit 2
    key 7 .........
    The client appears to connect to the AP but can't authenticate so gets kicked off
    If we do a test aaa group username password then it says that it's sucessful.
    In the debug we get 802.1X required but then it never seems to get any further.

    Alright, so I finally figured out the issue with this. I had a Mobility Anchor set on the guest WLAN and once I removed that all started working again.
    What is Mobility Anchor?
    A. Mobility Anchor, also referred to as Guest tunneling or Auto Anchor Mobility, is a feature where all the client traffic that belongs to a WLAN (Specially Guest WLAN) is tunneled to a predefined WLC or set of controllers that are configured as Anchor for that specific WLAN. This feature helps to restrict clients to a specific subnet and have more control over the user traffic. Refer to the Configuring Auto-Anchor Mobility section of Cisco Wireless LAN Controller Configuration Guide, Release 7.0 for more information on this feature.

  • Problem in configuring the Mobile Server.

    Hi,
    I am trying to configure Mobile Server for Apache for the Apache Server. I am following the steps listed in the Installation guide. As listed in the document I did the changes in the Apache Configuration file "httpd.conf" i.e. I included the Mobile Server module confuguration file into Apache Config file. On starting the apache server I am getting following listed warning,
    "[Wed Apr 28 18:14:46 2004] [warn] Loaded DSO D:\oracle\oralite\mobile\server\bin\wtgapach.DLL uses plain Apache 1.3 API, this module might crash under EAPI! (please recompile it with -DEAPI)".
    The Apache server is working and through browser I am able to access the default page. But as mentioned in the Mobile Server configuration section the Mobile server is not started or at least I do not know how to access the Mobile server through browser.
    Please let me know if the cause of the warning message has any effect on the Mobile Server instantiation and if not how can I access the Mobile Server?
    Thanks,
    Sachin.

    Hi,
    I am trying to install the Oracle Lite suit versioned 5.0.2 for Windows. The RDBMS is Oralce 9i (9.2.0.1). I am able to install the Mobile server. Refering the Installation mannual I am trying to configure and run the mobile serve in either standalone mode or with Oracle HTTP server. In the installation mannual it is mentioned that the HTTPD.conf file for apache http server should be modified to include the wtgapach.conf file from the Oralce Lite ORACLE_HOME\mobile\server\bin folder. On making this change and starting the apache server I am getting the error listed in the post. In the mannual it is mentioned that for standalone mode run the webtogo executable from the bin folder. On doing so I am getting a message
    "D:\oracle\oralite\Mobile\Server\bin>webtogo
    Unrecognized option: -Xrs"
    So currently I am stuck and do not know how to start the mobile server. Please let me know the appropriate steps to start the Mobile server in stadalone as well as with Oracle HTTP server.
    Also as mentioned by you I replaced the wtgapach.conf with wtgias.conf. The warning message which was displaying earlier on start of Apache is now gone but if tried to start the mobile server from the browser it is not working as expected.
    Thanks and Regards,
    Sachin.

  • Netweaver version only prerequisite for ITS Mobile?

    Hi experts,
    The Wiki entry about ITS Mobile leads me to believe that the only prerequisite for mobile use of the ITS is that we have a recent version of SAPKB700 (currently ~10, upgrade to at least ~11 but preferably ~18).
    Is this correct, or are there other things that need to be installed?
    The intention is, of course, to replace sapconsole by ITS Mobile by creating mobile templates for LM00.
    Thanks for a quick response!
    Rob

    Hi Rob,
    that is correct for the SAP system. There are several notes with precorrections which let you apply the latest of  ITSmobile changes to SPs below 18.
    Regarding the mobile device you should think about using an industrial browser like Naurtec or pocketbrowser to be able to use all features of the mobile device like F-keys.
    Best regards,
    Klaus

  • Campaign Reference in Lead

    Hi,
    How to determine the campaign in the following process:
    1. Create Campaign --> Assign Target Group --> Release Campaign --> TGrp to Channel (Phone) --> Call List is generated.
    2. Call List activated and assigned to IC Agents --> IC Agents contacts prospect and creates Lead.
    Now how the campaign Id will be referenced in the Lead that is created for the prospect in the call list (generated from campaign).
    Can we automatically determined the Campaign Id in the lead or or do we need to manually search and assign the campaign id.
    Note: I have assigned the object reference profile to the lead transaction we are using.
    Please help.
    Regards,
    Shridhar

    Sridhar,
    integrate this lead into campiagn
    specify communication media (communication strategies consisting of one or more different media) by which you intend to contact business partners within a marketing campaign. You enter the communication medium in the Marketing Planner. The attributes of each communication medium can be transferred to the Business Information Warehouse for evaluation.
    Each communication medium consists of one or more communication methods together with a priority that you assign to a communication method.
    If you want to trigger business transactions (activities for example) on the same screen, assign a business transaction type (defined in customizing) to the relevant communication method.
    Procedure
    1.     Access the activity using the following navigation options:
    Transaction code     SPRO
    SAP CRM IMG menu     Customer Relationship Management  Marketing  Marketing Planning and Campaign Management  Campaign Execution  Define Communication Medium
    2.     Choose New Entries in order to create a new communication medium with the following data:
    Field name     User action and values
    Medium     Y003
    Communication Medium     EN: Lead Generation
    DE: Leadgenerierung
    3.     Choose view Communication Methods and Transaction Types and enter the following data:
    Field name     User action and values
    Priority     1
    Communication Method     Generate Lead
    Transaction Type     YLD
    Result
    You have created a new communication channel for lead generation that generates marketing leads in parallel to lead generation itself.

  • Transfer product from campaign to Lead

    Hi gurus,
    I am working on SAP 5.0 marketing.
    I have executed a campaign and Leads are created for all partners from my segment but the product’s tab in Lead is empty. Does anyone know how to transfer the product from a campaign to a lead? 
    Points will be rewarded.
    Regards,
    Roula Lazaridou

    Hi Roula,
    I am not a guru but i hope i can help you out.
    I work with SAP CRM IDES 5.0 and i managed to transfer the products from the campaign to the Leads.
    The steps i followed are:
    1.    Create a campaign with name and description.
    2.    Save
    3.    Right click on the campaign and select Create --> Campaign Element
    4.    Enter the name, description
    Tab BASIC DATA
    5.    Plan start date and plan end date (If you want the dates to be transfered as well)
    6.    Choose TYPE : "Y002 PRODUCT PROMOTION"
    Tab CHANNELS
    7.    Choose Communication Medium : "LEAD LEAD GENERATION"
    Tab SEGMENTS
    8.    Enter the target group you are interested to.
    Tab Products
    9.    Enter the product
    10.  Save
    Tab BASIC DATA
    11.  Change campaign element status to released
    Tab SEGMENTS
    12.  Press Functions button next to target group.
    Application menu bar
    Extras --> Target group to channel.
    13. Set the parametres for the scheduling
    With these steps when the campaign element and not the campaign will be executed it will create the Leads and it will also transfer the dates and the product.

  • Is a nano a fifth generation?

    I want to buy a game for my ipod nano, but is it a fifth generation? WHat ia a fith generation anyway?
    Please help me.

    Fifth generation refers only to the larger 30, 60, and 80g ipods that have video playing capabilities. Video games are not for use on nanos.

  • Campaign in lead

    Hi gurus,
    In lead transaction there is a field called campaign.I am creating leads  through BAPI 'BAPI_LEAD_CREATEMULTI'. Now I need to assign a Campaign to a created lead.How do i do that.The campaign ID comes form input file.
    Regards,
    Raghu

    Sridhar,
    integrate this lead into campiagn
    specify communication media (communication strategies consisting of one or more different media) by which you intend to contact business partners within a marketing campaign. You enter the communication medium in the Marketing Planner. The attributes of each communication medium can be transferred to the Business Information Warehouse for evaluation.
    Each communication medium consists of one or more communication methods together with a priority that you assign to a communication method.
    If you want to trigger business transactions (activities for example) on the same screen, assign a business transaction type (defined in customizing) to the relevant communication method.
    Procedure
    1.     Access the activity using the following navigation options:
    Transaction code     SPRO
    SAP CRM IMG menu     Customer Relationship Management  Marketing  Marketing Planning and Campaign Management  Campaign Execution  Define Communication Medium
    2.     Choose New Entries in order to create a new communication medium with the following data:
    Field name     User action and values
    Medium     Y003
    Communication Medium     EN: Lead Generation
    DE: Leadgenerierung
    3.     Choose view Communication Methods and Transaction Types and enter the following data:
    Field name     User action and values
    Priority     1
    Communication Method     Generate Lead
    Transaction Type     YLD
    Result
    You have created a new communication channel for lead generation that generates marketing leads in parallel to lead generation itself.

  • What is a repleishment Lead Time what is the use if Implement?

    Hi
    Experts
    What is RLT? what for it is used in Ware houses?
    Regards
    Venkat

    Hi Venkat,
    Replenishment lead time refers to the duration to get the stocks into the company from the vendor. It is useful when you know that the stocks are low and need to be ordered
    Hope this would help.
    Regards,
    Rekha Dadwal
    <b>You gain a point for every point that you reward. So reward helpful answers generously</b>

  • How Can I use Type II PC Cards (cardbus) On My Macbook Pro

    Greetings...
    I have tried a search but to no avail.... I was given FREE of charge a EVDO pc card to use with UNLIMITED usage p/month...PROBLEM is I have Macbook Pro original release.. the card is obviously the Type II pc card..
    1. is there any way i can use this card with my macbook pro?
    2. what is the official "name" of my model? i.e. 1st release.. ect. ect..
    3. what other way can i make this work?
    please do advise..
    thank you kindly!!
    oNe

    Hi Sean,
    1. I found this with a quick Google search: http://www.duel-systemsadapters.com/?productid=DP-0001
    Only catch with this is the cost of the adapter negates the free pc card.
    2. Not sure of an official name other than MacBook Pro and then it's CPU speed and its chip designation (i.e. Core Duo, Core 2 Duo). I've seen the last couple of generations referred to by Intel's designations (i.e. Santa Rosa, Penryn).
    3. Don't know any other way other than getting an Expresscard-compliant card.
    HTH.

  • Clients unable to connect and get DHCP - LAP1142N AP and 5508 WLC

    Hi,
    I have 19 locations, each with 1 or more LAP1142N AP's in FlexConnect mode, AP's are primed using CAPWAP to my 5508 WLC at the datacenter. The AP's join the WLC without issue every time. I have two WLAN's, one guest and one staff, the guest network is open and obtains DHCP from a WatchGuard XTM33 firewall at each of the remote locations. The staff side is WPA2/RADIUS and DHCP is assigned from the WLC. Each AP is assigned a static IP that is not in the DHCP scope. For example: DHCP scope on the branch firewall is 192.168.1.10-250 the AP will be assigned static IP of 192.168.1.1.. The AP's are connected to a HP procurve switch that has a untagged VLAN, the firewall is using the native vlan 1 and so is the AP.
    I have been running this network for over a year and it has not had a single issue until the last two weeks. Nothing on the network has changed or has been upgraded.
    Now for the issue: The issue I am seeing is that clients are no longer able to connect to the AP and do not get DHCP assigned to them. I am able to get it working, if I remove the static IP from the AP, the AP will reboot, join the controller, then begin working, users can connect and DHCP is assigned from the firewall as it should. However, If the AP then reboots, the AP will join back to the controller but no clients can connect nor do they get a DHCP address. So, I then reassign a static IP to the AP again and it reboots, connects to the controller and clients then can connect and get DHCP.
    Attached is a running config from one of the APs
    I've found several posts on this topic, in fact the patch of unassigning or reassigning static IP is one that I found. However, I wanted to post this to see if there is any further assistance I can get on this. I am also waiting on my SmartNet to start up and will be contacting Cisco support as well.
    Thanks for any help.

    Alright, so I finally figured out the issue with this. I had a Mobility Anchor set on the guest WLAN and once I removed that all started working again.
    What is Mobility Anchor?
    A. Mobility Anchor, also referred to as Guest tunneling or Auto Anchor Mobility, is a feature where all the client traffic that belongs to a WLAN (Specially Guest WLAN) is tunneled to a predefined WLC or set of controllers that are configured as Anchor for that specific WLAN. This feature helps to restrict clients to a specific subnet and have more control over the user traffic. Refer to the Configuring Auto-Anchor Mobility section of Cisco Wireless LAN Controller Configuration Guide, Release 7.0 for more information on this feature.

  • CRMD_BUS2000108 - organizational unit and attributes for org. unit

    Hi all!
    As I'm customizing Lead creation (and in a second step lead generation)
    I would like to receive tips about "selection of organizational unit and attributes for org. unit".
    I expected that, by entering a BP number of a prospect or sold-to party, the organizational unit and its attributes would be displayed automatically on the tab "organization".
    This is not the case. When I start the lead creation, there is a pop-up screen inviting me to choose the organizational unit. afterwards a pop-up screen for the attributes of the org unit. Only after setting a flag in both pop-ups, I see the actual "lead" transaction. When I enter a BP number, the sales assistant and sales rep are found automatically.
    Could anybody please explain how to change the customizing?
    I would like to see the lead transaction (create) first, enter a bp number and than have the org unit and its attributes, the sales rep and sales assistant found automatically.
    Any usefull answer (would make my day ), will be rewarded.
    Thank you very much for your suggestions and time in advance!
    I. Van Acker

    hi
    this is happening because you have not done the org data determination in your transaction,just go to SPRO and there in org data determination ,you have many standard ORGMAN rules available which you can use which will pick the data according to the user ,BPs etc.
    it will enable you to first give BP and then the org data will be driven automatically from the system according to the rule in org data determination.
    so first go and use rule ,try using rule ORGMAN_12
    then attach this rule to the org data profile and then add this org data profile to the transaction in basic settings in transaction where you have defined your lead transaction.
    it will solve your purpose
    best regards
    ashish

  • What is the proper method for creating a document with double spacing?

    There was a questioned posed regarding double spacing documents and it was suggested to set the leading to twice that of the font size.  Is this how "double spacing" is defined?

    Double-spacing is a concept traditionally used in word processing. In professional page layout, as you would use it in InDesign, the space between lines is called "leading" and refers to finer increments than word processing (Word's Single, 1.5 lines, Double, etc.) It is measured in units called "points." There are 12 points in an inch.
    In most professionally laid out publications, body copy of average column width is set with 1 to 4 points of space beyond the point size of the type. If the type size were 11 point, the leading might be set as between 12 and 15 points, depending on how much space you desired between lines.
    Why don't you tell us what is you're trying to accomplish, and perhaps attach a screen capture of what you're trying to do?

Maybe you are looking for

  • Using a different WIFI Internet Connection from Home

    I have an Apple Mac Pro at home with a WIFI connection, which works very well. When I took the machine to my father in law who also has a WIFI connection (but from a different company), I tried to connect my lap top to his server box without success.

  • Issue with.PO

    Hi, I have activated a Vendor for ERS settlement. Now when i am creating a PO for this vendor , autopmatically Free goods check box is getting activated for this  vendor for all POs and i am not able to Settle this PO in MRRL Where is this setting so

  • Want to share this tool I found

    Real quick, in case someone was looking for the same thing as I did (on Windows). I found this little tool that can display the current CPU and memory while AE is rendering or doing some of its stuff. I don't know how to explain or even where I got i

  • Multiple webapp timeout

    I am working on a website using JSP and Servlets that contains multiple webapps. A user could potentially leave one webapp and spend a large amount of time in another before going back. We would like to find a way to prevent timeout from occurring if

  • ORA-1503 during install of iAS 9i R2 infrastructure

    Hello, I am installing Oracle 9iAS R2 infrastructure on a freshly installed Windows 2000 (SP3) system. During operation of the Database Configuration assistant the message "ORA-01503 - CREATE CONTROLFILE failed" apppears. The last lines in the iasdbA