How to Link VALUEGUID to SurveyGUID (CRM Survey tables)

Hi Gurus,
I want to link table CRMD_ORDERADM_H to table CRM_SVY_DB_SVS
I can go to CRMD_ORDERADM_H to get the Survey GUID. Someone told me that i can go to CRMD_LINK table to get the Value GUID, but when i enter the Survey Guid, the table only returns three records (objtype_set = 07, 30 & 29; NO 58), so, i am lost. I don't know how to link table crmd_orderadm_h with table crm_svy_db_svs.
Your help will be highly appriviated.
Thanks.
Nadeem.

hi Nadeem,
What is the end result that u expect ? do u need the survey details or what ? do u want the survey details that is linked to a particular order ?
Call the FM as follows
CRM_ORDER_READ
EXPORTING
    IT_HEADER_GUID = (your order guid)
IMPORTING
    ET_SURVEY = (survey table)
The survey table will give u list of surveys (with their Survey GUID's). I would recommend using this FM, as it would take care of buffers etc. which might not be available if u try a direct select on tables.
Reward points if this helps.
Regards,
Raviraj

Similar Messages

  • CRM Survey Tables

    Hi all,
    I have define a Survey with a list of values. The user can select one of these values.
    In the next step the user want to print a document which contains among other things the selected values from the survey (not the survey itself!).
    I create a new report. I found the questions and the answers of the survey. (part of the response of function call 'CRM_SURVEY_READ_OW' importing structure CRMT_SURVEY_WRK field VALUEXML).
    I also found the the list of values but I can't find the selected values.
    Who can help?
    Regards,
    Ralf

    Hello Ralf,
    Hopefully I did understand your question
    The user selects a value from a value list /for example: drop down/ and you would like to retrieve the value the user selected.
    I would suggest searching in the PAI of the survey.
    Open the Survey Suite, select your questionnaire and choose Maintain Survey Attributes (CTRL+F12), there you see the PAI of the survey, where you can debug the tables the values are stored.
    Hope this helps.
    Regards,
    Martin Kuma

  • How to link a marketing characteristic with a table? ( TR CL03 - CT04 - BP)

    Hello,
    I'm trying to link a table (CRM_MKTPL_CAMPAIGN field : EXTERNAL_ID) with a mkt characteristic so that the user could select a value for this characteristic through a matchcode in transaction BP.
    I understood that i had to deassign the characteristic of the echaracteristic  group in TR CL03 in order to change some information in it via TR CT04.
    I managed to set the Table CRM_MKTPL_CAMPAIGN in the "Addnl data" section but when I reassign the characterictic to a group and go to transaction BP, nothing happens with the matchcode button.
    Is it possible to do it? did i do something wrong?
    Many thanks
    Laurent

    I found the answer myself, after posting this, of course!
    I changed:
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select">
    to
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select" onclick="window.location.href='./newpage.php?aid={a_id}';">
    Basically just added the onclick parameter...
    And it all just worked!

  • Crm survey table

    hi experts,
    i have created a survey for activity and now i want to get all data of survey file into a  internal table to print the details of survey file via report please help me regading the same ..

    Hi,
    Check
    Best regards,
    Caíque Escaler

  • How to link a tree to a ALV table

    Hi Experts,
    I have a tree node on the left side of my display.
    Now according to the user selection on the tree node,
    i need to populate the ALV table on the right.
    That means selected value by the user is the input parameter
    and should fetch the corresponding data accordingly and displays on the ALV table on the right.
    Please advise.
    Regards,
    Chitrasen

    Hi,
    Define the ON_FUNCTION event in the view controller. This is an event of your ALV.  In the coding of this event handler method put code like:
    METHOD on_select .
      DATA: temp TYPE string.
      temp = r_param->id.
      IF temp = 'LBUTTON'.
        wd_comp_controller->get_selected_line_via lead_selection( ).
      ENDIF.
    ENDMETHOD.
    What also needed is next code to be placed in method wdoinit of the component controller:
    METHOD wddoinit .
      DATA: l_ref_cmp_usage           TYPE REF TO if_wd_component_usage,
            l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table.
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      l_ref_cmp_usage = wd_this->wd_cpuse_alv( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
      l_ref_interfacecontroller = wd_this->wd_cpifc_alv( ).
      wd_this->l_value = l_ref_interfacecontroller->get_model( ).
    *&- Specify the display type
      wd_this->l_value->if_salv_wd_table_settings~set_display_type(
                          if_salv_wd_c_table_settings=>display_type_hierarchy ).
      wd_this->l_value->if_salv_wd_table_settings~set_enabled( abap_true ).
    *&- Specify a hierarchy columns Bucket, RE, PE and AE
      lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'BUCKET' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'RE' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'PE' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'AE' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
    *&- Display data of the last hierarchy as leaf
      wd_this->l_value->if_salv_wd_table_hierarchy~set_last_hier_column_as_leaf( abap_true ).
    *&- Create function in toolbar
      DATA  lr_button TYPE REF TO cl_salv_wd_fe_button.
      DATA  button1 TYPE REF TO cl_salv_wd_function.
      CREATE OBJECT lr_button.
      lr_button->set_text( 'SELECT' ).
      button1 = wd_this->l_value->if_salv_wd_function_settings~create_function( id = 'LBUTTON' ).
      button1->set_editor( lr_button ).
    ENDMETHOD.
    Cheers, John

  • How to link Product_guid with frg_guid.

    Hi Guys,
            Can someone pls tell me how to relate or link  the product_guid with the settype table field FRG_GUID.
    how the link is made in CRM.
    Regards,
    Vamsi

    Hello Vamsi,
    Check table COMM_PR_FRG_REL.
    Regards,
    Frédéric

  • Survey tables

    Hello,
    I need to know which are the tables where the questions and answers assigned to a survey are stored.
    Thanks!
    Susana Messias

    Hi Susana,
    The table CRM_SVY_RE_ANSW contains the questions and possible answers in the survey form. But if you're looking for the table where the actual response is being saved, you might want to look at these tables: CRM_SVY_DB_SV and CRM_SVY_DB_SVS. I also had the same question and Piyush and Florin was able to give me these information. I was told that the actual response is encrypted using XML. Thanks to both. You would want to find the thread for more info. Search for 'CRM Survey Tables'.
    Regards,
    Noel De Olazo

  • How to link Documents to CRM

    Hi
    Can anyone please suggest on how to link Documents to CRM CIC0 screen.
    Thanks in Advance

    Hi,
    This is possible thru the following way..
    CONSTANTS: c_fix_url TYPE string VALUE 'http://10.100.18.201:8080/archive?get&pVersion=0045&',
                 c_fixed_val1 TYPE string VALUE 'contRep=',
                 c_fixed_val2 TYPE string VALUE '&docId='.
      CONCATENATE c_fix_url
                  c_fixed_val1
                  archiv_id
                  c_fixed_val2
                  arc_doc_id
                  INTO l_url_doculink.
      CALL METHOD cl_gui_frontend_services=>execute
        EXPORTING
          document = l_url_doculink
        EXCEPTIONS
          OTHERS   = 1.
    Thanks
    Parvathi

  • How to set value for radio button in sap crm survey suite

    Hi ,
    I created a survey in CRM Service, in which I added a question with answer as '10 Selection Button Group ('radio button'). And answer has 11 answer options (which means 11 radio buttions). Now when we test the survey, the value for the radio buttons is appearing like 'id_0050569b03091ee480a29d8ee61e953c'. But i want to set a specific value for each radion button (from 1 to 11). So, how to set value for radio button in sap crm survey suite???.
    Thanks & Regards,
    Seshu

    Hi,
    I found solution myself. Click on Goto -> Editing Mode -> Expert Mode. Now you can set value for radio button.
    Regards,
    Seshu

  • Urgent: Extraction of CRM Survey  and change documents

    Hi BW Experts,
    My requirement is to extract CRM Survey which is linked to Activities as XML file and Change documents from CRM to BW. I know what are the datasources we need to use inorder to extract the Survey data to BW some of them are : 0SVY_DATA_1;0SVY_QUEST_TEXT and 0SVY_ANSWER_TEXT but I am confused in mapping Survey questions to BW as they may be of 200 char do we need to split them or is there anyother way we can map please would anyone suggest me steps to extract the Survey data from CRM to BW i.e from activation to Cube mainly I am worried about how do we map Survey questions to BW objects.
    And also I need to extract Change documents,i.e changes made to the created opportunity,activity transactions, from CRM to BW as the changes are not stored in DB tables but we can view them in extras menu->change documents I think they are linked to transaction number but i donot know how to pull them to BW.Would anyone put some light on it. I appreciate it in advance.
    Thanks in advance
    Regards
    Kishore.

    Hi Kishore,
    I have no experience in CRM extraction in BW.
    Did you try to use 'Propose Transfer Rules' function to map objects from extract structure to the comm structure. I am assuming that you have activated all the required Business Content and replicated your extract structures.
    Why do you want to map field by field? May be I did not understand your question?

  • Generate file to save on server from CRM survey results.

    Hello,
    I need to generate a file from the results of a CRM Survey running in an Internetscenario.
    When mailto is used an email with the attachment POSTDATA.ATT is sent back as attachment.
    How can I copy this document and save it on the customers file system?
    And how can this be realised when running internet scenario without using mailto.
    The scenario is running on CRM 2007.
    Thanks for any ideas.
    Best regards,
    Salvatore

    Hello Salvatore,
    Did your problem resolved? if not could you please elobarte your question so our community can help you much better.
    Thanks
    Raja Pamireddy
    CRM marketing Forum Moderator.

  • CRM Survey Suite and Web Survey

    Hi everyone,
    I am new in CRM and have been assigned to investigate the possible ways to send surveyes to the customers/users.
    In my investigations and readings, I have found that we coud use CRM Survy Suite or Web Survey.
    Could any one please tell me what the difference is between the two?

    Hello,
    AFAIK only the CRM Survey Suite is fully integrated into the CRM Campaign management. I think the easiest way to send surveys to customers and users is a mail form which sends out a personalized link to the survey.To make the survey available in the internet your basis admins have to configure the SAP Web Dispatcher as I've described in my Blog <a href="/people/gregor.wolf3/blog/2005/11/07/setup-sap-web-dispatcher-with-url-filter-on-suse-linux-90">Setup SAP Web Dispatcher with URL Filter on SuSE Linux 9.0</a>.
    Regards
    Gregor

  • How to use dynamic list box in survey builder?

    Hello,
    Could someone give me a little bit of thread? How to use dynamic list box in survey builder?

    Hi Liu,
    Dynamic combo boxes::A combo box is dynamic if it references a document property for which a value set is defined in the configuration (System Administration ® System Configuration ® Content Management ® Global Services ® Property Metadata ® Properties ® Parameter Allowed Values).
    At runtime (when you open the creation form) the system reads these values from the configuration and displays them in the dropdown list.
    If you link a combo box for which list entries already exist to a document property with a value set, the system asks whether you want to delete the list entries. it is recommend that you accept this suggestion and delete the list entries from the XML Forms Builder. Otherwise inconsistencies could arise between the entries in the XML Forms Builder and the value set in the configuration. This can cause errors when saving.
    Also you may Refer the Link for Further help:
    http://help.sap.com/saphelp_crm50/helpdata/en/29/c40d3d2a83752de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/00/9e7f41969e1809e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/a7/5a874174a8050de10000000a1550b0/frameset.htm
    Hope it Answers your Queries..
    Thanks and Regards,
    RK.

  • Standard Business Content & Data Targets for Case Management & CRM Survey

    Dear Friends,
    We are implementing CRM2007 with BW3.5 for reports for CRM Analytics. We require to Identify the Standard Data Targets & Standard Business Content (Reports) available for the following:
    1. Case Management
    2. CRM Survey (We have already been able to identify Data targets in BW3.5 for Web Survey & in CRM 2007 we have been able to identify Data targets for CRM Survey, as well as Web Survey. Our requirement is identifying Data Target for CRM Survey)
    Please guide.
    Regards,
    Rajesh Banka

    hi,
    You can find the planning scenarios related to planning ifor CRM at this link http://help.sap.com/SAPHELP_SEM350BW/helpdata/EN/05/242537cedf2056e10000009b38f936/frameset.htm
    You can also find the details on demo content for the same at http://help.sap.com/SAPHELP_SEM350BW/helpdata/EN/05/242537cedf2056e10000009b38f936/frameset.htm
    Regards,
    Deepti

  • Add Question dynamically in crm survey

    How to add the question dynamically in crm survey?
    I checked the two class CL_CRM_SVY_BUILDER and  CL_CRM_SVY_DOM.
    IN htis method Insert_question method is there.
    But how to use this method. What value should we pass in node.?
    If anybody knows about it, then please let me know.

    HI Dezpo,
    Thanks a lot for replying.
    I had checked the updated <b>SAP Note 834573</b> -Interactive Forms based on Adobe software: Acrobat/Reader version, which states that:
    For SAP Interactive Forms by Adobe, you require the following:
    Adobe Acrobat as of Version 7.0.9
    Adobe Reader as of Version 7.0.9
    <b>Important:</b>
    Note that you can only have limited use of Reader 8.0 for forms that, at runtime, are integrated in a WebDynpro application through the xACF technology (Active Components Framework). In this runtime environment, Reader 8.0 currently only supports static interactive forms. If you are using <b>dynamic interactive PDF forms</b>, we recommend that you use <b>Reader 7.0.9.</b> In the application, you can use parameters, or you can call methods, to determine whether you want to create a static or dynamic PDF form.
    I tried with the reader versions - 7.0.7,  7.0.9 and 8.01, but it doesn't work for either of them.
    Regards,
    Siddhartha Jain

Maybe you are looking for