Service Request - Default Owner field with Created By info

Can anyone help me to default "Owner" field in "Service Request" record type with same info of the "Created By",
Currently the owner field is provided with magnified glass option to select Owner and Save the Service Request.
Thanks, Mahesh

Mahesh,
I am assuming that the login user is the creator of the record.
In that case, use the 'Owned By Id' field in the SR object. Post default it to LoginId()
Rgds,
Amit

Similar Messages

  • Permissions, change request, business owner field

    i'm setting up unique permissions for my company, i created a tier 1 change group so that tech's can create change requests, however if they put a business owner, they get the below permissions error.
    add anything to that and the techs get,
    Date: 3/5/2015 9:24:56 AM
    Application:
    Application Version: 7.5.1561.116
    Severity: Error
    Message:
    Microsoft.EnterpriseManagement.Common.UnauthorizedAccessEnterpriseManagementException: The user NC\test4scsm does not have sufficient permission to perform the operation.
       at Microsoft.EnterpriseManagement.Common.Internal.ServiceProxy.HandleFault(String methodName, Message message)
       at Microsoft.EnterpriseManagement.Common.Internal.ConnectorFrameworkConfigurationServiceProxy.ProcessDiscoveryData(Guid discoverySourceId, IList`1 entityInstances, IDictionary`2 streams, ObjectChangelist`1 extensions)
       at Microsoft.EnterpriseManagement.ConnectorFramework.IncrementalDiscoveryData.CommitInternal(EnterpriseManagementGroup managementGroup, Guid discoverySourceId, Boolean useOptimisticConcurrency)
       at Microsoft.EnterpriseManagement.ConnectorFramework.IncrementalDiscoveryData.Commit(EnterpriseManagementGroup managementGroup)
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.DataAdapters.EnterpriseManagementObjectProjectionWriteAdapter.WriteSdkObject(EnterpriseManagementGroup managementGroup, IList`1 sdkObjects, IDictionary`2 parameters)
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.DataAdapters.SdkWriteAdapter`1.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
       at Microsoft.EnterpriseManagement.UI.ViewFramework.SingleItemSupportAdapter.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
       at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
       at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
    what task do i need to give them permission over, they have everything that has to do with change request.

    Ouch :(
    Ok, let me explain what is going on here: The Business Owner field must be a customization MS did to your Change Request form. Depending on which classes and relationships they used, you will have to grant permissions to the Change Manager profile to write
    instances of these relationship classes.
    There is two solutions two this:
    1. Instead of creating a custom user role of type Change Manager, you create a custom user role of type Advanced Operator. Just be aware that Advanced Operators have permissions to create and modify all work item types and config items.
    2. If this is not an option, we have to figure out how MS did the Business Owner customization. The first step would be to find the management pack which stores the Business Owner class and form extension. If you are lucky, you might be able to find a management
    pack with a meaningful name sounding like Business Owner. If you find it, export it, and paste the XML code of the management pack. If you cannot find it, we have to start unpacking your environment with PowerShell or looking into the database :(

  • SCSM 2012 - service requests auto complete even with activities in them

    I introduced SCSM 2012 on Monday at out company. I have a number of service requests templates that the service desk use.
    I have seen a major fault. Occasionally when a request is raised from the template the goes straight to complete and therefore the manual activities are stuck in pending and i have to kill the activities using a powershell script. Below is a screen shot
    showing an example.
    THis was raised from a template the service desk use frequently. The template is ok because we have used it several times. In the example below service desk raised the template - as ever when you raise a request the system moves it from 'new' to 'In Progress'
    - which is fine you should expect this - but then it automatically moves it from 'In Progress to 'Complete' - this is without the activity being completed. The activity is then stuck in pending. No one is marking the request as complete, the system is doing
    it - but why??????? there are no workflows set up at all for Service Requests

    Hi CCOTS-KN
    You can actually quite easily test this.
    Create an SR from a template that has 3 Manual Activities.  Once created it will progress through the 'Submitted' status to the 'In Progress' status.  The first Manual Activity should also be 'In Progress'.  Now complete the first Manual Activity,
    then wait for the second Manual Activity to go to the 'In Progress' status.  Now, put the SR 'On Hold'.  Wait for a couple of minutes - until the 2nd and 3rd Manual Activities are paused.  Now resume the SR.  What should happen is that
    the Manual Activity resume workflow should trigger before other workflows, resulting in the SR and the Manual Activities remaining 'In Progress'.  If the issue is not fixed, the completion workflow will trigger first resulting in a completed SR with paused
    activities.
    HTH
    Cheers
    Shaun

  • Where to Configure Service Ticket "Reason" & "Subject" field with new value

    Hi Friends - I am working on IC Webclient Service Ticket. I want to Configure the "Reason" field as well as the "Subject" field in Service Ticket with new Values as per our requirement.
    I could not find any Configuration object for the above mentioned customizing in the CRM > SPRO.
    Can you pls guide me where I can configure the same?
    Thanks in advance and warm regards
    Purnendu

    Hi Gert - Thanks a lot for your reply.
    I am using CRM 5.0. I just forgot that Categorization profile can be used for the same.
    I have configured the categorization profile for the same and its working fine.
    One more thing -
    I want to create an Appointment with Customer for problem resolution at the Customer Site. I want to assign Resorces to the Appointment so that the responsible resource is notified and sent to the Customer Site for Visit.
    Can you pls guide me on the same?
    Cheers
    Purnendu
    P.S. - Full reward points awarded.

  • Creating an auto incrementing field with CREATE TABLE from Java

    I'm using the "sun.jdbc.odbc.JdbcOdbcDriver" to get a connection towards an ODBC data source that's linked to a Access (.mdb) database.
    I've tried various combinations in my CREATE TABLE statement execution in order to create a table with an auto incrementing integer but neither of them work, not even the most obvious one:
    stmt.executeUpdate("CREATE TABLE mytable(uid integer AUTO_INCREMENT PRIMARY KEY);");
    I always get this runtime exception: *java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in field definition*; and AUTO_INCREMENT is the problem. I've tried all variations like AUTO, INCREMENT, AUTOINCREMENT and such, but nothing works.
    I've looked everywhere but couldn't find an answer to this. Thanks for the help.

    You used MySQL syntax. I think you agree with me that Access isn't a MySQL database. Either use MySQL with a real JDBC driver (recommended) or use Access syntax.
    That said, creating databases and tables using Java is a bad idea. The database and table must be already there. With Java you just do the usual table operations like select, insert, update and delete. Nothing more is needed.

  • Populating A/R Invoice Fields With Stored SQL Info

    Hello All --
    I have heard that one option of getting freight charges, tracking info, other shipping data into our A/R Invoice of SAP B1 is to create a look-up in A/R Invoice that can retrieve data saved in SQL by World Ship. 
    Does doing something like this require the SDK package?  If not, would doing this violate any service warranty offered by SAP?
    Please advise.
    Thanks!!
    Mike

    Hi Mike,
    You have asked this question a month ago.
    As long as you follow SAP's tools like DTW, DI API or SDK, you will be covered without problem.
    To be clear, I just copy the complete note text for you here:
    SAP will not support any database, which is inconsistent, due to SQL-Queries, which modify datasets or the datastructure of the SAP Business One Database. This includes any update-, delete- or drop-statements executed via SQL-Server Tools or via the the query interface of SAP Business One.
    This is stated in the support contract between SAP and the SAP Business Partner also.
    "SAP will not provide support for any problem that arises because Partner or end customer has altered Software or SDK inappropriately " and "Nor will SAP provide any support services for problems that lie in Partner's or end customer's area of responsibility and result, for example, from inappropriate installation, unsatisfactory end-user training, lack of or incorrect business design, incorrect operation, or faulty hardware"
    Where inconsistencies are found in a database as outlined above, SAP Business One Product Support will be unable to process the message further. In order to continue the support for this SAP Business One installation, it is expected to revert to a database backup where inappropriate changes have not been carried out.
    Thanks,
    Gordon

  • Default value in LOV field in Create and Update page in OAF

    Hi All,
    I am unable to default LOV field in Create and Update page in OAF.
    I tried in below way :
    OAMessageLovInputBean lovBean1 = (OAMessageLovInputBean)webBean.findChildRecursive("AAA");
    But I am getting developer mode exception, so please guide me how i can set the default value for create and update page instead of using code in process request method in controller.
    Thanks

    Hi,
    1) In case of create, you can default the value either in EOImpl or in AM while initializing the row:
    //in EOImpl
    public void create(AttributeList attributeList)
    super.create(attributeList);
    setXXAttribute(<value>);
    //in AM, VO new row initialization :-
    VOImpl VO = getVO1();
    VO.setMaxFetchSize(0);
    VORowImpl row = (VORowImpl)VO.createRow();
    row.setXXAttribute(<value>);
    VO.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    2) In case of update, execute the VO (also set the where clause if required) in PR method of update page.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Create Service Request to open for the incident number we pass

    I want to call open Service Request form(Form:CSXSRISR) with details of incident number already loaded.
    I am trying to pass parameters like request_id, p_incident_id ,... When the form opens it says no such parameter is there. Is there any way to open a create service request form with the service request loaded for the incident number we pass

    Hi Joaquin,
    Thank you for answering. I already tried: I select the line with the email in the Inbox, I press Interact (the account is automatically recognized and I am asked to confirm it), I confirm the account and then I navigate to "Service Request" workcenter: a new Service Request is displayed, with the employee responsible and the customer automatically filled. However, I can see no data regarding any attached email in any of the Service Request tabs (even if I save or select "End").
    After your answer, I tried the same procedure with the "Service Ticket" and noticed that the email is correctly displayed as an Interaction Record under the Business Content tab for the Service Ticket: since you confirmed that this should work also for Service Request, I guess there's something wrong in my customizing settings and now I will search for errors.
    Thanks for your help.
    Best regards,
    Laura.

  • Access is denied.. Error when creating Internet service request

    Hi all,
    I have created an internet service request for the employee to create his bank details ( which have to be routed to HR administrator ).
    I have created a scenario named ZBD and assigned by self as the processr and created an ITS service by the name Zbank.
    i log on to its for the service QISR. I Select my custom scenario, but when i select my custom scenario it gives me a java script error "access denied".
    When i try ot execute the transaction QISR from webgui i get the error
    "access is denied" and also another message saying "Enter the address of your ITS Web server"
    I found a couple of mesasges but none helped me get over this issue
    please help

    resolved

  • Report to show Service Requests that are open on a day selected by the user

    Dunno if I'm being thick, but I can't see how to do this in a report/dashboard...
    The user selects a day and the report pulls back all the Service Requests that were open on that day using the following logic...
    Service Request Opened Date <= Selected date & Service Request Closed Date >= Selected date
    Is this possible?

    You can do this with a report or a dashboard.
    For a report, create a report your subject ares, like Service Request. In Step 3, Create a prompt on your date and choose Column Filter Prompt. Give the prompt a caption ("Enter/Choose Date" for example). Choose the date field for the Filter on Column. Determine how you want the users to select the value and hit OK. My experience has been that you need to let users type in the date, as opposed to choosing from a drop-down list, because of the volume of data and performance reasons, but test it to determine what works best for your needs.
    For a dashboard, you would need to create a dashboard prompt for your dashboard report. You do this by creating a new report on your intended subject area, i.e. Service Request. Instead of creating the report as you normally do, you need to click on the Create Dashboard Prompt button at the top left, just below the Oracle logo. Choose the right reporting area, then complete the prompt details. Don't forget to allow for the prompt in your report.
    I always recommend that you consider purchasing a great book on reporting, written by Mike Lairson. It is an excellent resource for nearly all of your reporting questions. You can find it on amazon.com.
    http://www.amazon.com/Oracle-Demand-Reporting-Osborne-ORACLE/dp/0071593047/ref=sr_1_1?ie=UTF8&s=books&qid=1274893170&sr=8-1
    Good Luck,
    Thom

  • Is it possible to have an adress field with a Custom Object?

    Hello,
    I would like to link a service request to an account and an intermediary such as a travel agency. But the original datamodel only allow one account per Service Request.
    So, I have created a custom object (Intermediary) that should have similar relations with other objects than the Account one. With this object, I will be allowed to link my two accounts to the SR. But I would like to insert an address field in my custom object. Unfortunately, this kinf of custom field type is not available...
    Is there any solution to have one? Or is there another solution I could use to link 2 accounts to a Service Request?
    Thanks in advance,
    Laurent

    We had the same problem. Decided to use one of the new custom objects (CO-05) for this purpose. The drawback of using it this way is the lack of automatic formating of the address lines by country selected like you get with accounts and contacts. On the good side, you can designate fields for use in interfacing with your external business system, i.e. Oracle eBS, JDE, etc.
    We also added a link to this to bring up a modified Customers On Line form from Oracle eBS that gives us a view of the Quotes, Orders, Service Requests, Installed Base, Invoices and Credit Memos by customer party id number contained in eBS. This is what we call a 360 degree view of the customer.
    Neil @ Emerson Process

  • Service Team in Service Request

    Hi All,
      I need to find out Service team in service request.There is a field Service team.In this field with F4 help,those organisations are also coming which are not marked as Service Team.I only want those org which are assigned as Service Team.
    How this can be done through Customization?
    Thanks in advance.

    Hi,
    You might find this [thread|CRM AUTHORIZATIONS Position levelu00B4s; useful. Additionally, check the values maintained in the objects mentioned in that thread.
    Possibly the transaction value SRVR is missing in the PFCG role assigned to you via the business role.
    Hope it helps.
    BR.

  • Intent_driven Interaction: Sending E-Mail when the Service Request is saved

    Hi,
    I would like to send automatically an E-mail when the Service Request is saved. I created a new policy within context "Intent Driven Interaction" . I chose the IC event "OrderSaved" and the relevant Business Roles.  In my rule I chose the condition "If current Event equals  Order was saved"  and  the action "Send out going E-Mail Using Mail Form".  I created an interaction profile that is assigned to the Service Manager Profile "IDI Default".
    It does not work.  Any idea ? Is there a way to test this type of rule ?
    Thanks a lot !!!

    Thanks a lot for your fast response, unfortunately this is not what i was looking for.
    Kind regards
    Hannes
    If your question is solved, please mark as answered.
    Edited by: Hannes Wegehenkel on Sep 22, 2010 2:38 PM

  • Copying start and end dates from service request contract to tasks

    I am working on a logical apps program that is supposed to go to the service request screens and update the PLANNED_START_DATE and the PLANNED_END_DATE of a task for that service request on file JTF_TASKS_B with the start date and end date of the active contract associated with that service request and task. I think some of the contract information is available in OKS_PM_SCHEDULES_V, CS_SR_INCIDENTS_V, and CS_INCIDENTS. It may also be available in other files. I need to know of a contract file that can be used to link the contract to the corresponding task. I can't seem to find any files with task, contract number and service request all in one file.

    Glenda,
    You are right. All the three object you mentioned ( SR, Tasks and Contracts) are not referenced in a single file( or Table).
    You can use this relationship though to get this information.
    Tasks will be associated to a SR through source_ID and source_type. Source_ID will be the primary key, incident_id in CS_INCIDENTS_ALL_B table. This table incidentally also contains the contract_number and service_contract_id which gives the contract information.
    HTH,
    Gana

  • SCSM 2012 R2 - Activities have been completed but Service Request staying In Progress

    I have noticed that a number of service requests that are shwoing with the status as 'In Progress' have actually had all the related activities resolved.
    Once the activities are all closed the request should automatically go to Compelted, why is this not happening on some of my Service Request????
    tamrep

    There were in deed some needing attention under activity status changed, but no errors showing in the log.
    I re-ran them all and they succeeded so maybe this was it. Have you come across it before? I'll need to keep an eye on this.
    There wasn't anything requiring attention under Service request Status changed, which i was surprised with.
    tamrep

Maybe you are looking for