Survey Repository???

Dear all,
In Survey Suite->Survey Repository->Parameter XML’s----->bsp
How to create a new file(Parameter)
Can any body tell me the content of parameter and how to set it?
Thanks
jayesh

Hi Jayesh,
You need to do the following:
Open Parameter XML’s - bsp. 
Create an xml file with the following content. Replace the system settings (bold) by your respective CRM server settings. The xml file name should be: CRM_SVY_BSP_@<CRM system ID>_<CRM client>.XML
<?xml version="1.0" encoding="UTF-8" ?>
  <SurveySystemParam Action="http://<b>mrcved.ad.xxxxx.com:50100</b>/sap/bc/bsp/sap/crm_svy_server/Survey.htm?sap-client=<b>001</b>" Method="post" Enctype="application/x-www-form-urlencoded" AccessURL="<b>http://mrcved.ad.xxxxx.com:50100</b>/sap/bc/bsp/sap/crm_svy_server/Survey.htm" IncludeStylesheetInOutput="true" />
Once you have created the file, select 'bsp' in the Survey Repository and click on the "Import" link and import the above created xml file.
Check your settings.
Hope it helps.
Regards,
Pankaj

Similar Messages

  • Survey repository Connector ID +Internal CATserver - configuration

    Dear All,
    I have enabled Internal CATserver in our CRM 7.0 system. In survey repository  in crm_survey_suite transaction I need to create a new parameter XML file for HTTPS. In the XML, what should be the value provided for the 'ConnectorId'.
    Please assist.
    Regards,
    Deepak

    Hi Rakshit,
    This might help.
    https://scn.sap.com/thread/1201652
    It asks to implement note 1542027
    Please check.
    Harsh

  • Sap survey repository xml parameter http

    Hi,
    Can somebody help me with the parameter xml ind the survey repository?
    For http xml, I have to implement Code like this:
    <SurveySystemParam  Action="http://sss:ppp/yyy/SAPSVY?cmd=svyResult"
    sss stands for the server
    ppp for the port
    but for what stands yyy?
    Rgdrs
    Hayit

    I thought you only needed to know what the yyy was
    As to getting HTTP to work, it's difficult to figure out and we continue to wait for someone to tell us how to set the ConnectorID
    Perhaps this thread will help you:
    Survey Parameter XML for http(s)

  • Survey Repository XSLT files

    Hello friends
    To change the submit button functionality in Survey I am trying to change the CRM_SVY_GENERATE_SURVEY_TEMPLATE.XSLT file can any one let me know how can i do this as its not allowing to replacing the file or edit it.
    And i have imported my own XLST then how can i enable the new XSLT to be used instead of the standard XSLT in survey.
    Please give some help.
    Regards
    Pulkit
    Message was edited by:
            Pulkit Agrawal

    Hi Pulakit
    I also have same requirement but to change the layout & found a note which explains uploading another version of xslt provided by SAP.
    SAP Note 1161188 - Survey Suite:Incorrect Error messagewhen Date is inputted
    I am not sure if I should upload my own version of xslt using the program provided in this note & replace original. Or I should import with diff name.
    If you have done it before, please guide me.
    Regards
    Vivek

  • Error while launching a survey url

    Hi,
    I have completed the configuration settings required for generating a url link for a survey.
    When I test the url, I get the following error in Internet Explorer:
    "404 Not Found
    The requested resource does not exist"
    The landscape includes mySAP CRM 5.0 and SAP EP 7.0.
    Would appreciate help from the group.
    Regards,
    Pankaj

    Hi Gregor,
    It is there in SE80.
    when I try testing, I get the following link:
    http://mrcved.ad.xxxxx.com:8001/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sap/crm_svy_server/test.htm
    Strangely the port above is 8001 and not 50100 which I had used earlier.
    I did try changing the bsp link in Parameter xmls (survey Repository) using port 8001, but it does not work. Instead of throwing "404 Not Found Error", a blank screen is visible. The url of this screen is:
    http://mrcved.ad.xxxxx.com:8001/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sap/crm_svy_server/Survey.htm?applid=CRM_SURVEY_MARKETING&svyid=SURVEY_TV_CAMPAIGN&vers=0000000001&lang=EN&parid=CRM_SVY_BSP_C50_001%2eXML&vguid=8EB2C2933951964CAC8B7CA0B1857C57&vvers=0000000001
    Let me know if you have the answer.
    Regards,
    Pankaj

  • Survey code not working

    Ok so I'm making a survey for a website and I have a series
    of questions where the user can rate it from a list of choices and
    I have these questions in a table in access and the rating options
    in a table. I want to have the questions display with the options
    in a dropdown box next to each question, I can't seem to get this
    to work. Here is my code:
    <!--- Get ratings --->
    <cfquery datasource="PFB" name="RatingsQ">
    SELECT *
    FROM Ratings, Questions
    ORDER BY RatingID, QuestionID
    </cfquery>
    <!--- Get genders --->
    <cfquery datasource="PFB" name="Gender">
    SELECT *
    FROM Gender
    ORDER BY ID
    </cfquery>
    <!--- Get states --->
    <cfquery datasource="PFB" name="State">
    SELECT *
    FROM State
    ORDER BY StateID
    </cfquery>
    <!--- Get questions2 --->
    <cfquery datasource="PFB" name="Questions2">
    SELECT *
    FROM Questions2
    ORDER BY Question_ID
    </cfquery>
    <!----get ages----->
    <cfquery datasource="PFB" name="Age">
    SELECT ID, Age
    FROM Age
    ORDER BY ID
    </cfquery>
    <html>
    <body>
    <cfform action="insertnewreview.cfm">
    <table>
    <tr>
    <td>Age:</td>
    <td> <select name="AgeID">
    <cfoutput query="Age">
    <option
    value="#ID#">#Age#</option></cfoutput>
    </select>
    </td>
    </tr>
    <tr>
    <td>
    Gender:
    </td>
    <td>
    <select name="Gender">
    <cfoutput query="Gender">
    <option
    value="#Gender#">#Gender#</option></cfoutput>
    </select>
    </td>
    </tr>
    <tr>
    <td>
    State:
    </td>
    <td>
    <select name="State">
    <cfoutput query="State">
    <option
    value="#State#">#State#</option></cfoutput>
    </select>
    </td>
    </tr>
    <tr>
    <td><cfoutput
    query="RatingsQ"><br><br>#Question#</td><td><select
    name="RatingID"><option
    value="#RatingID#">#Rating#</option>
    </select></cfoutput></td></tr>
    <tr>
    <td><cfoutput
    query="Questions2">#Q#:</cfoutput></td>
    <td>Answer:
    <textarea></textarea></td>
    </tr>
    <tr>
    <td colspan="2" align="center">
    <input type="submit" value="Insert"></td>
    </tr>
    </table>
    </cfform>
    </body>
    </html>

    1. In CRM_SURVEY_SUITE, created 'XYZ' survey under Marketing
    2. Following Setting were made in Extras-->Settings
    a. Checked Save Completed Questionnaire
    b. Checked Completed Questionnaire Changable later
    c. Checked Create version of Completed Questionnaire
    d. Checked Evaluation without BW
    e. Callback to PBO: CRM_MKTCA_SURVEY_MKT_PBO
    f. Callback to PBI: CRM_MKTCA_SURVEY_MKT_PAI
    3. Survey Parameters Settings:
    Survey Repository>Parameters XMLs>bsp
    I have maintained the following information in parameter file u2018TTTu2019
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam Action="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=100" Method="post"
    IncludeStylesheetInOutput="true"
    AccessURL="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm" Enctype="application/x-www-form-urlencoded"/>                                                                                <SurveySystemParam  Action="" Method="post"  IncludeStylesheetInOutput="true" Enctype="application/x-www-form-
    4. CTRL+F5 is OK
    5. Activate
    6. Click on Generate URL
    7. I have added Get Option and Send Option u2013 BSP and Get file and Send File u2018TTTu2019 (parameter file)
    8. When I click on Test URL button , it opens up Blank Webpage
    Any Suggestions?

  • Survey link not correct

    I have a paid subscription to Adobe Forms. Why are my survey links coming across like this? They typically do not.

    1. In CRM_SURVEY_SUITE, created 'XYZ' survey under Marketing
    2. Following Setting were made in Extras-->Settings
    a. Checked Save Completed Questionnaire
    b. Checked Completed Questionnaire Changable later
    c. Checked Create version of Completed Questionnaire
    d. Checked Evaluation without BW
    e. Callback to PBO: CRM_MKTCA_SURVEY_MKT_PBO
    f. Callback to PBI: CRM_MKTCA_SURVEY_MKT_PAI
    3. Survey Parameters Settings:
    Survey Repository>Parameters XMLs>bsp
    I have maintained the following information in parameter file u2018TTTu2019
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam Action="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=100" Method="post"
    IncludeStylesheetInOutput="true"
    AccessURL="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm" Enctype="application/x-www-form-urlencoded"/>                                                                                <SurveySystemParam  Action="" Method="post"  IncludeStylesheetInOutput="true" Enctype="application/x-www-form-
    4. CTRL+F5 is OK
    5. Activate
    6. Click on Generate URL
    7. I have added Get Option and Send Option u2013 BSP and Get file and Send File u2018TTTu2019 (parameter file)
    8. When I click on Test URL button , it opens up Blank Webpage
    Any Suggestions?

  • Survey Link Not Working

    Experts: I created Survey in 'CRM_SURVEY_SUITE' for marketing. I could able to generate the the URL. But when try to test the URL, it opens up  blank webpage (no survey).
    Any suggestions
    Thanks

    1. In CRM_SURVEY_SUITE, created 'XYZ' survey under Marketing
    2. Following Setting were made in Extras-->Settings
    a. Checked Save Completed Questionnaire
    b. Checked Completed Questionnaire Changable later
    c. Checked Create version of Completed Questionnaire
    d. Checked Evaluation without BW
    e. Callback to PBO: CRM_MKTCA_SURVEY_MKT_PBO
    f. Callback to PBI: CRM_MKTCA_SURVEY_MKT_PAI
    3. Survey Parameters Settings:
    Survey Repository>Parameters XMLs>bsp
    I have maintained the following information in parameter file u2018TTTu2019
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam Action="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=100" Method="post"
    IncludeStylesheetInOutput="true"
    AccessURL="https://XXX:8081/sap/bc/bsp/sap/crm_svy_server/survey.htm" Enctype="application/x-www-form-urlencoded"/>                                                                                <SurveySystemParam  Action="" Method="post"  IncludeStylesheetInOutput="true" Enctype="application/x-www-form-
    4. CTRL+F5 is OK
    5. Activate
    6. Click on Generate URL
    7. I have added Get Option and Send Option u2013 BSP and Get file and Send File u2018TTTu2019 (parameter file)
    8. When I click on Test URL button , it opens up Blank Webpage
    Any Suggestions?

  • Marketing attributes update via survey

    Hi experts,
    I'm a bit stuck with a survey scenario with the CRM survey suite. I'm working on a CRM 2007 system.
    My goal is to eventually send a email to several business partners, with a link to the survey. In this survey there are marketing attributes that can be chosen, so when the business partner completes and sends the survey, the marketing attributes of the business partner in CRM are filled.
    What I did so far:
    - In the Survey Repository I created a new XML file, under Parameter XMLs -> bsp.
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam
    Action="http://**crm05.corp.*******.com:8000/sap/bc/bsp/sap/crm_svy_server/Survey.htm?sap-client=158"
    Method="post"
    Enctype="application/x-www-form-urlencoded"
    AccessURL="http://**crm05.corp.********:8000/sap/bc/bsp/sap/crm_svy_server/Survey.htm"
    IncludeStylesheetInOutput="true"/>
    - Created a new marketing survey in the CRM survey suite: Here I could select al my marketing attributes I created before.
    - In the maintenance of the Survey Attributes:
         o  Evaluation without business information warehouse (marked)
         o Callback to PBO: CRM_MKTCA_SURVEY_MKT_PBO
         o Callback to PAI: CRM_MKTCA_SURVEY_MKT_PAI
    I found somewhere I had to fill in those values by the interface to application.
    Now my problems..
    When I try to generate an URL, I select the options:
    GET option: BSP
    GET file: my xml file
    SEND option: BSP
    GET file: my xml file
    I thought these where the options I had to choose to create the URL, but when I try to test: a blank screens opens.. So no survey is shown.
    When I changed the second option to MAILTO (and select the standard available xml), the URL works (survey is shown). Is this the correct way?
    And.. Not sure what do next, I don't see how the survey will be linked to the right business partner.. When the survey is send to a business partner, the reply of the filled in survey will automatically be linked to the right business partner in CRM? There are more settings needed?
    Thanks in advance for your help! If you need more information please reply!
    Jasper.
    Just start up a campain with a mailing form, a link to the survey. Than send this as an email? Than the

    Hi,
    we are using CRM 4.0 and here it works fine.
    Regarding update of marketing attributes: See note 638320
    I think you did it the right way choosing BSP in both options. Here is how the Parameter file looks in our DCR system and it works:
    <?xml version="1.0" encoding="UTF-8"?>                                                                                <SurveySystemParam  Action="http://svc1DCR.postdk.net:8020/sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=210" Method="post"  IncludeStylesheetInOutput="true" Enctype="application/x-www-form-urlencoded" AccessURL="http://svc1DCR.postdk.net:8020/sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=210" IncludeStylesheetInOutput="true" />
    You can find the Http service in transaction SMICM.
    Best regards
    Annette

  • Problem In Generating Survey URL

    Hi Experts,
    I have Created Questionarie in Survey Tool for CRM(7.0), Saved and Activated the Survey. I am trying Generate the URL for that i have selected Get Option and Send Option as bsp but when i selected Get File and Send File it is showing Blank means I am unable to select the files, hence not able to crete URL for the Survey. Please Help me that where i am missing. Kindly Help me with Process Steps
    Your Help is highly Appreciated and Rewarded
    Thanks,
    Satish
    Edited by: Prasanna Satish on Jun 28, 2010 1:36 PM

    Please follow the below steps.......
    <br>
    Access the activity using one of the following navigation options:
    <br><br>
    <b>Transaction code</b>     CRM_SURVEY_SUITE<br><br>
    <b>SAP CRM IMG menu</b>     Customer Relationship Management  Transactions  Settings for Leads  Questionnaires for Leads  Define Questionnaires<br><br>
    <b>Creating XML Parameter File for CRM system</b><br><br>
    1.From the application toolbar, choose Survey Repository.<br>
    2.Open the tree structure Survey Repository - Parameter XMLs - bsp.<br>
    3.Select the standard parameter file CRM_SVY_BSP_SYSTEMPARAM.XML with double-click and choose Export (F8).<br>
    4.Rename the file, for example, to: CRM_SVY_BSP_SYSTEMPARAM_<systemID>_<client>.XML.<br>
    5.Save the file to your local PC..<br>
    6.Open the XML file with a suitable editor tool..<br>
    7.Maintain the following coding, entering your host server, port, and client:.<br>.<br>
    ?xml version="1.0" encoding="UTF-8" ?
    SurveySystemParam Action="http://<hostserver>:<port>//sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=<client>" " Method="post" Enctype="application/x-www-form-urlencoded" AccessURL="http://<hostserver>:<port>//sap/bc/bsp/sap/crm_svy_server/survey.htm" IncludeStylesheetInOutput="true" /> .<br>.<br>
    In order to identify the respective host server and HTTP port of your CRM system,  open the ICM Monitor (transaction SMICM) in your CRM system. .<br>.
    From the menu, choose Goto -- Services. .<br>
    In the HTTP entry, you can find the data for the relevant host server and port..<br>.<br>
    8.Save and close the XML file..<br>
    9.In the CRM Survey Repository, select folder Survey Repository  Parameter XMLs  bsp..<br>
    10.From the application toolbar, choose Import (F7) to import the modified XML file from your local PC..<br>
    11.Double-click on the imported file and choose Check (Ctrl+F5). If the check is successful, you can continue; otherwise, check your coding as described in step 7..<br>.<br>
    <b>Creating Survey URL</b>.<br>
    12.Choose Back (F3) to get back to the Survey Suite..<br>
    13.In the list of applications, open the component Leads..<br>
    14.Select the appropriate questionnaire used for customer information request (e.g., BP_INFORMATION_EN) with double-click..<br>
    15.Choose   Generate URL (CtrlShiftF1)..<br>
    16.In the dialog box, select the following values using input help:.<br>.<br>
    <b>Field name    User action and values</b>.<br>
    Get Option           bsp.<br>
    Get File          CRM_SVY_BSP_SYSTEMPARAM_<systemID>_<client>.XML.<br>
    Send Option          bsp.<br>
    Send File          CRM_SVY_BSP_SYSTEMPARAM_<systemID>_<client>.XML.<br>.<br>
    17.Choose Generate URL (F6)..<br>
    18.Choose Test URL (F2)..<br>
    19.Copy the generated survey URL from field Survey URL..<br>
    Edited by: MSVKRI on Aug 24, 2010 2:27 PM

  • Survey Error:Connector ID not defined

    Hello Experts,
    Note:Useful answers will be highly rewarded.
    Please clarify this doubt as how to remove this error.
    I follow the following steps:
    1. Transaction crm_survey_suite -> Survey repository                   
    2. open Parameter XMLs                                                 
    3. open https                                                          
    4. There appear the file named "CRM_SVY_PARAM_HTTPS.XML"               
    5. When I try to upload the file with the parameters with the system   
    details, appear the message that attached in the file "MESSAGE -       
    CONNECTOR NOT (YET) DEFINED IN SURVEY.doc".      
    Even when you select the file and say syntax check then also the same error appears.
    Please tell me that do we need to define the connector specifically somewhere in the CRM system?
    Thanks in advance.
    Rakshit.

    Hi Rakshit,
    This might help.
    https://scn.sap.com/thread/1201652
    It asks to implement note 1542027
    Please check.
    Harsh

  • Hierarchical answers in survey

    Dear all,
    I would like to create a survey with a hierarchical answer structure, e.g. first dropdown box 'Germany', second dropdown box 'Hamburg, München, ...', filled dependent on the values in the first box.
    Is this possible or does anyone have a better idea to design this? It must be reportable from BW like a hierarchy...
    Thanks to all,
    E_M_S

    Hi E_M_S
        Please write a PBO function and link it with Survey. Have a look at the example survey 'EXAMPLE_DYNAMIC_SURVEY' provided by standard SAP.
        If you want to get into more complex scenarios, enhance the XSLT. Theses xslt files are available within 'Survey Repository'. For one of our recent projects, we were amazed to see the power of such functionality.
    Warm Regards
    Vijay

  • Survey PDF Layout (FOP)

    Dear,
    We installed an external CATServer in order to generate surveys as PDF documents using the Apache FOP libraries. Everything is working but now I would like to make some changes in the XSLT containing the '<fo:' elements (for example to decrease the font for the printable version). How can we know which XSLT is used and when? I already uploaded a Z_xxx.XSLT file into the survey repository (crm_survey_suite) but how can I use it? Thanks in advance,
    Fabian Joiris
    EoZen

    Yes - this helped marvelously. The only other thing I have
    noticed (other than the PDFs being produced faster), is that there
    are occasionally extra blank pages being produced here and there,
    but I presume it has something to do with the way I am coding page
    breaks.
    Thanks for your help!
    cheers,
    -sutton

  • Survey response email parameters

    hello,
    how can I find out what the address is where the response of a survey have to go?
    The answers of the survey don't receive the survey evaluation.
    In the xml parameters of the survey repository. where in the system can I find that address for the mailto-parameter?
    Are there other reasons why I don't get a response?

    Hi Tobias,
    When you sending a survey to a customer just append ++ at the end of the URL in your mail form. It is the tracking ID.
    Also ensure that the Survey settings have checkbox, Evaluation with and without Business information Warehouse Ticked (Tcode: CRM_SURVEY_SUITE)
    If you are sending survey via campaigns, ur survey should be craeted in the Marketing Application.
    For every response which comes from the customer an Activity of trnasaction type 0000 gets created. Also if u check in transaction CRM_SURVEY_SUITE, there is a button called Evaluation click on that after selecting ur survey, it shall also show u the response.
    Wish the information is useful.
    Regards,
    Shalini Chauhan

  • Generation of Survey URL does not works on Web Environment

    Hi experts!
    I'm new on SAP, and I'm having some problems when generating survey URL.
    I have created a survey using the transaction crm_survey_suite, and already done the configurations of the bsp code on "Survey Repository".
    When I try to test the code, it is working fine, with no bugs.
    In the SAP GUI, when I click on "Generate URL", I can generate and test it with no problems... But, when I try to access my Survey on Web Environment and I click on "Generate URL", the button is not available to be clicked.
    What should I do to turn this button available on Web Environment?? Should I activate something?
    Please someone help me in resolving this, I am stuck on this for the past few days.
    Thanks!!!
    Talita.

    Hi Dan Zhang,
    Thanks for your post.
    I have reproduced this scenario in my TFS 2013 Update 4 Server and received the same result.
    For this scenario, please submit it to Microsoft Connect Feedback portal at:
    https://connect.microsoft.com/VisualStudio. Microsoft engineers will evaluate them seriously.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Help me in sending mails using Javamail

    Hi guys this is my first Topic on thid Forum, expecting 'the best' response from any of u. I just want a class that takes a message and recipients address & sends a mail. I would really be obliged if some one can give me a very little class for it. T

  • Is it possible to change Planning Plant in General Task list

    Hello Gurus, Is it possible to change Planning Plant in General Task list, ie. for eg. Earlier I have General Task list Group:22, Group Counter:1, with Planning Plant:0001 & now i want to change/update new planning plant 0002 instead of old 0001 in t

  • Unable to create To Do from Inbox email

    I often use the To Do function to create a reminder based upon e-mails in my Inbox. I select some summary text (a few words) in the email, and then click the "To Do" button in the toolbar. However for some reason, I an now unable to do so with messag

  • PLEEEEEEEEEEEEASE, PLEASE HELP ME.!!!!!!!!

    I got an ipod for christmas, and one of my stupid friends done something stupid to it and now the screen is (i assume) broken. Something is wrong with it, the silver back of my ipod is slightly dented and my screen is greyed. This is a problem becaus

  • Convert Inputstructure into String and store into DB2

    Hello All My requirement is I want to convert total input structure into string then stored into database single field as clob. Can anyone suggest me how will i retive input structor, is there any user defined function will i write or is there any in