IC WinClient 5.0 - Case ownership issue

Hello,
We have an issue where we need to do the following:
If an agent answers an email, if the customer responds to that email, then this response should be automatically assigned to the original agent.
I was thinking that we might be able to use the case number and place it on the email somewhere, so that crm could reference the last person responsible for the case and then assign the email to them.
Iu2019m not sure how we would do this. Any help/suggestions?
Thank you,
Mohit

Hello Mohit,
Yes, as I mentioned above in my first response, these two default actions will route the customer's response email to whichever agent is currently assigned to the ticket or case (where the ticket or case tracking ID was inserted by the agent or system into a reply email that was sent in response to a customer's original email). In addition the customer's response email will be linked/threaded to the existing email thread of all emails linked to the ticket or case. But if you really want the email to be routed to the agent who first responded to the initial customer email (rather than to the agent who currently owns the case to which all the emails are linked) then you would need to copy the standard action and modify it. However, my recommendation would be to modify your business processes to take advantage of the SAP recommneded best practice and default action -- unless you really have a unique business process where it makes sense to send the customer's email back to whoeve first responded rather than to whoever is working on the issue now.
Best regards,
John

Similar Messages

  • Case Sensitivity Issue with Latin Characters

    Hi,
    The Latin Character that i am talking abt is "i",
    I am trying to provide in my application the support for Azeri-Latin(Turkish family) Characters,
    That is the display and the orientation of characters is perfectly fine throughout the flow of application.
    But now there is a problem when selecting a data from DB using like constraint in where clause... The issue has been elaborated below...
    From the set of characters there are two character in which i am facing Case Sensitivity issue...
    They are as,
    i ---> the capital of same is ---> İ
    ı ---> the capital of same is ---> I
    now in english character mapping,
    for i ---> the capital is ---> I
    So, this is creating an issue...
    Now the test i have done is as follows,
    I created a table as,
    Create Table CS
    CS1 VARCHAR2(20)
    Following is the data that is inserted in the table,
    Insert into CS values('İ');
    Insert into CS values('i');
    Insert into CS values('I');
    Insert into CS values('ı');
    now i am running the following query,
    Select * from CS where lower(CS1) like lower('%&a%');
    for characters "i","İ","I" it returns 3 rows, that are,
    i
    İ
    I
    and for character ı it only returns,
    ı
    ideally for characters "i" & "İ" should be mapped with each other and "ı" & "I" should be mapped with each other respectively.
    But that is not the case.
    I am using Oracle 10g
    my NLS_database_parameters are as follows,
    PARAMETER     VALUE
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     AL32UTF8
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_RDBMS_VERSION     10.2.0.1.0
    and at client i m using,
    NLS_LANG = .AL32UTF8
    any help on this issue will be appreciated,
    Thanks & Regards,
    Pratik

    I'm not fully understand your question but I guess you may need to set up NLS_LANGUAGE, NLS_TERRITORY db parameters and client NLS_LANG.
    eg client NLS_LANG=TURKISH_AZERBAIJAN.AL32UTF8 and db parameters NLS_LANGUAGE=TURKISH, NLS_TERRITORY=AZERBAIJAN
    Full list of supported languages, locales see [Oracle® Database Globalization Support Guide local data subpage|http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/applocaledata.htm]
    or tip2: check this: ALTER SESSION SET NLS_COMP=LINGUISTIC;
    Edited by: Kecskemethy on Mar 24, 2009 3:14 AM
    or you need something like this:
    Example 5-16 Matching with the Base Letter Operator [==]
    Expression: r[[=e=]]sum[[=e=]]
    Matches:
    resume<<
    résumé<<
    résume<<
    resumé<<Oracle SQL syntax: SQL> SELECT col FROM test WHERE REGEXP_LIKE(col,'r[[=e=]]sum[[=e=]]');Edited by: Kecskemethy on Mar 24, 2009 3:20 AM

  • Jewel Case printing issues on i-tunes 11

    Why won't i-tunes 11 prind a cd jewel case insert properly on my HP 4500 deskjet. Every other edition did. it prints the title of the playlist then jumbles all of the song titles on top of one another. Orint preview looks correct, A songlist NOT the size of a jewwl case insert prints the way it is supposed to. quite annoying.

    A huge shout out needs to go to Apple senior advisor John Altamirano. After I sent him some system diagnostics and i-tunes info which he forwarded to Apple engineers the jewel case printing issue for windows users has been resolved with the i-tunes 11.0.1 update that was released today, Thank you John.

  • Case sensitive issue CF7 & SQL 2005

    I had to rebuild a database from a backup recently. Now I am having a case sensitive issue in my queries that I did not have before.
    The following use to work with Rockmart in lowercase even though Rockmart was in the table as all uppercase like so ROCKMART.
    <cfquery name="updateAreas" datasource="mySource">
       UPDATE Property
       SET AR = 3610
       WHERE  City = 'Rockmart'
    </cfquery>
    The above has stopped working now the query must specify ROCKMART because it is in the table in all upper case.
    My database option is set to SQL_Latin1_General_CP1_CI_AS
    Any ideas.
    Many thanks for you help.
    Brian

    A collation can be specified at the server, database, and column level in SQL server.  The column collation will take precedence over the database collation.  Check that the collation for the column is case-insensitive.  You can use the query below to get the column's collation.
    SELECT COLUMN_NAME, COLLATION_NAME
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_NAME = 'Property'
        AND COLUMN_NAME = 'City'
    You can get info on the collations supported by SQL Server at:
    http://msdn.microsoft.com/en-us/library/ms144250%28SQL.90%29.aspx
    You can change a column's collation if you need to, but you should be sure that this will not affect any other applications which query the same data.  Another option is to specify the desired collation in your query as suggested by glynjackson.
    http://msdn.microsoft.com/en-us/library/ms190920%28SQL.90%29.aspx

  • Send an alert in case of issues

    Hi All,
    Is there a tool that can monitor the Essbase agent and send an alert in case of issues or essbase unresponsive or essbase hang or crash
    Which is the best way to monitor the essbase agent?
    Regards,
    Mink

    In the past I have used a simple app that uses the api to log in then log out of essbase. This was then wrapped up in a batch file, or shell script. If the app returned with anything other than a success retrun code it would send a page to the admins.
    I guess you could do the same with a maxl script, write out to a log and parse for errors.

  • External drive and IGNORE OWNERSHIP issue

    So here at work we share an external drive where we ALL share the files. And a good bit of the time one of us tries to open or save a file and it saws one of several things like "access denied" or "you don't have the right privileges and you will not be able to save changes" Anyway if I go in and get info on the external drive and click the "ignore ownerships" box all seems to be well...for a while. BUT the drive will sporadically decide to UNCHECK that button. It's very annoying. Any FIX for this issues.
    Oh, I also have it "locked" which I assume means it can't be changed but that is not the case. Any help is appreciated Thanks.

    Sorry, I don't know anything about Silverlining -- I'm a moderator at the Bombich (CCC) forums. If Silverlining allows for attaching a post-cloning script ask the Silverlining developer/distributor. If not, ask for help (even though the script will be pretty simple you may well need some troubleshooting until it works perfectly) in one of the scripting forums (AppleScript or Unix), e.g. this one.
    Andreas

  • Oracle 11g Case Insensitive Issue

    Hi,
    For our .net framework 4.0 Application we need case insenstive search. So I have tried setting NLS_COMP=LINGUISTIC & NLS_SORT=BINARY_CI in environmental variable.. But this is not working. But when I tried firing trigger on each logon and setting NLS_COMP for each session.. It is working.. But because of performance reason we don't want to fire on trigger for each database logon.
    Pls Let me know why it is not working setting environmental variable. We are using Oracle 11g client and 10g server and connecting from our .net application through ODP.NET.
    Regards,
    Raghu

    Do you see the same behavior when connecting via SQLPlus after setting the environment variables? Is this an ODP.NET specific issue? If it's not specific to ODP, you'll probably get better insight by posting in one of the generic database forums.
    With respect to ODP specific solutions, have you already checked out the OracleGlobalization class?
    http://docs.oracle.com/cd/B19306_01/win.102/b14307/OracleGlobalizationClass.htm#i1009565
    Hope it helps,
    Greg

  • Column header sort - case sensitivity issue

    Hi guys,
    I'm having an issue with the built in column sorting when you click the headers on a report. Basically case sensitivity is taken into account and capital letters get sorted before smaller case letters, for example:
    Cats
    Dogs
    Zebra
    ants
    bears
    How would I be able to fix this built in sort?
    Thanks,
    Luis

    Luis,
    See if Denes's solution helps: Report sort by column header question .
    Scott

  • User Password case sensitivity issue.

    Hi,
    I have been migrated users from EBS to OID, but having some issues like some existing users password in EBS are in Capital letters but when they connect with SSO the same password not accepted, but users can connect same password in small letters.
    How I can solve this issue????????
    Senario:
    1: Existing EBS User:(Before integration of OID+SSO), users are directly connecting with EBS.
    User Name: HINA.SARWAR-----------(Not case sensitive)
    Password: ABCDEF -----------( Case sensitive)
    2: Existing EBS User:(After integration of OID+SSO), user are connecting via SSO.
    Eexpected behavior is that users should logon with above pass "ABCDEF", but they cannot.
    eg:-
    Cannot connect as:
    User Name: HINA.SARWAR -----------(Not case sensitive)
    Password: ABCDEF -----------( Case sensitive)
    Can connect as:
    User Name: HINA.SARWAR -----------(Not case sensitive)
    Password: abcdef -----------( Case sensitive)
    thx

    Hi,
    The solution to your problem is here at metalink:
    Password Case Sensitivity Lost During Extract And Import From EBS to OID [ID 951170.1]
    regards

  • OS level Ownership issue..

    Hi,
    We have changed ownership of oracle directories and files from dba to a_dba group and user is oracle. We are able to startup the database and everything is normal. Issue is only with sys account login... When we are trying to connect / as sysdba at that time it's throwing " Insufficient Privilege" error. But at the same time we are able to login as an "sys as sysdba" with proper password.. everything is in proper place.. we are using password file. Is any step I am missing changing ownership group...?

    If you changed your dba group name, you need to modify $ORACLE_HOME/rdbms/lib/config.s and relink your Oracle executables.
    UNIX: Checklist for Resolving Connect AS SYSDBA Issues
    Doc ID: Note:69642.1

  • Case sensitivity issue with hostname and sessions

    I'm running into a strange issue with mixed cases and my webservice.
    I have a JAX-WS service running at my host http://sumac.us.oracle.com/interlace/services/AdminService. When I connect my JAX-WS client to this, using the same URL, I have no problems and the session management code seems to work.
    However, if I set my JAX-WS client to connect to http://SUMAC.us.oracle.com/interlace/services/AdminService, the session management doesn't work any more. It seems that the client does not send the JSessionID cookie back to the server.
    I did notice that my webservice sends the following Set-Cookie header and the host that is sent in the original request is SUMAC.us.oracle.com
    Set-Cookie: JSESSIONID=vWjmMJwJXVLf2LBwYN82rxpqbwyKPP4SpD8kd7zLYVkLDJG2Bnnp!-234350174; path=/interlace; HttpOnly
    I'm wondering if anyone has run into this. I'm just using the standard JAX-WS client which is generated from a WSDL file. Let me know if this is sufficient information and I'll add more if necessary.
    Thanks,
    Anil

    I tracked this down and the issue has to do with the CookieJar class used to store the cookie information. It seems that this has already been patched in the JAX-WS 2.2.x line, but I believe that JDK 1.6 u21 uses a version of the 2.1.x branch.
    The JAX-WS issue number is 834.

  • Neo2 Standby (S3) & CAS latency issue

    I've seen this problem reported with some ASUS boards (and fixed by a BIOS update) but I get it with a Neo2.  With a stable stock system to start with, after resuming from a S3 (suspend to RAM) standby:
    - CAS 2.0: unstable - Prime95 errors immediately and random BSOD within a minute or so.
    - CAS 2.5: stable
    e.g. after resuming, 2.5-2-5-2-1T is 100% stable but 2-4-10-4-1T is not.
    I've also noticed that temperatures reported drop by 4 degrees or so after resuming but this is a separate issue.
    Anybody else seen this and do any specific BIOS versions help?  I'd like to be able to run my expensive RAM at CAS 2 - though I have heard (correct?) that CAS makes minimal difference with an A64.

    There has been numerous issues with overclocked system and STR
    with several motherboards .
    Seemsthat there is a flaw in the nforce3 250 chipset.
    Obvious solution is not to use S3 .
    http://www.xtremesystems.org/forums/printindex.php?t=41798

  • WRT54G and Vantec NexStar LX HD case compatability issue

    Hi,
    I bought 2 of the Vantec NexStar LX (NexStar) HD cases and 2 Seagate 500ATA HDs.  One for my home and one for work.  At home, using a D-Link router.  At work, I have the WRT54G (V8) updated the latest firmware last week.  I am hooking up both units (home and work) through wired LAN.
    The problem is the NexStar at work doesn't work very well.  After the HD sleeps (say 10min that is set in the NexStar), the router kicks it out of the network and I have to turn the NexStar off/on to have it back up.  Everything else work very well in the network including a Xerox network printer, 4 desktops (2 wired, 2 wireless).
    The way I figured to work around this is to disable the "sleep time" so the the HD never stops spinning.  This is obviously a temporary solution.
    The one that I'm using at home with a D-Link router works perfectly fine.  I've switched both the NexStar units between home and work and it is still the same.  So, a bad unit is out of the question.
    To me, this is clearly a LinkSys problem.
    Anyone can point me to a solution would be greatly appreciated.
    Thanks in advance.
    Tim

    Thanks for the suggestions. Even with the default sound driver, I still experience the problem. I contacted MSI and they think it may be a hardware issue. That was the only thing they said. I have my doubts, however. If it was a hardware problem then why don't I have any audio problems when playing music or watching videos?
    Anyone have any other ideas? I really don't want to send the computer away, going through that effort and then to find out that it wasn't a hardware problem after all

  • Dealing with Table Ownership Issues

    I'm trying to migrate our database from SS7 to O9i; however, all of the tables in the SS7 database are owned by "dbo", which seems to translate as "null" in the OMWB, and when the OMWB tries to create a table in the new model with an ownership of "null", it throws an exception.
    Is there a way of configuring the OMWB so that it can create tables as a particular user when it encounters "dbo" in the SS7 database? This would be better for us than trying to reassign ownership in all of our SS7 tables.

    Hi richard,
    See my answer in your another issue:
    Error message while migrating SS7 to O9i
    I hope it helps you
    Mireille

  • Ownership issues on a 10.4.7 network volume

    I am having an issue with ownership on certain files stored on our file server.
    The artworkers all copy files (Quark, Illustrator, Photoshop and InDesign) to their desktop before working, as quite often they are graphically heavy and we recommend they work local saving updates to the server through the day to avoid potential crashes. Now, the problem is that once a file has been worked on locally, it changes the ownership to that of the person who was working on that file, and consequently can cause an issue if someone else comes to work on the job.
    Is there any way that I can make sure that all files uploaded to the server instantly inherit the permissions of their parent folders, so as to avoid issues with ownership? The only soultion I can come up with is generic log ins, which is not suitable for this particular environment.
    XServe running 10.4.7. with Apple RAID serving as file storgae.

    If ACLs are enabled on the volume, the posix inherit option will be greyed out.
    If you are not using ACLs (you would know if you were), then you could turn ACLs off and the option to inherit will be available.
    To turn ACLs off:
    In WorkGroupManager, click Sharing.
    Click the 'All' tab, then scroll the box below it all the way to the left.
    You should now see your volumes (hard drives).
    Select the volume where the share points are, and in the General section you'll see a checkbox to enable/disable ACLs.
    Jeff

Maybe you are looking for