Capture caller input to be displayed in CAD

I have an IVR that I built on UCCX 9.x that is an account inquiry script (i.e. look up balance, last payment date, next payment due..etc..).  The agents would like the account number that the caller inputs to be placed on CAD should the customer wind up with an agent.  I know that it can be done, and I should look it up but I really don't have time.  I'm sure it is simple so I thought I would ask here.
Thanks in advance..

Actually they do already enter their account number in the IVR script, I just needed that number to show up on the CAD should the user zero out.  What I did was use the "Set Enterprise Call Info" step to map that account number variable to an enterprise variable in CAD that I called Account Number and bingo the number showed up on CAD.
So it looks like I have it doing what I want it to do, thanks for the reply.

Similar Messages

  • Capture keyboard input

    I have a swing app that will run on a touch screen. There will be no keyboard. I will have a magnetic card reader plugged into the ps/2 port.
    Basically I need to capture the output of the magnetic card reader. At the moment when a card is swiped it goes in the first JTextfield.
    Now I can capture the output outside of swing by using
    BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
    String data = stdin.readLine();
    System.out.println(m_data);
    However this does not work inside of swing or at least my swing app.
    So in swing, how can I capture or redirect text input?
    I guess I could write a fuction that appends a character each time a key event occurs like KeyTyped. However I am not sure that is the most efficient way to go about it.

    A document listner might work, however I think that url you posted also shows a way using an action listner.
    Something I forgot to mention was, when I swipe the card I do not want the card's data placed in a JTextField.
    To the point when a card is swiped I want the data in a string.
    At the moment when I swipe a card it goes into a JTextfield. I do not want that to be the case. Sure I can make a way around it with a hidden text field or something, and use a listner for events on the text field.
    However I do not think that is the proper way to go about this.
    So I am looking for an event that will be fired or take place as soon as there is input from the keyboard/card reader. I do not want a JTextField to even have the chance to grab and display that data. I want to know first, and take that data and do something else with it.
    In detail, when a card is swipped, the data will be parsed and JTextFields will display the parsed information. However I need to be the first one receiving the data, not any of the JTextFields in my app.
    The app does not require use of a keyboard. If possible I would like the app to not work at all with a keyboard, and any input from a keyboard or card reader is calling my own code to deal with those events.
    So if someone does plug in a keyboard, I do not want them to be able to do anything. That's not a must, but if I can accomplish it with the above I will be a happy camper.
    In short I need to capture all input from the ps/2 port, and be notified with input starts and ends. Or at least when it ends.
    Any suggestions are greatly appreciated.

  • Owb - Capturing user input classes

    Hi,
    I'm using OWB 9.2.0.3 and I'm looking at creating some OMB*Plus scripts to deploy (instead of using the GUI)
    I noticed in the sample code (on OTN) for OWB, some classes for "capturing user inputs" in OMB*Plus. I think that this would be a great addition to my scripts (instead of hard coding userid and password).
    How do I get this to work? What do I do with these classes? where to put them? and would you have any documentation on how to code this in OMB*Plus.
    Thank you very much.
    Guy LaBelle

    Guy,
    The description is missing... and I will submit this right away to be added. The link will be with the location of the downloadable file. Will be there within the next couple of days.
    Now, without the screenshots (hope this helps to some extend):
    The omb_params zip file contains classes for a generic modal dialog that can be used from OMBPlus for capturing user input. It will support parameters that are text or passwords. If you unzip this file into owb\bin\admin you can try the dialog from OMBPlus.
    The Java can be invoked by calling as follows;
    # java::new oracle.owb.samples.CaptureParams {
    # display_string_list display string for dialog ie. {"Hostname", "Port", "Service"}
    # param_name_list to query after dialog is complete ie. {"vhostname", "vport", "vservice"}
    # param_type_list STRING or STRINGHIDE or list of tokens (comma separated) for combo box
    # title_string_for_dialog Title for the dialog.
    # dialog_prompt_string Prompt string for dialog.
    or
    # java::new oracle.owb.samples.CaptureParams {
    # display_string_list display string for dialog
    # param_name_list to query after dialog is complete
    # param_type_list STRING or STRINGHIDE or list of tokens (comma separated) for combo box
    # title_string_for_dialog
    # dialog_prompt_string
    # ok_button_string
    # cancel_button_string
    or
    # java::new oracle.owb.samples.CaptureParams
    # title_string_for_dialog
    # dialog_prompt_string
    # ok_button_string
    # cancel_button_string
    There is a Java accessor methiod named 'okButton' that will return a boolean (in Java), the Tcl shell will return 0 for false, and 1 for true. This can be used to determine if the user has pressed the OK or cancel button. Since the user can define the text for these buttons, they can be used for Yes/No style questions for example.
    5.1 Example to capture user input;
    The following dialog can be created with the Tcl below;
    The Tcl to create this dialog is show below, this creates a modal dialog to capture the user input for username, password (in password field), connection string and an option selectable from a combo box;
    set pars [java::new {String[][]} 3 {{"User" "Password" "Connect" "Option"} {"user" "pass" "connect" "option"} {"STRING"
    "STRINGHIDE" "STRING" "thick,thin"}} ]
    set jtitle "OWB Migration"
    set jprompt "Please enter migration properties:"
    set paramList [java::new oracle.owb.samples.CaptureParams $pars $jtitle $jprompt]
    # To check whether OK or cancel is pressed used retrieve okButton/cancelButton on object, then check value (0 - false, 1 - true)
    set okpressed [$paramList okButton]
    # To retrieve the parameters invoke getValue passing the parameter name, the user is stord in a variable (for example);
    set userval [$paramList getValue "user"]
    set passval [$paramList getValue "pass"]
    set connectval [$paramList getValue "connect"]
    set optionval [$paramList getValue "option"]
    5.2 Example to create a question-style dialog;
    set paramList [java::new oracle.owb.samples.CaptureParams "OWB Dimensional Design" "Do you want to create a cube?" "Yes" "No"]
    Like the example above the 'okButton'/'cancelButton' methods can be used to query the button that was selected.
    Thanks,
    Mark.

  • Question create a batch input session in display mode

    Hi, i have a batch input, with this three functions
    CALL FUNCTION 'BDC_OPEN_GROUP'
      CALL FUNCTION 'BDC_INSERT'
    CALL FUNCTION 'BDC_CLOSE_GROUP'
    when i execute the program, i need to see the batch input session in display mode. I need to see all the screens.
    I try with
    DATA: PARAMETROS LIKE CTU_PARAMS.
    PARAMETROS-DISMODE = 'A'.
      CALL FUNCTION 'BDC_INSERT'
       EXPORTING
         TCODE                  = 'ME51'
        POST_LOCAL             = NOVBLOCAL
        PRINTING               = NOPRINT
        SIMUBATCH              = 'A'
         CTUPARAMS               = PARAMETROS
        TABLES
          dynprotab              = i_bdcdata
      EXCEPTIONS
        INTERNAL_ERROR         = 1
        NOT_OPEN               = 2
        QUEUE_ERROR            = 3
        TCODE_INVALID          = 4
        PRINTING_INVALID       = 5
        POSTING_INVALID        = 6
        OTHERS                 = 7
    But i can´t see the screens.
    Help me, please
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Apr 10, 2008 12:46 PM

    hi
        For a BDC upload you need to write a program which created BDC sessions.
    <u>Steps</u>:
    1. Work out the transaction you would use to create the data manually.
    2. Use transaction SHDB to record the creation of one material master data.
        Click the New recording button or the Menu - Recording - Create
    3. Save the recording, and then go back a screen 
    4. Select the recording and <b>click on Edit - Create Program.</b> Give the program a Z name, and select transfer from recording.
    5. Edit the program. You will see that all the data you entered is hard-coded into the program.
    Execute the program. It will have options to create a batch session or to process directly.
    IF THIS FINDS USEFUL PLEASE REWARD POINTS
    REGARDS
    ANOOP

  • I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    Has your carrier been having issues with Call Display? Do the telephone numbers come up when people call, or does it just show 'Unknown Number' or 'Blocked' ?

  • How to capture text input value by user in a LOV search popup page?

    I need to capture the input by the user in LOV search page. I added one controller in the LOV region, and the flow is also working, but what I need to hold the search input in the search popup page. Also do you know what is the id of " Search Term" text input? then I can try to hold the value in PFR of the CO.

    Hi Sandeep,
    Yes, as of now I need to populate blank, so I need to modify the SQL, therefore I need to capture the value which is given by the user. I am trying to capture the value through passive criteria, but not able to get the result. I added below code in PFR of lov region controller,
           Dictionary passiveCriteriaItems = pageContext.getLovCriteriaItems();
           String lov = (String)passiveCriteriaItems.get("SwitchLOV");
          if ((lov != null) && !("".equals(lov)))
               throw new OAException(lov, OAException.INFORMATION); 
    SwitchLOV is a lov map I have added in the LOV, and
    Programmatic Query set to true. and
    LOV Region Item is the id for which user searches.
    I am getting null in the "lov" where i have give some value in the search field.
    Is this would be the way?
    I dont understand where is the issue, Please suggest.

  • Difficult to input train-stop display-name

    Hi, experts,
    In jdev 11.1.2.3,
    When i try to input train-stop display-name in the Property inspector palette,
    I do have input the name string (and leave mouse from the Display name field to ID field) and click the save button in jdev,
    but infact this display name has not been saved, next time when i come back from some where to view it, it's empty.
    And I have stopped the running of app, the computer is OK(not hanging), jdev can do other works. but this issue happens several time today (some time it can work), rather difficult to input display name.
    (This issue also happens sometime on VO's hint field inputs).
    Is that a bug of jdev? some one else has met with it? or just a mirage of me?
    Thanks.

    Hi, Timo and Vinay
    Yes, I do have tried press enter key or leave the mouse to another field on the same pallette.
    but the "Save" button didnot enabled, and i have to press the "Save all" button. and cannot be saved in fact.
    This issue not always happens, but i have met many times today.
    Thanks.

  • You are not authorized to call up line item display (FB03)

    Hi,
    actually; I am facing a problem; one user is getting error message "You are not authorized to call up line item display" when he is trying to view the payment usage of document no in FB03 transaction code.
    I have checked and found that user is already having display access for the company code which he is putting under company code field.
    Also as per the SU53 screen shot; it is showing
    Authorization check failed for S_CTS_ADMI
    Field - CTS_ADMFCT
    for -  TABL
    I have not run the trace yet..
    Kindly advice on what could be the problem and solution for that...
    Many thanks in advance for your help.
    Regards,
    Anuj

    > Also as per the SU53 screen shot; it is showing
    >
    > Authorization check failed for S_CTS_ADMI
    > Field - CTS_ADMFCT
    > for -  TABL
    Total Questions:      8 (6 unresolved)
    Good match! 

  • How to capture the DB Errors to display more specific error on the screen

    HI,
    How to capture the DB Errors to display more specific error on the screen?
    Can any one suggest on this please.
    Thanks

    hi,
    in your db package or procedure write this in ur exception handler
    as
    excpetion when others
    FND_MSG_PUB.ADD_EXEC_MSG (pkg_name, proc_name,
    substr(sqlerrm, 1, 240))
    now in your java code you can catch and throw this excpetion by using
    OAExceptionHelper.checkErrors (Tx, messageCount, returnStatus, messageData);

  • Call Transaction "MIGO" in display mode only

    Hi friends,
    I have changed the standard the SAP standard program MB51 to a Customer Program 'ZMB51' based upon the user requirement.Iam able to get all the values (output)
    Now my requirement is .... iam trying to call transaction "MIGO" when the user clicks on the Material Document Number (MBLNR) (as how in Standard program)
    I ve used "ALV_GRID..." display. and given a callback_user_command also .... iam able to call the trasaction ...... but it is editable and not in the display mode ..........
    Here my code :
    FORM SY_UCOMM_FOR_MBLNR USING R_UCOMM LIKE SY-UCOMM RS_SELFIELD TYPE
    SLIS_SELFIELD.
      IF RS_SELFIELD-FIELDNAME EQ 'MBLNR'.
      IF NOT RS_SELFIELD-VALUE IS INITIAL  AND
             RS_SELFIELD-VALUE NE SY-ULINE.
          CALL TRANSACTION 'MIGO'.
        ENDIF.
        IF R_UCOMM EQ SPACE.
        ENDIF.
      ENDIF.
    ENDFORM.                    " SY_UCOMM_FOR_MBLNR
    So ??????????????????
    What is the remedy ????
    Expecting ur answers....
    Thanks in Advance
    Cheers,
    R.Kripa.

    Hi ... it is solved ...
    I ve changed the code as how it was in MB51 report.
    Here is my code
    FORM SY_UCOMM_FOR_MBLNR USING R_UCOMM LIKE SY-UCOMM RS_SELFIELD TYPE
    SLIS_SELFIELD.
      CASE RS_SELFIELD-TABNAME.
        WHEN 'I_FINAL'.
          READ TABLE I_FINAL INDEX RS_SELFIELD-TABINDEX.
      ENDCASE.
      CHECK SY-SUBRC = 0 .
      IF R_UCOMM = '&IC1'.
        CHECK RS_SELFIELD-TABNAME = 'I_FINAL'.
        CASE RS_SELFIELD-FIELDNAME.
          WHEN 'MBLNR'.
            SET PARAMETER ID 'MBN' FIELD I_FINAL-MBLNR.
            SET PARAMETER ID 'POS' FIELD I_FINAL-ZEILE.
            SET PARAMETER ID 'MJA' FIELD I_FINAL-MJAHR.
        ENDCASE.
        IF SY-SUBRC = 0.
          SELECT SINGLE * FROM MKPF
                    WHERE  MBLNR = I_FINAL-MBLNR
                      AND  MJAHR = I_FINAL-MJAHR.
          IF SY-SUBRC = 0.
    MIGO_DIALOG is a funcion module to set the MIGO transaction
    in Display mode.
            CALL FUNCTION 'MIGO_DIALOG'
              EXPORTING
                I_ACTION            = 'A04'
                I_REFDOC            = 'R02'
                I_NOTREE            = 'X'
                I_NO_AUTH_CHECK     = ' '
                I_DEADEND           = 'X'
                I_SKIP_FIRST_SCREEN = 'X'
                I_OKCODE            = 'OK_GO'
                I_MBLNR             = I_FINAL-MBLNR
                I_MJAHR             = I_FINAL-MJAHR
                I_ZEILE             = I_FINAL-ZEILE.
          ENDIF.
        ENDIF.
      ENDIF.
    But still if anyone knows how to call MIGo transaction i Display mode using 'CALL TRANSACTION 'MIGO''.
    Thanks friends,
    Cheers
    R.Krpia.

  • CUCM: Third Party SIP Phone "Caller ID" is not displaying for outgoing calls

    Hi Team,
    we are running CUCM 9.1(2a),
    we have integrated Third Party SIP Phone(Avaya 1230 SIP Phone) with CUCM,
    Issue: Third Party SIP Phone "Caller ID" is not displaying for outgoing calls, we are able to see only the dailed Number,
    When "A" calls to "B", "A" can see only the dailed number of "B" but not the "Caller ID"
    Regards
    Ananthakumar

    Are A and B both Avaya phones?
    So it looks like you're not seeing the alerting name/connected name getting updated then?  Do you have alerting names configured on the directory numbers?  Might need to take a look at the SIP messaging to see if the alerting name/connected name is being sent to the Avaya phones and maybe they just aren't displaying it.  Might just be something that needs to be tweaked in the 46xxsettings.txt file.

  • For some reason FCP is now making multi files when I capture called -av

    For some reason FCP is now making multi files when I capture called -av
    I capture one clip but I get 7 files.
    sineparade live-1-av 1.91 GB
    sineparade live-2-av 1.91 GB
    sineparade live-3-av 1.91 GB
    sineparade live-4-av 1.91 GB
    sineparade live-5-av 1.91 GB
    sineparade live-6-av 334.1 MB
    sineparade live-av 1.91 GB
    I don't know why this started in recent captures but it is eating up disk space as it is 7 times larger than it needs to be and only the last one works.

    Is there a way to get these files to be joined together into one file easily. I capture on a FAT32 hard drive but then transfer the files onto my edit machine and would prefer to keep everything archived there as a single file.
    Any programs or scripts that I can use. I have figured out that you can open each file in Quicktime and then save as a self contained file, but I was wondering if there is a better way.

  • Nokia E73- Call log does not display entries

    I recently purchased a E73 by itself.
    For some reason the call log does not display any telephone numbers or activity in recent calls; missed calls, received calls, dialed numbers. It would show that I have a missed call but when I enter it, it says (no missed calls).
    Any ideas? Please let me know...
    Thanks

    Enable and set log duration to 30days.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Collecting Caller Inputs - best way to handle this?

    Greetings,
    My apologies in advance, I'm sure this has been asked before and I did try the search function.
    So we have a need to collect, and report on, caller inputs on a couple of menus. For example - one menu offers three options, and based on your choice you could go to another menu with five options, etc. And we're trying to get a handle on the best way to collect and report on callers inputs at the various levels. We know UCCX comes with ten custom variables however, if we have custom variables doing other things can we reuse them? Or, once they are designated to do something are they no longer available?
    Would it be best to use a log file of some kind/type?
    If there are posts (somewhere) discussing this, a link would be spectacular.
    For those of you who have dealt with this your insights would be appreciated.
    Thanks for your time and attention!

    https://supportforums.cisco.com/thread/2151833?tstart=0

  • Probleme with the caller input in CUC 8.5

    Hi, guys,
    I have an issue on CUC 8.5, knowing that I'm working on CUCM 8.5 as well.
    I'm trying to configure the caller input for a user in a way that when someone call this user and reach voicemail, he will press 1 to reach the extension XXXX, in case of no answer from XXXX extension, the call will be forwarded to YYYY.
    I really appreciate your help, guys,
    thanks in advance.

    Configure a CH with transfer settings to XXXX, set that as caller input 1, attempt transfer to.
    On phone XXXX set the call forward options to YYYY.

Maybe you are looking for