Data Retrieval For Service Request Data

I am building a service that will have an input for a previously submitted request number. When that is entered, I need to be able to retrieve specific field values from that previous request. I do not know if the dictionary data is able to be queried and if so, which tables will house the data I am looking for. Sample: select dictionaryXXX.Field.YYY from??? where requesitionentryID = 1234

Hi Chris,
I believe that all of the dictionary/form data is encyrpted and stored using WDDX so it can't be extracted.  There's a secret squirrel WDDX viewer which you pass a ReqEntryID too and it displays a table of all of the service elements but you won't be able to use a retrieval rule to pull the data sorry.
Only basic information can be retrieved from the RC DB that I know of (ReqIDs, Customer Details from the DirPerson table, etc).
Cheers,
Ant

Similar Messages

  • How do I set-up my Dataset to pull data for Service Requests for a report

    I am using SQL Server 2012 Report Builder 3.0.
    I have my Data Source added - DWDataMart
    I want to build my Dataset to query and find a very specific item. Basically I am creating a daily report that will show what each "team" or Support Group (AD Object) Closed that day. He also wants the ability to open it by date, so if he misses
    a day he can get it later.
    I am totally new to this report building and only got this far by following a guide on a blog, but he used incident Reports in his example, and I do not know what objects to query for service requests.
    Thanks for any information you can provide.

    First, you will need to get the support group ID's in the warehouse before you can run reports for them.  I found that putting these queries in their own stored procedure was a better path.
    select IR.IncidentTierQueuesId, IR.IncidentTierQueuesValue
    from dbo.IncidentTierQueues as IR
    where IR.IncidentTierQueuesId != 0
    select SR.ServiceRequestSupportGroupId, SR.ServiceRequestSupportGroupValue
    from dbo.ServiceRequestSupportGroup as SR
    where sr.ServiceRequestSupportGroupId != 0
    Enter the the support group ID's into your work item query.
    Incident information is in dbo.IncidentDim and Service Requests are found in dbo.ServiceRequestDim.  Both incidents and service requests link to relationship data through dbo.WorkItemDim.  You can INNER JOIN on BaseManagedEntityId to link the incident
    or service request to the workitem entry and from there to the Assigned Users, Affected Users, or Affected Configuration Items.  Each relationship has it's own separate fact views.
    If you poke about in the tables, you will find it pretty easy to pull back all sorts of information from the data warehouse.

  • SLA for service request\service order  without create a service contract

    Hello Experts,
    We are using CRM 7
    Is there a possibility to determine SLA for service request\service order  without create a service contract?
    We have defined:
    1. Trasaction Code: CRMD_SERV_SLA-  Response Profile / Response Times
    2. In Customizing we have defined our date profile with the relevant duration
    3. In  Customizing for transaction types  we defined  SLA Prof. Det. Proc= IT000001
    4. we assign the Service Profile and Response Profile to BP (from "service levels" block) .
    Everthing seems ok but the SLA time is not determined automatically.
    Hope you can help me out.
    Thanks,
    Tal

    Hi Tal Tal
    Your steps are correct and i hope you did these too
    a) In the SLA determination procedure ,you have defined the access sequence for service product item or org
    b) If service product item ,take any service product for ex INVESTIGATION assign the two Service and response profile in the service tab
    c) if org the above two profiles can be assigned to org attributes.
    d) In my opinion the date profile you should have assigned it to item category as I think the SLA date calculation is done at the item level
    e) You should assign the SLA det prof to the transaction type in the service process business category - customizing header.
    f) when you create a transaction type sla dates will be determined as follows
        a) you have to enter service product entered in the item ,then dates will be visible,and also if your access sequence is based on service product,the respons profile and service profile will be determined.
        b) if you have given indicators as all these three "category,priority,codes' in your response profile, then you have to enter all three and then hit enter
       c) After hitting enter,the response profile determined above,will use the above 3 inputs of category,priority etc and determine the duration times ,which should be maintained in your date profile.hence the durations determined will be used in the dates calculation.
    Let me know if you have any other questions.

  • Escalation Action for Service Request Management

    Gurus
    I am using action profile for Service request management in SAP 7.0.
    I want to know what this particular condition IT_INCIDENT_ESCALATION does?
    Also what needs to be the process parameters for this?
    It has processing type as Method Call with method- escalation
    Thanks
    Tarang

    Hi John,
    Good Morning.
    I have a question on what are the benifits of smart value help in CRM 7.0. We have upgraded our system and didnt achieve the true functionality of smart value help.
    Ex - We entered country as 'US' in Country field and entered C* in Region field. I could see all regions starting with C* in the smart value help. It is not filtering based on the country selected. It should show me only regions which are in US and starts with C.
    Is this a limitation. F4 helps works perfectly. I think we are missing some notes here.
    Appreciate your feedback.
    Regards,
    Ch Deepthi.

  • Service contract determination for service request

    Hi,
    is there a way to influence the contract determination in a service request creation process?
    The contract should be found if there is one for sold-to-party OR ship-to-party.
    Thank you.
    Kind regards
    Manfred

    Hi Manfred,
    I don't know about "Ship-to arty" use in contract determination. AFAIK Sold2-Party, Sales and Service Organization, status of the Service Contract (released), Start and End date and the object list are responsible for the Contract determination. Hence if I'm not wrong a sold2-party must be provided.
    There is the CRM_SERVICE_CONTRACT Badi and what we did in our process is to use the Event framework to ensure a contract redetermination after change of the sold2-party. Take a look at CRM_SEARCH_SERV_CONTRACTS_EC for ideas in that direction.
    Regards,
    Hendrik

  • CAN ANY body Help for service request conversion

    HOw we can start service request convesion. Breif info please.
    I know that we need to use api. CS_servicerequest_pub.create_servicerequest
    and jtf_task_pub,
    jtf_notes_pub.
    how can i start the base tables and some info about calling these apis. Do i need to call jtf apis also or only need to call service request pub is ok.

    Hi,
    1)You need to start with preparing a mapping between data in your legacy/old system and SR fields in Oracle apps. You may have to default few required fields in Oracle SR if you dont have them in legacy.
    2)Then identify which APIs to be used. This will depend on what SR related objects like notes, tasks, attachments etc. you have to create. You will have to call seperate APIs for each object. CS_servicerequest_pub.create_servicerequest creates only SRs, And not notes , tasks etc..
    3) You may have to create staging tables to import data from your legacy system. Plan and prepare the structure of these tables carefully to import all required information from legacy. Keep in mind the data types of these columns to map columns in Oracle tables. Also have extra columns for record status (new, error, success etc. ) and for error message if any.
    4) Prepare code(package and procedure) to call and run all required APIs to process your data from legacy system available in staging table. You can refer to Oracle documentation for info on APIs. Keep in mind to capture errors and failures due to different reasons.
    5) Register this procedure as program in Oracle apps and run it when data is available in staging table.
    6) You may have to run program multiple times after correcting any error records in each run.
    Hope it helps..
    Regards,
    Mohammed

  • Error while requestin for Service Request iview in ERP Common Role.

    Hi,
        I had assigned ERP Common role to a HR user and am trying to access pdf form from Service Request iview( I had done the configuration of Adobe in my portal).But i'am getting this error
    "<b>The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.services.exceptions.PDFDocumentCreationException: ../../sap.com/pcui_gpisr/IsrForm/wd_key10_1195809801368/Error+PDF.pdf?sap-wd-download=1&sap-wd-dl_behaviour=1&sap-wd-cltwndid=WID1195809793448&sap-ext-sid=ysgHJHKWgBk%2FD7vUfMJLfw%3D%3DrN%2FM35pdXDmoXpjL4oeIJA%3D%3D%2Fpcd%3Aportal_content%2Fcom.sap.pct%2Fevery_user%2Fcom.sap.pct.erp.common.bp_folder%2Fcom.sap.pct.erp.common.iviews%2Fsap.com%2Fpcui_gp%7Eisr%2FIsrForm%2Fbase&sap-wd-norefresh=X&sap-ep-version=7.00.200610261628
        at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:383)
        at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
        at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
        at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)</b>"
    anybody please help me in this issue.
    with regards
    Pradeep.B

    hi,
    There is a similar thread (http://stackoverflow.com/a/17572316 ), I recommend you could refer to it.
    And I'd like to know how to set the expiry time in your code, and you could see this page (http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-1/
    Regards,
    Will
    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.

  • Error while requesting for Service Request iview in ERP Common Role.

    Hi,
    I had assigned ERP Common role to a HR user and am trying to access pdf form from Service Request iview( I had done the configuration of Adobe in my portal).But i'am getting this error
    "The initial exception that caused the request to fail, was:
    com.sap.tc.webdynpro.services.exceptions.PDFDocumentCreationException: ../../sap.com/pcui_gpisr/IsrForm/wd_key10_1195809801368/Error+PDF.pdf?sap-wd-download=1&sap-wd-dl_behaviour=1&sap-wd-cltwndid=WID1195809793448&sap-ext-sid=ysgHJHKWgBk%2FD7vUfMJLfw%3D%3DrN%2FM35pdXDmoXpjL4oeIJA%3D%3D%2Fpcd%3Aportal_content%2Fcom.sap.pct%2Fevery_user%2Fcom.sap.pct.erp.common.bp_folder%2Fcom.sap.pct.erp.common.iviews%2Fsap.com%2Fpcui_gp%7Eisr%2FIsrForm%2Fbase&sap-wd-norefresh=X&sap-ep-version=7.00.200610261628
    at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:383)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)"
    anybody please help me in this issue.
    with regards
    Pradeep.B

    hi,
    There is a similar thread (http://stackoverflow.com/a/17572316 ), I recommend you could refer to it.
    And I'd like to know how to set the expiry time in your code, and you could see this page (http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-1/
    Regards,
    Will
    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.

  • Record assigned entry different for service requests and incidents

    Hi
    I've noticed something recently when using/implementing service manager that the record assignment formats are different depending on if you are assigning an incident or service request.
    For example when assigning an incident the record assignment shows the display names of the user being assigned (eg the incident is assigned to Joe Bloggs) however for a service request it shows as assigned to domain\jbloggs.
    Is there any reason for the difference between the 2 and can it be standardised as we use the work item action log to send assignment notifications to the affected users and while it's great for incidents it doesn't look good for service requests

    Unfortunately, this is just a text property and this different behaviour is hard-coded into SCSM and cannot be changed. Different people worked on the IR and SR forms and there are many inconsistencies. You could try raising a support case for it I suppose
    but I would not think it likely to be changed.
    Rob Ford scsmnz.net
    Cireson www.cireson.com
    For a free SCSM 2012 Notify Analyst app click
    here

  • User role for service requests from the SSP

    Does the End User role have enough permissions for users to create service requests from the SSP?  I know for incidents it is but I am not sure about service requests.  If you go through the Service Catalog Checklist, step 5 to create the User
    Role brings up a new role based on the Author role and not on the end user.

    here step by step procedure with user access.
    http://www.concurrency.com/blog/scsmportalpermisions/
    Cheers
    Antoine AL Ibry

  • Inbox Search - status for service request not updated

    Hi,
    In inbox search, the status change for a service request does not reflect until the user log offs or opens the service request in edit mode. PFB the steps followed. (Two users are monitoring the service request but is being processed only by one)
    Web UI window 1(User 1): I open the inbox search result page. Service requests are displayed with the status field
    Web UI window 2(User 2): In a separate window, the service request is approved by changing the status of the service request to Approved.
    Web UI window 1(User 1): In the inbox result screen, i click on search for the same search criteria, but still the old status of the service request(updated in window 2) is displayed.
    Observation:
    1. If I open the service request, the service request still has the old status. If i click on edit, the new status is displayed. If i click on Back button (without clicking on edit), the new status is refelected for the service request in the inbox result page now.
    2. If I log off and again open the inbox result, the new status of the service request is reflected.
    3. The status of the service request is updated in the database immediately user 2 changes the status.
    There is no enhancement done for the inbox search. The behavior is for standard inbox result.
    Please provide any pointers to resolve this issue.
    Regards,
    Radhika
    Edited by: Radhika Chuttani on Jan 5, 2011 7:13 AM

    Radhika,
    This is standard behavior in the SAP inbox. The reason is that SAP buffers search results in the Inbox in order to improve performance. So even though you hit "search" again, SAP does not update the search results because this search has already been executed in this session. Clicking "End" or logging off refreshes the buffer.
    SAP released a note to update the "Responsible Employee" in the Inbox without requiring the user to log off. You can see their explanation and the solution here:
    https://service.sap.com/sap/support/notes/1465966
    If you want to enable inbox refresh every time a search is executed, you will probably have to do custom coding. My guess is that you may be able to leverage the CRM_IC_INBOX_BADI. Let me know if this much info is enough or if you want further details on how to technically achieve this.
    Rahul

  • Workflow for service request

    Hi
    Would it be possible to have a workflow in which when the status of a service request is changed to closed, the open tasks related to the service request would also be changed to completed.
    -Nilesh
    Edited by: Nilesh Singh Chouhan on Mar 10, 2010 10:47 AM

    Hi Nilesh,
    This forum is for Analytics topics. Please post this to the Administrator forum.
    -Administrator

  • Team or Group similar feature workaround for Service Request?

    Hi all,
    I understand that Service Request currently has no support for Teams or Groups, but is there any work-around which can offer the same functionality where I can easily add a specific user to enable him\her to access a specific Service Request record?
    Thanks.

    I think your best option is Book of Business. Create two picklists in the SR object that contain your users and let workflow assign the SR to the correct user book
    (each user would have a book).
    Edited by: bobb on Apr 23, 2010 12:09 AM

  • Console Task Target System.WorkItem.ChangeRequest also shows for Service Requests

    Console tasks specifically targeted at Change Requests also shows up in all Service Request views.
    System.WorkItemChangeRequest is located in the MP System.WorkItem.ChangeRequest.Library.
    Is this a bug, or me doing something wrong?
    Currently on a closed network, hence screenshots and codesamples is a bit difficult to get my hands on and show here.
    http://codebeaver.blogspot.dk/

    code as follows
    <ManagementPack ContentReadable="true" SchemaVersion="2.0" OriginalSchemaVersion="1.1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Manifest>
    <Identity>
    <ID>X.PublishChangeToCalendar</ID>
    <Version>1.0.1.5</Version>
    </Identity>
    <Name>X.PublishChangeToCalendar</Name>
    <References>
    <Reference Alias="System">
    <ID>System.Library</ID>
    <Version>7.0.5826.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="WorkItem">
    <ID>System.WorkItem.Library</ID>
    <Version>7.5.3079.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="Console">
    <ID>Microsoft.EnterpriseManagement.ServiceManager.UI.Console</ID>
    <Version>7.0.5826.859</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="ChangeRequestLibrary">
    <ID>System.WorkItem.ChangeRequest.Library</ID>
    <Version>7.5.3079.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="Authoring">
    <ID>Microsoft.EnterpriseManagement.ServiceManager.UI.Authoring</ID>
    <Version>7.0.5826.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="Administration">
    <ID>Microsoft.EnterpriseManagement.ServiceManager.UI.Administration</ID>
    <Version>7.0.5826.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="WindowsLibrary">
    <ID>Microsoft.Windows.Library</ID>
    <Version>7.5.8501.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    <Reference Alias="ServiceManager.ChangeManagement.Library">
    <ID>ServiceManager.ChangeManagement.Library</ID>
    <Version>7.5.3079.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    </References>
    </Manifest>
    <Categories>
    <Category ID="PublishChangeToCalendar.Category" Value="Console!Microsoft.EnterpriseManagement.ServiceManager.ManagementPack">
    <ManagementPackName>X.PublishChangeToCalendar</ManagementPackName>
    <ManagementPackVersion>1.0.0.0</ManagementPackVersion>
    <ManagementPackPublicKeyToken>x</ManagementPackPublicKeyToken>
    </Category>
    <Category ID="PublishChangeToCalendar.DoNotShowInForm.Category" Target="PublishChangeToCalendarTask" Value="Console!Microsoft.EnterpriseManagement.ServiceManager.UI.Console.DonotShowFormTask" />
    <Category ID="PublishChangeToCalendar.ShowConsoleTask.Category" Target="PublishChangeToCalendarTask" Value="Console!Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleTasks" />
    </Categories>
    <Presentation>
    <ConsoleTasks>
    <ConsoleTask ID="PublishChangeToCalendarTask" Accessibility="Public" Enabled="true" Target="ChangeRequestLibrary!System.WorkItem.ChangeRequest" RequireOutput="false">
    <Assembly>Console!SdkDataAccessAssembly</Assembly>
    <Handler>Microsoft.EnterpriseManagement.UI.SdkDataAccess.ConsoleTaskHandler</Handler>
    <Parameters>
    <Argument Name="Assembly">X.PublishCR</Argument>
    <Argument Name="Type">PublishWI.PublishChangeTaskHandler</Argument>
    <Argument>PublishWI</Argument>
    </Parameters>
    </ConsoleTask>
    </ConsoleTasks>
    <ImageReferences>
    <ImageReference ElementID="PublishChangeToCalendarTask" ImageID="Administration!Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.Image.Notification" />
    </ImageReferences>
    </Presentation>
    <LanguagePacks>
    <LanguagePack ID="ENU" IsDefault="true">
    <DisplayStrings>
    <DisplayString ElementID="X.PublishChangeToCalendar">
    <Name>X.PublishChangeToCalendar</Name>
    </DisplayString>
    <DisplayString ElementID="PublishChangeToCalendarTask">
    <Name>Tilføj til kalender</Name>
    <Description />
    </DisplayString>
    </DisplayStrings>
    </LanguagePack>
    </LanguagePacks>
    <Resources>
    <Assembly ID="Assembly.PublishChangeToCalendar" Accessibility="Public" FileName="X.PublishCR.dll" HasNullStream="false" QualifiedName="X.PublishCR.dll, Version=1.1.0.0, PublicKeyToken=x" />
    <Assembly ID="Assembly.Microsoft.SharePoint.Client" Accessibility="Public" FileName="Microsoft.SharePoint.Client.dll" HasNullStream="false" QualifiedName="Microsoft.SharePoint.Client.dll, Version=14.0.4760.1000, PublicKeyToken=71e9bce111e9429c" />
    <Assembly ID="Assembly.Microsoft.SharePoint.Client.Runtime" Accessibility="Public" FileName="Microsoft.SharePoint.Client.Runtime.dll" HasNullStream="false" QualifiedName="Microsoft.SharePoint.Client.Runtime.dll, Version=14.0.4760.1000, PublicKeyToken=71e9bce111e9429c" />
    </Resources>
    </ManagementPack>
    http://codebeaver.blogspot.dk/

  • SCSM Authoring for Service Request forms

    We are planning to start SCSM authoring work . As of now we are planning to focus on Service Request forms . The intent is to get them on the  portal as Request Offering .There would be mainly 10-15 SR forms ,and now each of these forms would have some
    additional fields which we means we have to extend the SCSM CLASS in Service Manager DB . We have done authoring some time back where we extended the class and the field would be visible in the extension tab in SM. There would be some common fields/classes
    that would be made available in some/all offerings , and I am thinking that those fields can be extended in the SR form. Is there any way that other classes can be restricted only to certain offerings
    I may be wrong with my approach ,please correct me. Also I know you are super busy , if you can point me to some good materials/examples so that I can look up myself

    You must use "Inherit from this class" senction on authoring console. So u can create different SR class that
    containing different fields.
     

Maybe you are looking for

  • Excise duty changes

    Dear gurus, What is the steps of process for change the excise duty from 14 % to 10 %. Regards R.Rajendran

  • Selecting Single Rows that match to a column within group function output

    Trying to write a Query that will look through a data set that will return the Barcodes of CompoundNames that have a summed Quantity > 500. So if it was ran against the sample table below the output would be 0005 0006 0007 0008 0009 0010 Barcode, Com

  • Problems with mighty mouse clicking

    Hi everybody, happy New Year first of all! Then my problem: I bought an Intel iMac about 1 year ago, and have been using the supplied wired mighty mouse since then. I set it up with left+right top buttons. I didn't have a single problem until a few w

  • Cannot select or change TV channels using Windows remote.

    I purchased a TouchSmart 610 1280qd (Windows 7 Pro) August 2011, but cannot change channels on TV using Windows remote, but I can with ATT Uverse remote.  Picture is not clear and there seems to be some conflict going on in the background.  Spent man

  • Bookmarks page pops up for no apparent reason until minimized??

    After using the "Favorites" page (Bookmarked locations), the favorites will show up again until I either close it or minimize it. Can be annoying when inputting information online or shopping. This question is being posted on a IE computer.