Shortcuts / Accesskeys for telephony-functions (e.g. Accept)?

Hi,
There are shortcuts available for the CRM 2007, but what about the telephony functions? Is there a way to define maybe ALTCTRLA for Accept, ALTCTRLE for End etc? Or do I hv to develop this by myself?
Thanks for input,
Benedikt

Hello Benedikt,
In addition to the freely definable keyboard shortcuts for navigation and cursor position, SAP also delivers pre-defined keyboard shortcuts for the specific Interaction Center functionality
IC Keyboard Shortcuts (to be used in conjunction with Esc key)
+ ready
1 accpet
2 reject
9 end
0 dialpad
3 hold
4 retrieve
... and so on.
Warm regards,
John
P.S. This topic is covered in Chapter 3 of my new book, [Maximizing Your SAP CRM Interaction Centerhttp://www.sappress.com/product.cfm?account=&product=H2958]

Similar Messages

  • Shortcuts for Telephony Toolbar Buttons in IC WebClient release 5.2 (2006s)

    Hi.
    Has anyone done Assigning hotkeys or shortcuts to Telephony Toolbar Buttons in IC WebClient release 5.2 (2006s)???
    This function was possible in the previous release until 5.0 (WinClient) as “Function Key Assignment”.
    And in CRM 5.2 we have a possibility to create shortcuts through “Personalize” User Interface, but not for Telephony Toolbar Buttons.
    Thanks in advance for any help.
    BR.

    Hello BR,
    The ability to use shortcut keys to access multi-channel toolbar buttons is available again with CRM 2007, but is unfortunately not available with CRM 2006s (CRM 5.1 and CRM 5.2). In CRM 2007 the Index page of the Interaction Center contains a linke called "IC Keyboard Shortcuts" that provide the following shortcut keys:
    Press ESC and Key
    All Channels
    + Ready
    - Not Ready
    1 Accept
    2 Reject
    9 End
    0 Dial Pad
    Phone
    3 Hold
    4 Retrieve
    5 Hang Up
    6 Transfer
    7 Consult
    8 Conference
    Chat
    3 Leave
    6 Transfer
    Press CTRL and Key
    U Agent Dashboard
    S Scratch Pad
    M More Alerts
    Regards,
    John
    Edited by: John Burton on May 9, 2008 1:53 PM

  • Trying to create a Histogram type/object for aggregate functions

    Hi,
    I am trying to create an aggregate function that will return a histogram
    type.
    It doesn't have to be an object that is returned, I don't mind returning
    a string but I would like to keep the associative array (or something
    else indexed by varchar2) as a static variable between iterations.
    I started out with the SecondMax example in
    http://www.csis.gvsu.edu/GeneralInfo/Oracle/appdev.920/a96595/dci11agg.htm#1004821
    But even seems that even a simpler aggregate function like one strCat
    below (which works) has problems because I get multiple permutations for
    every combination. The natural way to solve this would be to create an
    associative array as a static variable as part of the Histogram (see
    code below). However, apparently Oracle refuses to accept associate
    arrays in this context (PLS-00355 use of pl/sql table not allowed in
    this context).
    If there is no easy way to do the histogram quickly can we at least get
    something like strCat to work in a specific order with a "partition by
    ... order by clause"? It seems that even with "PARALLEL_ENABLE"
    commented out strCat still calls merge for function calls like:
    select hr,qtr, count(tzrwy) rwys,
    noam.strCat(cnt) rwycnt,
    noam.strCat(tzrwy) config,
    sum(cnt) cnt, min(minscore) minscore, max(maxscore) maxscore from
    ordrwys group by hr,qtr
    Not only does this create duplicate entries in the query result like
    "A,B,C" and "A,C,B" it seems that the order in rwycnt and config are not
    always the same so a user can not match the results based on their
    order.
    The difference between my functions and functions like sum and the
    secondMax demonstrated in the documentation is that secondMax does not
    care about the order in which it gets its arguments and does not need to
    maintain an ordered set in order to return the correct results. A good
    example of a built in oracle function that does care about all its
    arguments and probably has to maintain a similar data structure to the
    one I want is the PERCTILE_DISC function. If you can find the code for
    that function (or something like it) and forward a reference to me that
    in itself would be very helpful.
    Thanks,
    K.Dingle
    CREATE OR REPLACE type Histogram as object
    -- TYPE Hist10 IS TABLE OF pls_integer INDEX BY varchar2(10),
    -- retval hist10;
    -- retval number,
    retval noam.const.hist10,
    static function ODCIAggregateInitialize (sctx IN OUT Histogram)
    return number,
    member function ODCIAggregateIterate (self IN OUT Histogram,
    value IN varchar2) return number,
    member function ODCIAggregateTerminate (self IN Histogram,
    returnValue OUT varchar2,
    flags IN number) return number,
    member function ODCIAggregateMerge (self IN OUT Histogram,
    ctx2 IN Histogram) return number
    CREATE OR REPLACE type body Histogram is
    static function ODCIAggregateInitialize(sctx IN OUT Histogram) return
    number is
    begin
    sctx := const.Hist10();
    return ODCIConst.Success;
    end;
    member function ODCIAggregateIterate(self IN OUT Histogram, value IN
    varchar2)
    return number is
    begin
    if self.retval.exist(value)
    then self.retval(value):=self.retval(value)+1;
    else self.retval(value):=1;
    end if;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateTerminate(self IN Histogram,
    returnValue OUT varchar2,
    flags IN number)
    return number is
    begin
    returnValue := self.retval;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateMerge(self IN OUT Histogram,
    ctx2 IN Histogram) return number is
    begin
    i := ctx2.FIRST; -- get subscript of first element
    WHILE i IS NOT NULL LOOP
    if self.retval.exist(ctx2(i))
    then self.retval(i):=self.retval(i)+ctx2.retval(i);
    else self.retval(value):=ctx2.retval(i);
    end if;
    i := ctx2.NEXT(i); -- get subscript of next element
    END LOOP;
    return ODCIConst.Success;
    end;
    end;
    CREATE OR REPLACE type stringCat as object
    retval varchar2(16383), -- concat of all value to now varchar2, --
    highest value seen so far
    static function ODCIAggregateInitialize (sctx IN OUT stringCat)
    return number,
    member function ODCIAggregateIterate (self IN OUT stringCat,
    value IN varchar2) return number,
    member function ODCIAggregateTerminate (self IN stringCat,
    returnValue OUT varchar2,
    flags IN number) return number,
    member function ODCIAggregateMerge (self IN OUT stringCat,
    ctx2 IN stringCat) return number
    CREATE OR REPLACE type body stringCat is
    static function ODCIAggregateInitialize(sctx IN OUT stringCat) return
    number is
    begin
    sctx := stringCat('');
    return ODCIConst.Success;
    end;
    member function ODCIAggregateIterate(self IN OUT stringCat, value IN
    varchar2)
    return number is
    begin
    if self.retval is null
    then self.retval:=value;
    else self.retval:=self.retval || ',' || value;
    end if;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateTerminate(self IN stringCat,
    returnValue OUT varchar2,
    flags IN number)
    return number is
    begin
    returnValue := self.retval;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateMerge(self IN OUT stringCat,
    ctx2 IN stringCat) return number is
    begin
    self.retval := self.retval || ctx2.retval;
    return ODCIConst.Success;
    end;
    end;
    CREATE OR REPLACE FUNCTION StrCat (input varchar2) RETURN varchar2
    -- PARALLEL_ENABLE
    AGGREGATE USING StringCat;

    GraphicsConfiguration is an abstract class. You would need to subclass it. From the line of code you posted, it seems like you are going about things the wrong way. What are you trying to accomplish? Shouldn't this question be posted in the Swing or AWT forum?

  • Test web service for a function module

    Hello,
    I have created web service for a functiona module. I can see the same service in SE80 in Enterprise Services.
    How do I test this service?
    I can see the URL in WSDL tab but when I try to execute it give me following error,
    What has happened?
    URL http://emhbssap15.domain.local:8027/sap/bc/srt/wsdl/sdef_service_name/wsdl11/ws_policy/document call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system BDV with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:EMHBSSAP15_BDV_27-v:0-s:403-r:Forbidden
    HTTP 403 - Forbidden
    Your SAP Internet Communication Framework Team
    The URL I am trying is
    http://emhbssap15.domainname:8027/sap/bc/srt/wsdl/sdef_servicename/wsdl11/ws_policy/document?sap-client=400
    Can anyone help me?
    Regards,,,
    Sunil Joyous
    Edited by: Sunil Joyous on Dec 2, 2009 1:52 PM

    Thanks Venu for your input.
    Unfortunetly we do not have Java stack on our development system. You said we can test it by SOAP UI tool. Where do I see the WSDL file for the service?
    I used WSDL from SE80 --> Service --> WSDL tab, but SOAP UI does not accept this format ?
    What are the other ways I can test this web service? I think about SAP PI, importing RFC & creating web service or creating ABAP proxies... Which is the best way to go forward in case you do not have Java stck.
    Regards,,,
    Sunil Joyous

  • How to set Shortcut keys for button in Apex

    Hi
    Could anyone help me on how to set shortcut keys for buttons in Apex.
    I need to use say ALT + S to submit the page.
    The following thread pertaining to HTML DB refered to use ACCESS key. but that couldnt work in my case.
    Re: operation of the app. with the keyboard
    Any pointers on achieving this would be helpful.
    Thanks
    Vijay

    Hi Vijay,
    I’m afraid you must do it using javascript key listener. You can’t use action() on template based buttons because they are actually not HTML buttons but images with hyperlink.
    Key listener checks which key has been pressed down and invoke some JS function. For example, write this code in page header:
    <script>
    document.onkeydown=keyCheck;
    function keyCheck(e){
         var KeyId = (window.event) ? event.keyCode : e.keyCode;
         switch(KeyId){         
              case 113:
                   doSubmit('SAVE');
                   break;                    
              case 118:
                   alert('Hello');
                   break;
    </script>
    This script will submit page with request 'SAVE' if you press F2 or will show alert message if you press F7. Modify it to your issue.
    Regards,
    Przemek

  • Shortcut Method for Replace Pages dialog box

    What is the keyboard shortcut method for bringing up the Replaces Pages dialog box.  I use Replace Pages function a lot in preparing PDF documents and need a faster method than using Mouse on Tools right sidebar.  I note that shortcut key for inserting pages is Cntrl-Shift-I   --  what is shortcut for Replace Pages.  In previous Acrobat 9, I could use  alt-DNR, which brought up Replaces Pages dialog box via the menu, but there no longer is a Document item in the menu bar -- it has been removed.  Please, this is VERY important to me.  Any help will be greatly appreciated.

    Thank you for your quick reply.  You have confirmed my worst fear.  But anyway -- going forward .....  in your opinion, what is the best way to get information to Adobe on ideas for improvement so that future version or maybe even an update for this version could have something like what I need, that is, shortcut key for Replace Pages -- or ability to access customized quick tools via keyboard, etc.  Is there someone keeping a list of these things that I can write to?  Thanks again.  (And don't worry, I won't extend this discussion past your hoped-for reply.)

  • Robohelp Shortcut keys for styles

    RH8 HTML
    Just wondering if theres a way to set shortcut keys for styles, similar to how you can do it in MS Word.
    Just makes formatting etc so much faster, instead of having to use the mouse and click around.
    I see I can set shortcuts to do other RH functions, like create new topics etc....but nothing for text formatting.
    Thanks, Nick.

    Hi Nick
    RoboHelp has always offered the following:
    Ctrl+Alt+1 Applies Heading 1
    Ctrl+Alt+2 Applies Heading 2
    Ctrl+Alt+3 Applies Heading 3
    Ctrl+Shift+N Applies Normal
    Aside from that, perhaps use something like Macro Express to create a macro you could use.
    http://www.macros.com
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Non numeric keyboard - I need the shortcut keys for Google Earth

    I need the shortcut keys for Google Earth - like Page Up, Page Down etc, but the new Apple wireless keyboard hasn't got the numeric keypad.
    Are there alternative shortcut keys for Page Up/Down? Or can I programme any of the Function keys to do that instead?

    You can create custom shortcuts pretty easily. Here is an article that explains how to do it:
    http://www.handpickedsoftware.com/tiger-tip-creating-custom-keyboard-shortcuts

  • Error "No address found for partner function type 0025 "

    Hi,
    Could anybody suggest me the issue as in below?
    When I would like to change a PO through process PO (in SRM) I have received an error as "No address found for partner function type 0025". But the business partner looks fine in case of address matter. Only the things are missing are
    PO Box address
    PO Box
    Postal code
    Company postal co
    Thanks,
    Pijush

    Hi Pijush,
    I have seen this error many times, the user was probably deleted from the SRM system and so no subsequent actions can be taken on open documents linked to this user.
    The SRM system behaves like this
    In Standalone scenario:
    SRM system is standalone system not connected with HR system
    If we try to delete the user locally the system will check is there any
    open documents if any open document exists
    then the system won't allow to delete the
    users which inturn won't delete the associated business partner
    relationship.
    So the user as well as the business partner relationship (BUT050 ,
    BUT052) won't be deleted.
    SRM with HR Replication scenario:
    All the users are maintained in HR system and the HR system is the
    leading system.
    If the employee leaves the organisation, from HR side the requirement is
    that the user has to
    be deleted immediately. So here we can't check whether the user has open
    documents in child system (i.e, SRM system), even if
    we check and block the deletion of user in HR,  from HR side this is not
    acceptable from HR the user should be removed immediately. If the user
    is deleted or delimited in HR side when the user is replicated to SRM
    system the BP relationship will be deleted this is the reason that the
    open documents could not be processed.
    So the please follow either of these options,
    1. Before deleting a user from HR make sure that all the open documents
    are completed or assigned to some other
    active requestor / recipient.
    2.  All the open documents associated to the deleted business partner or
    user should be archived.
    3.  If the user is deleted in HR before closing the documents and still
    want to access the open documents of the deleted user / Business Partner
    they can use the Z Report which will replace the deleted Business
    Partner with active business partner.
    I have attached the report Z_change_pguid_002_new.txt please use
    this report to replace the deleted Business partner with the active
    business partner.
    Hope this helps,
    Kind Regards,
    Matthew

  • Disable shortcut keys for Universal Access

    At our school we have a bit of an issue with students using keyboard shortcuts to set the Universal Access options (usually to Black on White, but also Zoom and VoiceOver), which freaks out the next student using the computer. I'd like to disable the shortcut keys for those settings. Are there ARD Unix commands that would do it?

    Hello Francois,
    Thank you for your fast reply!
    I tried your recommendation, but got the following result:
    When I have a label of "& OK" with the blank symbol as ALT-255, the Button in the Alert Box still has the focus. It seems as if there now is a blank in front of the OK (which is underlined). This does not really solve my issue, because the Button still has the focus and that should not be. The best solution for the user would be if he only could accept the message with a mouse klick.
    Is there an other suggestion?
    Thank you so much!

  • Shortcut keys for FCP on small bluetooth keybord?

    Does any one know of a reference on-line for FCP shortcut keys when using the small wireless keyboard?
    In particular, what sequence do you use for the Home and End keys when you don't have them on your keyboard?
    Thanks

    You can re-program your keyboard for system functions when you click on the apple at top right, and select preferences. To reprogram the keyboard for application functions, click 'preferences' in the specific application.

  • SAP BCM Telephony functionality

    Hi All,
    I am new to SAP BCM and wanted to get more practical knowhow . I have gone through various documents and have few questions .
    1. When we say BCM is VOIP enabled what exactly does this mean and what type of communication devices can be used by the customers in BCM scenario and how those are handled ?
    2. What is the flow of process in case of outbound telephone call scenario ?
    3. When we integrate SAP BCM with SAP CRM Webclient , then which toolbar appears ? Do we see tololbar created in CRM as well as softphone from SAPBCM ?
    could someone please share real time document prepared during the implementation that will be really helpful or if there are already lins available which give the detailed knowledge woul dbe really very helpfull.
    Thanks
    Sonia

    Hi Sonia,
    Some answers for your questions below:
    1. VoIP-enabled means that BCM is a complete solution for contact center and besides CTI features, SAP BCM also handles all voice traffic in the contact center (telecom product category is IPCC, IP Contact Center). To implement SAP BCM you need some 3rd party devices known as VoIP Gateways (to connect with PSTN) and VoIP Terminals if you don't want to use the SAP BCM softphone called CDT (Communication Desktop). The softphone CDT is the better feature and cost option.
    2. You have some options for outbound scenarios, e.g.. use the CRM Call List functionality or use the built-in BCM preview dialer.
    3. Both BCM and CRM should be running in the workstation, and you can control telephony functions from CRM or BCM.
    For a VoIP technology overview you can check my SDN Article:
    [SAP BCM AND VOIP TECHNOLOGY u2013 A TECHNICAL OVERVIEW|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/30b8eca4-e42d-2d10-668a-fecca15cfbe9]
    For installation procedure check the BCM documentation available in service.sap.com:
    [SAP BCM - Example Installation|https://websmp208.sap-ag.de/~sapdownload/011000358700000138292009E/6SP8_Example_installation.pdf]
    Regards,
    Heber Olivar

  • Help - Class name and descriptions for a function location.

    Hi Guys
    i have to write a report that displays the class and class descriptions for a function location. the user passes in either the function location(TPLNR) or the class name and  the report should display the the class characteristics and resp. values. Is there a FM that i coud use?
    please help.
    many thanks.
    seelan.

    sadiepu1 wrote:
    When I set up Words with Friends on my Fire it asked for my username and password which from a previous reply to my inquiry above stated that the S 3 doesn't store due to privacy issues. I have tried all my usual combinations of usernames and passwords and my Fire won't let me access the game as it keeps telling me that one or the other is not correct. I have deleted the app from my Fire and re-downloaded it but have the same error comes up. I have accessed the Words with Friends support both on my phone and their website but there is no live chat. I might have to take both to a Verizon store. Also, my Fire won't let me access the game without a correct username and password. To say that I am frustrated would be an understatement as well I have tried everything I can think of with no luck! Thanks for any help you can give!
    Did you use facebook to log in? 
    Verizon will not be able to help you retrieve any of the information you need.  You will have to contact Zynga.

  • Performance issue for this function-module(HR_TIM_REPORT_ABSENCE_DATA)

    Hi Friends
    I am having performance issue for this function-module(HR_TIM_REPORT_ABSENCE_DATA) and one my client got over 8 thousend employees . This function-module taking forever to read the data. is there any other function-module to read the absences data IT2001 .
    I did use like this .if i take out this F.M 'HR_TIM_REPORT_ABSENCE_DATA_INI' its not working other Function-module.please Suggest me .
    call function 'HR_TIM_REPORT_ABSENCE_DATA_INI'
    exporting "Publishing to global memory
    option_string = option_s "string of sel org fields
    trig_string = trig_s "string of req data
    alemp_flag = sw_alemp "all employee req
    infot_flag = space "split per IT neccessary
    sel_modus = sw_apa
    importing
    org_num = fdpos_lines "number of sel org fields
    tables
    fieldtab = fdtab "all org fields
    field_sel = fieldnametab_m. "sel org fields
    To Read all infotypes from Absences type.
    RP_READ_ALL_TIME_ITY PN-BEGDA PN-ENDDA.
    central function unit to provide internal tables: abse orgs empl
    call function 'HR_TIM_REPORT_ABSENCE_DATA'
    exporting
    pernr = pernr-pernr
    begda = pn-begda
    endda = pn-endda
    IMPORTING
    SUBRC = SUBRC_RTA
    tables
    absences = absences_01
    org_fields = orgs
    emp_fields = empl
    REFTAB =
    APLTAB =
    awart_sel_p = awart_s[]
    awart_sel_a = awart_s[]
    abstp_sel = abstp_s[]
    i0000 = p0000
    i0001 = p0001
    i0002 = p0002
    i0007 = p0007
    i2001 = p2001
    i2002 = p2002
    i2003 = p2003.
    Thanks & Regards
    Reddy

    guessing will not help you much, check with SE30 to get a better insight
    SE30
    The ABAP Runtime Trace (SE30) -  Quick and Easy
    what is the total time, what are the Top 10 in the hitlist.
    Siegfried

  • How to check for a function module with its description and functionality

    Hi all,
    How to check for a function module,with its description and its functionality,in detail how can I know the purpose of a particular function module,how to search for a function module which suits my requirement .

    Hi,
    You can search a FM of your requirement by putting in the Key words and searching for a FM. Like * KEYWORD * and then pressing F4.
    Say for example you need to search something regarding converstion.
    Search for * CONVERT * and press F4.
    If there is something specfic like converting date to something you can give
    DATE * CONVERT *
    OR
    CONVERT * DATE *  and press F4.
    Once you narrow down your search you will have a Function module documentation inside the Function module. Please note that all the FMs willl not have documentation.
    Regards,
    Pramod

Maybe you are looking for

  • Problems in Windows 8 creating PDF documents using Adobe Acrobat Pro 9.5.5

    I am running Windows 8 with the latest version of MS Office (version 14) and Adobe Acrobat Pro 9.5.5.  I was not having any problems making/printing PDF documents until about 30 days ago.  The only things that I can think of that have changed during

  • How do i stop my i phone 4s deleting my contacts when i set up e-mail?

    Hi, I have recently upgraded to the i phone 4S.  I have restored from my back up on my Macbook.  When I put in all my details to set up my e-mail exchange account all the contacts are deleted.  I have tried a few times and ensured that the box's next

  • How to disable tooltips?

    I'm using Acrobat reader 9.0 on linux.  When I move the mouse over a document tab, a tooltip appears with the name of the document.  This is annoying.  How do I prevent this tooltip from appearing? The tooltip appears after a short delay, wherever th

  • Error inserting document

    Hi, I have the following error when you insert any document in Content Server IdcServer-1980     !csUserEventMessage,monitor,pre.contenidos.icex.es!$ intradoc.common.ServiceException: !csUnableToExecMethod,doCodeEx services/3     07.02 17:45:29.970  

  • Help with .flv files

    Hello, I have some .FLV files that I need to convert for a DVD. I would like to go straight to mpeg2 but all the things I have tried have not worked. I may be away from the computer until tuesday so I will respond then. Is there a way to play these f