Survey not creating inbound activity when submitted

I am using CRM 5.0 and I have created a survey, generated the URL using BSP and attached it to an email and this has been sent as part of a campaign. The recepient answers the survey and hits save, but there is no activity generated, even though we get the message "The values were saved successfully". I have created the survey under Marketing. I need it to create an inbound activity of type 0000. Am I missing some configuration, as I assumed that this is done automatically.
Any help would be much appreciated.
Thanks

Thank you for your suggestions. I don't want to change the transaction type for the inbound activity. I would rather that it be created as type 0000. But even this standard functionality is not working for us here. I have used CRM_MKTBP_SVY_ACTIVITY_PAI  in my survey.
Any suggestions that you might have as to why the inbound activity isn't being created would be greatly appreciated.
Thank you so much for your help.

Similar Messages

  • System should not creates new version when value of PO increased..

    Hi Experts,
    Need your help to solve this problem. When i increase value of PO it should retrigger Release strategy but it creates version first, then i have to tick completion indicator and check then only release strategy retriggers..
    It should not create new version when change po
    Please check below screenshot
    Please help

    Hi
    Please reveiw the following points in note
       - 493900 FAQ: Release Strategy
          4.  Why is the release strategy not determined?
         "If you use version management, the determination of the release
          strategy starts when the version is completed.
          You complete a version by setting the "version completed"
          indicator in the version tab."
       - 662993 Resetting an already occurred release
         You edit a purchasing document with release strategy.
         You change the quantity or the price. In spite of that, the
         already set release is not reset.
    The release strategy works the same with or without version management
    active - the only difference in case - version management is active -
    is that if release is to be reset, it will be reset only on version
    I hope this helsp to clarify this issue
    Kind regards,
    Lorraine

  • How to create an activity when system finds duplicate record!!

    Hi CRM Experts,
    I am working on CRM 5.0. We are uploading contact details to CRM through ELM.
    Here My queries are:
    1) How to create An Activity when system finds duplicate record?
    2) By using ELM we can create BP with Activities and BP with Leads. But Here, my scenario is we have to Create BP with leads and Acivities. can any one help me on these areas?
    Thank in Advance.
    Sree

    Hi Sree,
    I can help you with your first query.
    When the system finds a duplicate record then either the system stops working further or proceeds with the error free record.
    So once the duplicate entry is found only the first record will be considered and not the second or the duplicate record.
    Regards,
    Rekha Dadwal
    Kindly reward with points if usefull !!!!

  • I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    Apple ID FAQ   http://support.apple.com/kb/HE37

  • Getting error message "Could not create work area" when I open Bridge CC.

    I am getting an error message "Could not create work area" when I open Bridge CC.
    I have reset my workspace. I have closed and opened Bridge CC. I have deleted the !!-$$$AdobeOutputModule.workspace file in /Library/Application Support/Adobe/Bridge CC/Workspaces folder.
    I am not an expert computer user, so please explain in detailed steps like I am 5 years old. Thanks in advance for any help.

    I am experiencing the same problem!
    My mac is OS X Yosemite (10.10.1), Photoshop CC 2014.2.1, Bridge CC 6.1.0.115 and Camera Raw 8.7.0.309

  • TS1292 itunes says my itunes card "has not been properly activated" when i enter the code.  this is not the "invalid" message related to entering the code improperly.

    itunes says my itunes card "has not been properly activated" when i enter the code.  this is not the "invalid" message related to entering the code improperly.

    Are you able to go back to the store that you bought it from and ask them to activate it properly ? If not then you will need to try contacting iTunes Support (you will probably need to give them images of the front and back of the card, and possibly its receipt) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • How to create values for a survey on creating an Activity

    Hi,
    How can i obtain the template for answers of a survey so that i can fill in my question/answer combination and attach it to a new activity?
    I have been able to find the MF 'SURVEY_TEMPLATES_GET' which returns me an internal table of 'values template' which actually is an XML string. The XML however doesn't contain all the possible answers / questions.
    My idea was to get the template XML, clean the values and fill in my own and finally add the survey answers to an activity using FM 'CRM_ORDER_MAINTAIN'.
    Does anyone have an idea on how i can proceed?
    P.S: The solution is to be implemented on CRM 4.0
    Thanks in advance.
    Regards,
    Indradeo
    Edited by: Indradeo Digumber on Sep 29, 2011 3:57 PM

    Hi Marisa,
    Thanks for the tip. I'v actually been able to find a solution. Luckily SAP has got some classes that does the xml answer manipulation. Here is the algo :
    1. Create an instance of the class cl_crm_svy_runtime to obtain the survey template:
    CREATE OBJECT go_svy_runtime
       EXPORTING
         i_application_id = 'CRM_SURVEY_ACTIVITY'
         i_survey_id      = 'MULTI-APPEL'
         i_survey_version = '0000000001'
         i_language       = 'F'
         i_media_type     = svydb_mtype_screen
         i_valueguid      = space
       EXCEPTIONS
         survey_not_found = 1
         values_not_found = 2
         survey_outdated  = 3
         OTHERS           = 4
    2. Get the survey template (xml):
    CALL METHOD go_svy_runtime->get_xml
      IMPORTING
        e_survey_xml     = xml_content .
    3. Create an instance of the class cl_crm_svy_values (to be able to manipulate the values):
    CREATE OBJECT go_svy_values
      EXPORTING
        i_internal_values_xml   = xml_content
      EXCEPTIONS
        error_in_generation     = 1
        error_in_parsing        = 2
        error_in_transformation = 3
        OTHERS                  = 4.
    4. Set your survey values (question, answer, values):
    CALL METHOD go_svy_values->values_set
      EXPORTING
        i_question_id = 'q1'
        i_answer_id   = 'a1'
        it_values     = lt_values.
    5. Convert the values back to xml:
    CLEAR xml_content. " Important!
    CALL METHOD go_svy_values->update_values_xml
      IMPORTING
        e_public_values_xml     = xml_content
      EXCEPTIONS
        error_in_generation     = 1
        OTHERS                  = 2
    6. Convert the xml to hexadecimal:
    CALL FUNCTION 'CRM_SVY_DB_CONVERT_STRING2HEX'
      EXPORTING
        s = xml_content
      IMPORTING
        x = ls_survey-valuexml.
    7. Build the survey structure and call the crm_order_maintain FM:
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
      EXPORTING
        it_survey         = lt_survey
      CHANGING
        ct_input_fields   = lt_input_fields
      EXCEPTIONS
        error_occurred    = 1
        document_locked   = 2
        no_change_allowed = 3
        no_authority      = 4
        OTHERS            = 5.
    And this should enable you to add add the values dynamically to your activity. Sorry for not providing more detailed information, i'm currently completing the development. Feel free to contact me if you have questions about the solution i have found.
    Regards,
    Indradeo Digumber

  • Says it can not create temporary folder when Itry toopen the download

    when I try to run the firefox download a box opens saying can not create temporary folder

    Interesting. I tried one more time - instead of saving it to my hard drive, I ran it directly off the Mozilla site and it installed....
    Something is definitely wrong with the Mozilla "save as" and THEN run process....

  • ORA-27142: could not create new process/ when i am duplicating DB

    I am trying to duplicated DB on new server and getting this error
    Need suggestions to solve this ?
    RMAN-03002: failure of Duplicate Db command at 10/03/2006 16:58:58
    RMAN-03015: error occurred in stored script Memory Script
    ORA-27142: could not create new process

    check the availability of disk space where netbackup writes log files.
    if its is all set,
    open the netbackup log file and look for any recent relevant messages.
    look closely in rmanlogs and netbackup logs for any messages ralating to DBMS_BACKUP_RESTORE.RESTOREBACKUPPIECE

  • Option to not create a shortcut when installing an AIR application

    Hello Adobe AIR community,
    Does anyone know if there is an option to not create a shortcut for an AIR application?
    Currently, all I have found is an option to choose the location of the shortcut from within the start menu (in the application descriptor file, using the programMenuFolder option).
    Thanks,
    Mauricio

    I figured it out.  The AIR installer was stripping out my query parameters.  I made the URL use slashes for the parameters with a rewrite instead of ? and & it worked.

  • Promotion Condition (VKA0) Not Created after activation

    Hi
    We currently activate promotions using WAK5 and WAK16. On WAK5 you can see the status of the sales price condition is set at B, however the VKA0 condition is not created.
    In the process we perform supply source determination 45 days before the promotion start date (this is done for F&R) and we activate the promotion 5 days before the start date (this is done for our POS system)
    What could be the cause of the VKA0 condition not being created?
    Rgds

    Hi Sush,
    In that table where the path you indicate takes you, you just need to insert the following entries:
    BIDDER
    COLLAB
    EVALUA
    EXTERN
    INTERN
    Hope this will help you.
    By the way, where are you implementing PPS?
    Best regards,
    André Sousa

  • .svclog file is not creating on cloud when cloud service is deployed into azure website.

    I have created a wcf cloud service which is being deployed on cloud through bitbucket repository.
    I want to create a .svclog file to trace logs on my azure local storage.
    For that, I have refered so many posts and finally configured my solution as below:
    ServiceConfiguration.Cloud.cscfg:
    <Role name="MyServiceWebRole">    <Instances count="1" />    <ConfigurationSettings>      <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"                value="DefaultEndpointsProtocol=https;AccountName=StorageName;AccountKey=MyStorageKey" />    </ConfigurationSettings>    <Certificates>      <Certificate name="Certificate" thumbprint="certificatethumbprint" thumbprintAlgorithm="sha1" />    </Certificates>  </Role>
    ServiceConfiguration.Local.cscfg:
    <Role name="MyServiceWebRole">
        <Instances count="1" />    <ConfigurationSettings>      <!--Also tried with value = "UseDevelopmentStorage=true"-->      <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"               value="DefaultEndpointsProtocol=https;AccountName=StorageName;AccountKey=MyStorageKey" />    </ConfigurationSettings>    <Certificates>      <Certificate name="Certificate" thumbprint="certificatethumbprint" thumbprintAlgorithm="sha1" />    </Certificates>  </Role>
    ServiceDefinition.csdef:
    <WebRole name="MyServiceWebRole" vmsize="Small">    <Sites>      <Site name="Web">        <Bindings>          <Binding name="Endpoint1" endpointName="Endpoint1" />        </Bindings>      </Site>    </Sites>    <Endpoints>      <InputEndpoint name="Endpoint1" protocol="http" port="80" />    </Endpoints>    <Imports>      <Import moduleName="Diagnostics" />    </Imports>    <LocalResources>      <LocalStorage name="MyServiceWebRole.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />    </LocalResources>    <Certificates>      <Certificate name="Certificate" storeLocation="LocalMachine" storeName="My" />    </Certificates>  </WebRole>
    web.config (MyServiceWebRole project):
    <system.diagnostics>    <trace autoflush="false">      <listeners>        <add name="AzureDiagnostics"             type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics,              Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />      </listeners>    </trace>  </system.diagnostics>  ............<system.serviceModel>    <diagnostics>      <messageLogging maxMessagesToLog="3000"                      logEntireMessage="true"                      logMessagesAtServiceLevel="true"                      logMalformedMessages="true"                      logMessagesAtTransportLevel="true" />    </diagnostics>   ............ <runtime>    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">      <dependentAssembly>        <assemblyIdentity name="Microsoft.WindowsAzure.Diagnostics" publicKeyToken="31bf3856ad364e35" culture="neutral" />        <!--<bindingRedirect oldVersion="0.0.0.0-1.8.0.0" newVersion="2.2.0.0" />-->      </dependentAssembly>    </assemblyBinding>  </runtime>
    WebRole.cs (MyServiceWebRole project):
           public override bool OnStart()        {            //Trace.Listeners.Add(new DiagnosticMonitorTraceListener());            Trace.Listeners.Add(new AzureLocalStorageTraceListener());            Trace.AutoFlush = false;            Trace.TraceInformation("Information");            Trace.TraceError("Error");            Trace.TraceWarning("Warning");            TimeSpan tsOneMinute = TimeSpan.FromMinutes(1);            // To enable the AzureLocalStorageTraceListner, uncomment relevent section in the web.config            DiagnosticMonitorConfiguration diagnosticConfig = DiagnosticMonitor.GetDefaultInitialConfiguration();            // Transfer logs to storage every minute            diagnosticConfig.Logs.ScheduledTransferPeriod = tsOneMinute;            // Transfer verbose, critical, etc. logs            diagnosticConfig.Logs.ScheduledTransferLogLevelFilter = LogLevel.Verbose;            // Start up the diagnostic manager with the given configuration            DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", diagnosticConfig);            // For information on handling configuration changes            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.            return base.OnStart();        }
    AzureLocalStorageTraceListener.cs (MyServiceWebRole project):
    public class AzureLocalStorageTraceListener : XmlWriterTraceListener    {        public AzureLocalStorageTraceListener() : base(Path.Combine(GetLogDirectory().Path, "MyServiceWebRole.svclog"))        {        }        public static DirectoryConfiguration GetLogDirectory()        {            try            {                DirectoryConfiguration directory = new DirectoryConfiguration();                // SHOULD I HAVE THIS CONTAINER ALREADY EXIST IN MY LOCAL STORAGE?                directory.Container = "wad-tracefiles";                directory.DirectoryQuotaInMB = 10;                directory.Path = RoleEnvironment.GetLocalResource("MyServiceWebRole.svclog").RootPath;                var val = RoleEnvironment.GetConfigurationSettingValue("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString");                return directory;            }            catch (ConfigurationErrorsException ex)            {                throw ex;            }        }    }
    I also tried to comment out element in ServiceDefinition.csdef file. but here, I am having build time error (The XML specification is not valid).
    In my case, I am pushing all source code to bitbucket repository and from there it is deployed to the azure "WebSite". Here is more details:
    I need help to know:
    Why my service did not creating .svclog file from local to azure?
    It's also not doing the same even it has been deployed to azure?
    On which location(container) I can get the .svclog file into local storage?
    Please suggest correct way or modification so that I can overcome with this issue. Please replay fast.
    Thanks.

    Hello _Adian,
    Thanks for response.
    I uploaded all my code on bitbucket repository and configured a website on portal using "Integrate source control" (please refer:  http://azure.microsoft.com/en-in/documentation/articles/web-sites-publish-source-control/).
    (NOTE: This is the way my client is following.)
    Here is the structure of my solution:
    1. a wcf service application (.svc)
    2. few class library projects
    3. Azure cloud service (with Project 1 as web role).
    Now whenever I push my updated code to bitbucket, It automatically deployed to azure.
    So, please suggest me how can I create a separate .svclog file into local storage (using above environment).
    I hope this info will helpful to you for answer.

  • CRM survey response did not create any activity

    Hi Gurus
    We are executing campaign with survey in email. It sent out email with survey link to contacts/customers and when survey is submitted with answers it is going to below ABAP dump.
    Note
    ■The following error occurred in system VSC : The current application triggered a termination with a short dump.
    ■The error occurred on application server vgitlsapdsvsc_VSC_00 and in work process 4 .
    ■The termination type was: RABAX_STATE
    ■The ABAP call stack was:
    Function: CRM_SVY_ACTIVITY_PAI of program SAPLCRM_ACTIVITY_SURVEY
    Method: CALLBACK_PAI of program CL_CRM_SVY_RUNTIME============CP
    Method: SET_VALUES of program CL_CRM_SVY_RUNTIME============CP
    Function: CRM_SVY_RESULT_DISPATCHER of program SAPLCRM_SVY_RUNTIME
    Method: ONINPUTPROCESSING of program CLO2E6WQ6K4QYANL2PTD6149OEYAYCP
    Method: %_ONINPUTPROCESSING of program CL_O2E6WQ6K4QYANL2PTD6149OEYAYCP
    Method: DO_REQUEST of program CL_BSP_PAGE===================CP
    Method: ON_REQUEST of program CL_BSP_RUNTIME================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_BSP===============CP
    Method: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================CP
    Could some one suggest the solution please.
    Regards
    Krishiv

    Maggie,
    As Krishiv said, the responses are assigned to activites type '0000'. Get sure this activity type is not inactive in your transaction type customizing table. If you want to assign it to your own activity type, have a look to following thread:
    http://scn.sap.com/thread/835608
    Regards,
    Renato Petrulis

  • Submitting xml publisher not producing output file when submiting from Oracle Procedure

    When Running XML publisher program from Oracle Procedure, Program not generating output file, but same XML publisher program running from Concurrent program runs and produces the output file.
    Here is the code
    CREATE OR REPLACE PROCEDURE apps.wmmgd_sepa_formats (
       p_return_msg      OUT      VARCHAR2,
       p_return_code     OUT      NUMBER,
       p_payment_batch   IN       VARCHAR2                                    ---,
    --- p_bank_name          in varchar2
    IS
       name:      wmmgd_sepa_formats
       purpose: this procedureis to  create SEPA payment formats
       revisions:
       ver      date        author           description
       1.0     6/11/2013  V Gongireddy  Created the Procedure
       l_ret         BOOLEAN;
       l_req_id      NUMBER;
       v_org_id      NUMBER;
       v_cntr        NUMBER;
       v_file_name   fnd_concurrent_requests.outfile_name%TYPE;
       v_language    VARCHAR2 (20);
    BEGIN
       SELECT fnd_profile.VALUE ('ORG_ID')
         INTO v_org_id
         FROM DUAL;
       fnd_file.put_line (fnd_file.LOG, 'org id ' || v_org_id);
       fnd_file.put_line (fnd_file.output, 'Start org id ' || v_org_id);
       FOR i IN 1 .. 10000
       LOOP
          v_cntr := v_cntr + 1;
       END LOOP;
       l_ret :=
          fnd_request.add_layout ('SQLAP',
                                  ' WMMGDSEPAFORMATXSL',
                                  'en',
                                  'US',
                                  'XML'
       IF l_ret = TRUE
       THEN
          BEGIN
             fnd_file.put_line (fnd_file.output,
                                'Payment batch ' || p_payment_batch
             l_req_id :=
                fnd_request.submit_request ('SQLAP',
                                            'WMMGDSEPAFORMAT',
                                            FALSE,
                                            p_payment_batch
             v_cntr := 0;
             FOR i IN 1 .. 10000
             LOOP
                v_cntr := v_cntr + 1;
             END LOOP;
             p_return_msg := 'Request submitted. ID = ' || l_req_id;
             p_return_code := 0;
             COMMIT;
          EXCEPTION
             WHEN OTHERS
             THEN
                p_return_msg :=
                      'Payment Request set submission failed - unknown error: '
                   || SQLERRM;
                p_return_code := 2;
                fnd_file.put_line (fnd_file.LOG,
                                   'the_request_id ' || l_req_id || p_return_msg
          END;
       END IF;
    END wmmgd_sepa_formats;
    Thanks in advance

    And metalink note 1100253.1 states that this issue (java.lang.StackOverflowError) might be caused by a too large set of data to be sorted in the layout file. Recommendation is to removed the sort from the layout file and instead sort the data already in the data definition.
    regards,
    David.

  • How to not create Lightroom duplicate when editing in Photoshop

    When I choose to Edit in Photoshop from within Lightroom 3, the edited copy is added to Lightroom. This might sometimes be useful, but I want to choose whether or not the edited copy is added to lightroom.
    How can I make this choice?
    David

    That's not my experience - maybe I've got some setting wrong somewhere.
    I have two categories of images in Lightroom: DNG files originating from digital camera Raw files, and files which are PSD that were scanned from old photos.
    Opening the DNG files in Photoshop then selecting "Save As" does not make the duplicate in Lightroom PROVIDED I have "As a copy" checked. But then the copy is not the file that's currently open so I have go find the copy and open it to do any work on it.
    Opening PSD files from Lightroom in Photoshop, the duplicate is created immediately the file opens in Photoshop unless I select the "Edit original" option. But even then, if I subsequently use Save As within Photoshop, the copy appears in Lightroom.
    My version of Lighrtoom is 3.4.1
    My version of Photoshop is CS5.1
    I'm on a Mac running Snow Leopard

Maybe you are looking for

  • ICal Service Data Recovery not working.

    Hi, After upgrading to 10.5.4 (not sure yet if this is the cause), my iCal service stopped working, with CPU on the Xserve getting maxed out whenever it ran, as per the earlier post in this forum. Following suggestions in that thread, I used a Time M

  • Unable to confirm alerts

    Hi, I have configures the alertframe work to send messages when ever a message is not processed. I create a mail with a link to the message, and that works just fine. When the next problem arises with the same adapter, I don't get any alerts. When I

  • Unable to find service in Oracle Service Registry

    Hi, I am trying to use the Oracle Service Registry for publishing and lookup of services (either OSB proxy service or normal service exposed as webservices.) Publish happens fine from the sbconsole of OSB. For findService or lookup from the service r

  • Variance analysis

    Hi, Can someone suggest a good report for variance analysis in cost object controlling. Thank you Message was edited by:         Ram R

  • Transfer Data from BW Server to NON SAP(I2) Server

    Hi Experts I have a requirement where I want to transfer the data from BW Infocube to a Non SAP System (I2). Please let me know the step by step process to accomplish the requirement. Regards Akshay Chonkar