Combine the Service Ticket View and the Survey

Dear experts,
       I need to display the survey within the Service ticket View. Can you please guide me through the steps to achieve the same?
Thanks,
Kanthimathi

Hi there,
Am just copy and pasting this link.. Some one has explained this procedure in the forums.As I am not sure how to give you the link of the thread, am just copy and pasting it here.
The Attachments assignment block is a re-use component. These re-use components can be integrated into all business transaction components, and as such also in the interaction record. You need to carefully check how the component GS_CM is integrated into component BT111H_OPPT.
1. Define your own enhancement for the interaction record component ICCMP_BT_INR
2. Definition of component usage for GS_CM in the runtime repository editor of the enhanced ICCMP_BT_INR component:
Component Usage: CUGSCM (compare with the component usage in BT111H_OPPT)
3. Enhance the component controller class CL_ICCMP_BT_BSPWDCOMPONE6_IMPL, method WD_USAGE_INITIALIZE
This method binds the context node(s) of the re-use component to the corresponding context node(s) of the main component ICCMP_BT_INR
Sometimes this is easy and binding can happen between 2 BTADMINH nodes for example. In case of the Attachment assignment block a custom controller is used, which makes it more complicated.
Example for BT111H_OPPT
Attachments
WHEN 'CUGSCM' OR 'CUGSCM_DET'.
CALL METHOD iv_usage->bind_context_node
EXPORTING
iv_controller_type = cl_bsp_wd_controller=>co_type_custom
iv_name = 'BT111H_OPPT/CUGSCMCuCo'
iv_target_node_name = 'CMBO'
iv_node_2_bind = 'CMBUSOBJ'.
IF gv_ppm_flag = abap_true.
CALL METHOD iv_usage->bind_context_node
EXPORTING
iv_controller_type = cl_bsp_wd_controller=>co_type_custom
iv_name = 'BT111H_OPPT/CUGSCMCuCo'
iv_target_node_name = 'ATTRIBUTES'
iv_node_2_bind = 'ATTRIBUTES'.
ENDIF.
4. Create custom controller in the enhanced ICCMP_BT_INR component, similar to BT111H_OPPT/CUGSCMCuCo.
You can re-use the opportunity custom controller, and just copy the code above into the WD_USAGE_INITIALIZE method of the interaction record component.
However, to have more clean code it would be better to define your own custom controller in the interaction record component.
5. Enhance the interaction record viewset to display the newly linked re-use component.
ICCMP_BT_INR/InrViewSet. You will probabily need to create a new viewarea and tablinks, and navigational links in the runtime repository.
hope that helps,
Sreekanth

Similar Messages

  • Am I the only user totally cheesed off with the service from Apple and the problems I'm having with my Mac

    Since purchasing my Mac 18 months ago I have had recurring problems which I am unable to have resolved.
    (1)  My computer keeps crashing,
    (2)  files are unavailable on my time machine backup.
    (3)  From the start there were tens of thousands of items on the computer, (not mine)
    (4)  constantly running out of space
    (5)  When I delete those original files they keep coming back
    (6)  I've never had an satisfactory answer to any query
    (7)   I'm beginning to think I've been sold a recycled computer
    How can I go about getting some genuine help
    This is stressing me out

    The new iOS 8.1 will be released on October 16 (today).
    Update all your iOS devices and most of your problems will probably be resolved.
    Good luck.

  • FM for getting the Service Ticket Details

    Hi Group,
    I have a requirement wherein, I need to get the Service Ticket(s) for the system when I pass the Status of the Service Ticket.
    The query is like:
    <b>Import </b>-> Passing the <b>Status</b> of the Ticket (like : <b>Assigned/Closed/Resolved </b>).
    <b>Export-</b>> Get the details of all the <b>Service Tickets</b> whose status is mentioned in the
                 <b> Import</b> Parameter..
    So please let me know of the <b>FM/BAP</b>I to achieve this task.
    thanks in advance.
    Regards,
    Amit.

    Hi Amit,
    You can use FM
    'CRM_SERVICE_PROCESSES_SEARCH'
    Here in 'Export' Parameter:: STATUS specify the status required
    Parameter: FROM and TO for dates.
    and collect the result from Import parameter: BUSINESS_PROCESSES_LIST
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Help needed in Service Ticket view version CRM 2007

    Hi,
    We have a requirement to replace the Service Level Agreements with Location details screen (custom defined) in the Service Ticket View. I did this in 5.0 version,but couldn’t replicate it in the CRM 2007
    version.
    Here is how I proceeded in the new version.
    Instead of creating a new view, I approached the Adding required
    context node approach and populated the fields that we need.
    1. I enhanced the component ICCMP_BTCTR
    2. I added Context node BTActivityH ( I did not link it to any CutomController in the wizard, but defined dependency to Higher LevelContext node BTAdminH, with BOL relation, BTHeaderActivityExt, and
    activated the check box “Always Create Instance” and let the the wizard to finish off.
    3. Then using the UI Config tool, I copied the standard configuration to my custom config for changes, I removed all the 3 fields that are there in the standard configuration, and replaced with the attributes
    of BTActivityH using UI Config tool in the component work bench. All fields are Input ready fields (not set for Display only).
    4. When I open the Service Ticket view to access these fields, in the UI of Service Ticket, I realized that they are display only fields.
    5. Then I created the attributes, ( to access GET_I_S_*) methods of the attributes, and I externally set rv_disabled = ‘FALSE’ in the metod (say GET_I_S_CITY)
    6. Now I am able to input values for those fields, but still I am not able to save those entries that I entered in there.
    I guess I am missing some thing in the wizard, like linking custom
    controller or dependency relations.
    Is it mandatory for me to bound the context node to component
    controller Node (BTActivityH). If so how can I bound it.
    Please advice me.
    Thanks and regards,
    Sreekanth

    Hello Sreekanth,
    I think that the fields are read-only and not saved because your context node is not bound to a custom controller. (Even though your higher level node, BTAminH, is probably bound to a CuCo)
    The code to perform the CuCo binding is mostly coded in the CREATE_BTACTIVITYH (controller class->typed_context->create_btactivityh or check create_context_nodes to see how the method is called)
    like this:
      owner->do_context_node_binding( iv_controller_type = cl_bsp_wd_controller=>co_type_custom
                                      iv_name            =  <name of the CuCo>"#EC NOTEXT
                                      iv_target_node_name = '<the context node of the CuCo to bind to>'
                                      iv_node_2_bind = <your context node> ).
    Now, save yourself a headache and a lot of debugging time and just create a new context node through the wizard again, this is much easier than trying to 'fix' it yourself! Once you have created your new context node you can delete the old one by deleting the attribute in the typed_context class.
    Hope this helps!
    Reward points if useful!
    Kind regards,
    Joost

  • Service Ticket view cannot be displayed

    Hi Experts,
    In the Web IC, when I try to click on the "Service Ticket" button from the navigation bar, I see the following error:
    Cannot display view ICCMP_BTSHEAD/BTSHeader of UI Component ICCMP_BTSHEAD
    An exception has occurred Exception Class  CX_BSP_INV_ATTR_NAME - BSP exception: An attribute with the name "BTCCODELOGSYS" is not defined 
    Method:  CL_BSP_PAGE_BASE=>IF_BSP_PAGE~SET_ATTRIBUTE 
    Source Text Row:  16
    Actually half of the screen is displayed and the top half is not displayed, but blank.
    Can anyone please tell me where I can add the attribute 'BTCCODELOGSYS".
    Thanks,
    John

    Hi,
    Open the SharePoint Central Administration,
    go to Application Management --> Manage Web Applications
    Click to select the web application that hosts your list (eg. SharePoint - 8080)
    At the Ribbon, select the General Settings and select Resource Throttling
    Then, you can see the 5000 List View Threshold limit and you can edit the value you want.
    Click OK to save it.
    Check this blog for more information:
    http://blogs.msdn.com/b/dinaayoub/archive/2010/04/22/sharepoint-2010-how-to-change-the-list-view-threshold.aspx
    Hope it could help
    Cheers, Hemendra-MCTS "Yesterday is just a memory,Tomorrow we may never see"

  • Changes made to the service ticket are not being saved.

    Hi Gurus,
    Can anyone please help me out ?
    There is a problem while updating the service ticket and saving it.
    Its allowing the changes however when trying to "save " .  The "please wait" icon is displayed briefly indicating work has been saved. I then click on the "Service ticket" box to bring up the "Service Criteria" box in order to start the process all over again.
    When I go back and check the data of the "saved " S.ticket its is either partially saved or not saved.This is not  happening  to all end users of CRM  but one person and she is being doing this job for years.
    Please suggest what should be done.Early the better.
    Thanks to one and all,
    R.....

    You need to explicitly refresh the tables. In the Mapping Workbench, select or multi-select the tables you'd like to refresh, right click on them and choose "refresh".
    IF you are doing that, and not seeing the changes, then the most likely issue is that you are connecting to a different database and/or using a different JDBC login.
    - Don

  • Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.

    I am trying to connect to SharePoint in my Office 365 environment by following https://support.office.com/article/Set-up-the-SharePoint-Online-Management-Shell-environment-7b931221-63e2-45cc-9ebc-30e042f17e2c and I am getting:
    Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.
    Is there some setting I need to change on the O365 side? Thanks.

    Hi,
    Based on your description, my understanding is that you want connect SharePoint Online using PowerShell.
    Please make sure that the following software is installed.
    Windows Management Framework 3.0
    SharePoint Online Management Shell
    And then, open the SharePoint Online Management Shell and use the Script below to test
    whether it works.
    $User = "[username]@[tenant].onmicrosoft.com"
    $Pass = "[password]"
    $creds = New-Object System.Management.Automation.PSCredential($User,(ConvertTo-SecureString $Pass -AsPlainText -Force));
    Connect-SPOService -Url https://[tenant]-admin.sharepoint.com -Credential $creds
    Get-SPOSite
    More information:
    http://blog.falchionconsulting.com/index.php/2013/01/using-powershell-to-manage-sharepoint-2013-online/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Very slow start when initially entering the service ticket in Web UI (2007)

    We seem to encounter a very slow start when initially entering the service ticket in Web UI (2007). Once in all seems speedy enough. I don't have my access arrange for the Service marketplace (OSS notes) yet so can't check if there is a known solution, which I suspect there is. Has anyone encountered this problem and possibly resolved it?.
    Jason.

    Previous posts have highlighted the following notes:
    1048388 General Performance improvements of BSP transactions
    1162605 Network performance for CRM 2007 Webclient
    1162685 SAP CRM 2007 Webclient Performance
    821045 Poor performance of MIME objects in BSP pages
    581316 BSP Delta-Handling for CRM (BASIS 620 SP17)
    However, I was wondering whether anyone has come across any other small changes that may have a major effect. A quick-win I guess you call it. From bitter experience I know there are rarely quick wins when it comes to optimisation due to the amount of re-testing etc.
    But any further advice would be welcome.
    Jas.

  • Automatic Routing in the Service Ticket

    Hi everybody.
    what's "automatic routing"?
    When i click on "escalation" in the service ticket, it's display a message "No rule found for automatic routing".
    With profile "ic_manager" i was create a roule but now i don't know where insert it in the customizing?
    Anyone has any idea about this ?
    Best regards.
    Virginia

    Hi Virginia,
    You need to pre-configure some rules based on which you route service tickets.Login with IC manager role in CRM 2007.There you go to Process Modeling->Rule Polciy->Create rules.
    Here you create rule for Context=Order Routing.
    Rule will be something like-If transaction type=service ticket and employee responsible = Virginia, then route to 'XYZ'.
    I have done similar thing for Complaints.
    Hope this helps!
    Regards,
    Rohit

  • BI Reporting Categorization levels in the service ticket RSA5

    CRM 5.0
    We have created a 2 level categorization for our ICWC with values created in the category modeler.  In the ICWC user can fill in category  1 & category 2 (GOOD)
    But in RSA5 in running the BI extract 0CRM_SRV_PROCESS_H
    The extract only appears to hold the category 2 data.
    If we create a service ticket and only fill in category 1 (leave category 2 blank) then the category 1 data is in the extract.
    How do obtain both level 1 & 2 data for BI reporting?  Points to be given.

    Hi Glenn,
    The reason why is because the second level is stored with the first level concatenated to the second level. I'll clarify this.
    The configuration of the catalog/codes is like this:
    Level 1
    C_1 Hardware
    C_2 Software
    Level 2
    D_1 Printers
    D_2 Screens
    D_3 Mouse
    D_4 Windows
    D_5 Office
    Via the Category Modeler the following hierarchy is created:
    C_1
       |__D_1
       |__D_2
       |__D_3
    C_2
       |__D_4
       |__D_5
    If you look at the technical code, the level 2 is stored like this: C_1:D_4 in the service ticket
    To make a reconsiliation of both levels in BW I believe you should transfer the following tables to BW
    CRMC_ERMS_CAT_CA
    CRMC_ERMS_CAT_CD
    CRMC_ERMS_CAT_CL
    CRMC_ERMS_CAT_CT
    These tables contain the technical code + Description of the categories.
    When you make the BW report, you need to read the category, split it by the ":" and rebuild the levels yourself based on the tables.
    hope this helps.
    Micha

  • To unlock the service ticket

    Hi all,
    we are using ICWC we are facing a problem that when the enduser is creating the ST after that when he opens that same ticket it is showing an error that ST is locked by the user XXX
    Regards,
    V.Sekhar.

    Hi,
    The service ticket edit is controlled by the partner function Agent responsible and only one person can work at a time on the ticket .
    if i understand correctly you want the ticket to be simultaneously edited by both the expert and the Agent this will happen only when the agent goes in display and then comes back in edit mode. for providing display as well as edit authorisation you will need to add it in the agent role.(Basis help needed)
    hope this helps
    Regards
    Raj

  • I bought an IPAD air from state and the screen is not working correctly and right now i'm in Egypt ,can i send my ipad to service in Egypt and the warranty will work in Egypt or what?

    i bought an IPAD air (32 gb wifi only) from USA just one month ago and the screen is not working correctly(picture attached) and right now i'm in Egypt ,can i send my ipad to service in Egypt and the warranty will work in Egypt or what?

    Have you tried a soft-reset to see if that fixes it ? You might be able to get warranty service in Egypt for your iPad, but the warranty includes :
    IMPORTANT RESTRICTION FOR iPHONE AND iPAD SERVICE.
    Apple may restrict warranty service for iPhone and iPad to the country where Apple or its Authorized Distributors originally sold the device.
    As it's wifi-only you should have a better chance of it being serviced under warranty, but there are no guarantees, it might depend upon the repairer.
    Egypt authorised service providers : https://locate.apple.com/eg/en/

  • HT3819 Home Share issue: I have a Mac and Apple TV. Both are log into the same Wifi network and the same iTunes account (I can view purchased movies on AppleTV). Home Sharing shows 'ON' for both devices. BUT...AppleTV shows no computers. Itunes sidebar-no

    Has anyone else found solution to Apple devices not 'seeing' each other on Home Share?  I have a Macbook Air (new Nov'12) and Apple TV (new Dec'12). Software updated on both. Both are logged into the same Wifi network and the same iTunes account (I can view movies purchased from iTunes on my AppleTV). Home Sharing shows 'ON' for both devices. BUT...AppleTV shows no computers... and ... Itunes sidebar does not have a 'Shared' area at all.  Help please as without this functionality, my Apple TV only provides portal to purchased (i.e. Netflix,...) content which I can get from Wii or Xbox.
    I have already tried the following without success:
    1. Homeshare DID work the first day after I setup Apple TV... but the next day it has not worked since then.
    2. Powered off 30 sec then re-started (Apple TV & Macbook & iTunes login)
    3. Checked Firewall settings per Home Sharing troubleshooting guide (correct settings)
    4. Turning on Photostream in iPhoto and selecting iPhoto within iTunes and then checking to see if Photostream shows anything on AppleTV (it shows 'on' for my iTunes account but 'Zero' pictures found ... despite the >3,000 pictures showing avail in iTunes).
    I also have 'Remote" app on my iPhone 4, with Home Sharing turned on (same Wifi network)... it has a very similar message as the Apple TV and same result that despite all devices having HomeShare 'on' they cannot see each other:  "Remote will automatically find the iTunes libraries and Apple TVs that have Home Sharing turned on using the account xxxx (it lists my correct itunes account name)."

    I solved this by reset of the Wifi (unplug cable and power to both modem and wifi ... wait 60 sec ... plug in modem cable and power ... plug in wifi power and LAN to modem ... restart AppleTV and Mac ... Turn Home Share 'OFF' in iTunes then back "ON" ... it took ~60 sec for the AppleTV to pick up my Mac in computers.

  • I have an iphone 2g unlocked for tmobile.  For the past 2 years it has worked fine then out of no where I get this message "your selected cellular network is no longer available" and the service cuts in and out all day.  It can't find tmobile on my phone?

    I have an iphone 2g unlocked for tmobile.  For the past 2 years it has worked fine then out of no where I get this message "your selected cellular network is no longer available" and the service cuts in and out all day.  It can't find tmobile on my phone for some reason but for 2 years previous it could no problem?  tmobile says it is a problem with my phone and not their service.
    Any ideas what to do?

    I would just explain that this just started happening, that nothing has changed on the phone, that it is an original iPhone and I wondered if they are implementing a change in coverage with their Edge network in my area.
    If you restore your phone, you will be given an option to back up your phone at the beginning of the process (see step 6 here: http://support.apple.com/kb/HT1414).  You will be given the option to restore to that backup at the end of the restore process.  Your messages are stored in the backup so restoring to the backup will return the messages to your phone.  Be sure to import your photos and videos to your computer (see http://support.apple.com/kb/HT4083) and back up your contacts somewhere before restoring your phone as these sometimesget lost in the restore process.

  • Lightroom 4.4: Only 3 thumbnails will display at a time in both Grid view and the Film Strip

    Hi. I have Lightroom 4.4. and Windows 7--both of which have been working fine for several months. Starting a few days ago, however, thumbnails have refused to load for any NEW photos I import. They appear gray/blank in both Grid view and the film strip. However, if you click on any of the film strip thumbnails (while in either Grid view or Develop mode), that thumbnail and corresponding image WILL load--until up to three have done so. Then they begin disappearing again, allowing you to view no more than three images' thumbnails at any one time.
    I can't review a shoot via Grid mode this way. I'm also afraid to use Lightroom while it's misbehaving, for fear of corrupting the catalog somehow (though all the images appear to be there). Searching this forum, I found several people who experienced having all of their thumbnails blank out and who were able to correct this by either reinstalling or removing their color profiling software. However, 1) I did this (and it didn't work), and 2) it isn't that all my thumbnails that have disappeared. All the thumbnails and images imported prior to the bug, still initially display correctly.* And I can get three thumbnails of the newer images to appear at a time.
    *The asterisk is because after I poked around some more, I realized that if I opened other folders and began post-processing images from older uploads (vs. just viewing them), the thumbnails that initially displayed correctly everywhere also blank out and begin appearing in this up-to-three-at-a-time fashion.
    Help, please?
    With many thanks,
    Rita

    Alas, it didn't work. I did it twice--the second time rebooting the computer before starting Lightroom. I didn't expect the reboot to make a difference, but I did discover something else in the process: the second time I tried this, I accidentally opened a different catalog--and new photos imported just FINE into that one, thumbnails and all! For one moment I thought the reboot HAD made the difference. However, when I reopened the catalog I actually wanted, the original problem remained. Thumbnails don't load with import, and, when forced, only display up to three at a time.
    So the problem seems specific to this catalog.
    And yes--thank you for affirming that reinstalling Lightroom wouldn't work, either. (I forgot to mention that's what I had tried first. It didn't help--but it's nice to know it wasn't supposed to.)
    Thank you so much for your reply. Do you have any other ideas, please?
    With many thanks, truly,
    Rita

Maybe you are looking for

  • The requested URL /Site/Home.html was not found on this server - HELP!

    NOT FOUND: The requested URL /Site/Home.html was not found on this server. This comes up when I type in my website address. I am new to this, have created my website on iweb, bought the domain name and purchased web hosting with 123-REG. I ask for th

  • Card query

    Do I need a DeckLink or some card to project DV on the side of a 2-storey bldg? Or a DeckLink HD if HDV?

  • Portal--Discoverer Formatting

    I am working in two different environments both reading the same reports. I enter the page header to show the page number (1 of 5) right justified in the page header. When I save that report, I logon to single sign-on and this pulls the report saved

  • Why is Photoshop Elements 11 incompatible with Windows 7?

    Why is Photoshop Elements not Compatible with Windows 7?

  • Drawing connected direct lines using the mouse

    Hallo all, What I want to do is, to draw connected lines on a graph using just the mouse... First I will define min and max values for (x,y) -graph range- using the property node... Then using the mouse I want to draw frequency ramps over time like i