UCCX copy data in the enterprise data window right to the clipboard

Hello I need help please! how to write a macro to copy data in the enterprise data window right to the clipboard? I should be able to take the data right from enterprise data and copy it to the clipboard so the agent can paste it into any application they want.  The macro step wants an application first - how do I get around this?
Thanks.Hello I need help please! how to write a macro to copy data in the enterprise data window right to the clipboard? I should be able to take the data right from enterprise data and copy it to the clipboard so the agent can paste it into any application they want.  The macro step wants an application first - how do I get around this?
Thanks.

Do you have more than one enterprise fields showing your CAD layout?
Do you wish to copy all of the them or just one of them?
Do you wish to copy the name as well as the value?
At any rate, a macro is not needed to copy the enterprise data.  You simply double click it and press CTRL+C.
See this video here, which shows me doing just that:
http://www.youtube.com/watch?v=88E-z0ShlFE&list=UUkB02mmFBBZqVBWY5XHAsoA&index=12&feature=plcp
A macro might just complicate the matter, and force the Agent into a single option.  But let's get your answers to the above first, before we make any final decisions on the matter.
Anthony Holloway
Please use the star ratings to help drive great content to the top of searches.

Similar Messages

  • Copying text to the clipboard in AVDocDidOpen event handler causes Acrobat 9 to crash

    I'm trying to copy the filename of a document to the clipboard in a plugin with my AVDocDidOpen event handler.  It works for the first file opened; however when a second file is opened, Acrobat crashes.  The description in the application event log is: "Faulting application acrobat.exe, version 9.1.0.163, faulting module gdi32.dll, version 5.1.2600.5698, fault address 0x000074cc."
    I've confirmed that the specific WIN32 function that causes this to happen is SetClipboardData(CF_TEXT, hText);  When that line is commented out and remaining code is left unchanged, Adobe doesn't crash.
    Is there an SDK function that I should be using instead of WIN32's SetClipboardData()?  Alternately, are there other SDK functions that I need to call be before or after I call SetClipboardData()
    Bill Erickson

    Leonard,
    I tried it with both "DURING, HANDLER, END_HANDLER" and "try catch," as shown below.  However, it doesn't crash in the event handler; it crashes later, so the HANDLER/catch block is never hit.
    The string that's passed to SetClipboardData() is good, because I'm able to paste it into the filename text box of the print dialog when I try to create the "connector line" PDF.  I also got rid of all the string manipulation and tried to pass a zero-length string to the clipboard but it still crashes.
    Here's the code:
    ACCB1 void ACCB2 CFkDisposition::myAVDocDidOpenCallback(AVDoc doc, Int32 error, void *clientData)
        PDDoc pdDoc = AVDocGetPDDoc(doc);
        char* pURL = ASFileGetURL(PDDocGetFile(annotDataRec->thePDDoc));
        if (pURL)    {
            if (strstr(pURL, "file://") && strstr(pURL, "Reviewed.pdf")) {
                // Opened from file system so copy filename to clipboard for connector line report
                char myURL[1000];
                strcpy(myURL, pURL);
                ASfree(pURL);    // Do this before we allocate a Windows handle just in case Windows messes with this pointer
                pURL = NULL;
                HGLOBAL hText = GlobalAlloc(GMEM_MOVEABLE, 1000);
                if (hText)    {
                    try
                        // Skip path info and go right to filename
                        char *pText = (char *)GlobalLock(hText);
                        char *pWork = strrchr(myURL,'/');
                        if (pWork)    {
                            strcpy(pText, pWork+1);
                        } else {
                            strcpy(pText, myURL);
                        char *pEnd = pText + strlen(pText);    // Get null terminator address
                        // Replace "%20" in filename with " "
                        pWork = strstr(pText, "%20");
                        while (pWork)    {
                            *pWork = ' ';
                            memmove(pWork+1, pWork+3, (pEnd - (pWork+2)));
                            pWork = strstr(pText, "%20");
                        // Append a new file extension
                        pWork = strstr(pText, ".pdf");
                        *pWork = 0;    // truncate the string before ".pdf"
                        strcat(pWork,".Connectors.pdf");
                        GlobalUnlock(hText);     // Must do this BEFORE SetClipboardData()
                        // Write it to the clipboard
                        OpenClipboard(NULL);
                        EmptyClipboard();
                        SetClipboardData(CF_TEXT, hText);     // Here's the culprit
                        CloseClipboard();
                        GlobalFree(hText);
                    } catch (char * str) {
                        AVAlertNote(str);
            if (pURL)
                ASfree(pURL);

  • Programatically copying text to the clipboard

    Short: I need to programatically copy a string of text from
    either a variable or a hidden control field to the clipboard.
    Long: We have a requirement to allow the user to 'pop-up' a
    list of frequently used words, select one from the list and have
    it pasted into a field on the form. What I would prefer to do
    is select the user's words into an LOV and have the chosen word
    placed into a hidden field. If I could move the contents of
    that field to the clipboard, I can place the focus back in the
    original field ('keep cursor position' = yes) and used the
    PASTE_REGION built-in to insert the text without overwriting
    anything.
    The other method I have been experimenting with is creating my
    own 'List of Values' form. I'm using a t-list to display the
    user's word list. When-List-Changed copies the word to a visible
    text field and an OK button places the focus in the text field,
    executes the SELECT-ALL built-in, then the COPY-REGION built-in
    and returns to the calling form with the word in the clipboard.
    Problems: The user can't shrink the list by typing like they can
    with an Oracle LOV. When the focus is in the t-list, the
    DEFAULT functionality of the OK button doesn't happen. I can't
    get a When-Mouse-Doubleclick trigger to fire while in the t-list.
    In the end, I prefer the first method (the LOV) BUT... I have to
    have a field visible on the form to place focus in, select all
    of the text and copy to the clipboard. This field looks silly.
    I'm sorry this question is so long winded. Thank you for
    reading it all. Does anyone know how I might accomplish this
    requirement (professionally)?
    Thank you,
    Fouad

    Short: I need to programatically copy a string of text from
    either a variable or a hidden control field to the clipboard.
    Long: We have a requirement to allow the user to 'pop-up' a
    list of frequently used words, select one from the list and have
    it pasted into a field on the form. What I would prefer to do
    is select the user's words into an LOV and have the chosen word
    placed into a hidden field. If I could move the contents of
    that field to the clipboard, I can place the focus back in the
    original field ('keep cursor position' = yes) and used the
    PASTE_REGION built-in to insert the text without overwriting
    anything.
    The other method I have been experimenting with is creating my
    own 'List of Values' form. I'm using a t-list to display the
    user's word list. When-List-Changed copies the word to a visible
    text field and an OK button places the focus in the text field,
    executes the SELECT-ALL built-in, then the COPY-REGION built-in
    and returns to the calling form with the word in the clipboard.
    Problems: The user can't shrink the list by typing like they can
    with an Oracle LOV. When the focus is in the t-list, the
    DEFAULT functionality of the OK button doesn't happen. I can't
    get a When-Mouse-Doubleclick trigger to fire while in the t-list.
    In the end, I prefer the first method (the LOV) BUT... I have to
    have a field visible on the form to place focus in, select all
    of the text and copy to the clipboard. This field looks silly.
    I'm sorry this question is so long winded. Thank you for
    reading it all. Does anyone know how I might accomplish this
    requirement (professionally)?
    Thank you,
    Fouad

  • Button to copy text to the clipboard

    Reading the document "Javascript for Acrobat API Reference" Page 120:
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf
    the document discusses the execMenuItem command. From all that I have researched it appears I cannot create a button that copies text from a text field to the UI clipboard. 
    On page 121 the API reference says:
    To ensure a secure environment, the menu items that can be executed are limited to the following:
    ●AcroSendMail:SendMail
    ●ActualSize
    ●AddFileAttachment
    ●BookmarkShowLocation
    ●Close
    ●CropPages
    ●DeletePages.............
    ..............●ZoomViewOut
    The list is long but nowhere is "Copy" mentioned. I don't want to surreptitiously copy text or use a trusted function. I am content with the user knowing a button just copied a field of text. I just want to skip the highlighting of multiple field to get all the text. Does anyone know a way around this? I would like to copy a text field to the clipboard so the text can be entered elsewhere in another program.

    All I know is they made this impossible a long time ago, like with Acrobat 5 or 6. I recall because I took advantage of it and never discovered a workaround.

  • I find that I can no longer copy text to the clipboard.

    Why can I no longer copy text to my clipboard?

    Here is a little more information.  Last week everything worked fine.  I opened the same document yesterday and tried to copy some text to the clipboard and now I get an error message saying "can not copy to clipboard, internal error.  I also find that pdf files from the internet will not load and all I get is a small black x box in the upper left corner of the screen.  Went through the steps in control panel and adobe is enabled.

  • Is it possible to copy text to the clipboard in Illustrator via Javascript ?

    I am working on a very basic script that exports coordinates from Illustrator.
    At the moment I am just outputing the values via $.writeln()
    I was wondering if I could copy the output values to the clipboard. If so, what
    am I looking for in the API ?
    Thanks,
    George

    For an actionscript project I will need to animate a few hundred objects to certain destinations. These destinations are given by a designer who works on the look and feel of things in Illustrator.
    I would like to make it as simple as possible for the designer to adjust things visually in Illustrator, then he can get a snippet to test in Flash as well.
    Thank you very much for the applescript idea!
    I'll use something like:
    app.system("osascript -e 'set the clipboard to \"" + code + "\"'");

  • 11.1.1.5 - Unable to copy XML to the clipboard

    Could someone do a quick check in 11.1.1.5 and see if you're experiencing this? Click the Catalog link on the common header. Click the More icon for any analysis or KPI. Click Copy. The XML should be on the clipboard, right?
    Now try to paste into a text editor. For me, nothing happens.

    Hi,
    Did you refreshed GUID after applied obiee11.1.1.16.8BP?
    Bug Ref: (catalog might be corrupted) also refer oracle bug info..
    12779543 DASHBOARD ERROR CATALOG OBJECT SCHEMA VALIDATION FAILED AGFIXBO2:EIRWWH9E
    12427582 10G->11G UPGRADE: CATALOG OBJECT SCHEMA VALIDATION FAILED : AGFIXBO2:EIRWWH9E
    Thanks
    Deva

  • Can not copy X11 to the clipboard in OS 10.5.7

    After updated to the recent version of Mac OS X (10.5.7), I found it is no longer able to copy any thing from an X11 application like Emacs to other Mac applications. Anyone has the same experience and how to go around it? Thank you.
    lou

    Please fix this..
    This forum is for User to User exchanges.
    I would encourage you to file a bug with Apple at either:
    <http://www.apple.com/feedback/macosx.html>
    or
    <http://bugreporter.apple.com>
    Free ADC account needed for BugReporter

  • Why does not "Copy data" menu item of Colormap chart work?

    I need to get image of colormap chart (Sound and Vibration Toolkit v4.0) when program is running or stopped. It is very easy to get image in the clipboard by using "Copy data" popup menu item, but there is a problem.
    There is "SVXMPL_Getting Started with SVT (Simulated).vi" example where colormap chart is used. In this example it is possible to get image of colormap chart (axes, grids and data) by simply clicking "Copy data" popup menu item.
    Colormap chart in program puts into clipboard only image with axes and grids! I have compared colormap charts settings in both cases and have not found any difference related to "Copy data" functionality. Any ideas how to fix it?
    Running Labview v8.0 and Sound and Vibration Toolkit v4.0 on Windows 2000/SP4.
    In the attach there are chart and clipboard images.
    Attachments:
    colomap-chart-copy-data-pro.png ‏23 KB

    For sure I am using intersity chart in my program (look at the attached image), but "Copy data" copies blank chart image.
    I have done very simple test with modified intersity chart used in SVXMPL_Getting Started with SVT (Simulated).vi example:
    1) Modified intersity chart was copied to my program - "Copy data" copies blank chart image.
    2) Copy of modified intersity chart was copied back to the SVXMPL_Getting Started with SVT (Simulated).vi example. Two charts were connected in parallel with the same settings and property nodes. In original chart "Copy data" copies right chart image, in twice copied chart "Copy data" copies blank chart image.
    So I am a little bit confused with such chart behaviour. Does it mean that some specific chart setting affects "Copy data" feature? And this setting is not copied by copy'n'paste?Message Edited by rsa1024 on 01-31-2007 03:51 PM
    Attachments:
    colormaps cmp.png ‏24 KB

  • "Copy data" fails to copy entire graph image

    Formerly "Copy Data" when right clicked would copy a graph together with the data for pasting as an image file into other applications.
    I have an application that used to work fine like this but now if you "Copy Data" you only get the graph background, grid, axis, etc. No plot lines.
    A graph which does copy correctly in a sub VI if running stand alone (not in the main VI), will not copy correctly when running from the main VI.
    Export Simplified image works and preserves the data plot, but fails to preserve the same graphical look to the plot, so is not desired for this use.
    Running 8.2.1. Many different development versions of this application had working "Copy Data" for months, so its a new occurance. Problem occurs in multiple office apps: Word, PPT, Paint, and on multple computers. Occurs on both development version and executables built in 8.2.1

    I am having similar problem. Using "copy data" gives only a blank background. See attachment; export simplified image options works but copy data option does not. I am usiing LV 2009 SP1. Any help will be highly appreciated.
    Attachments:
    copy data.JPG ‏34 KB
    export simplified image.JPG ‏70 KB

  • Safari copy wipes the clipboard

    Anyone else have this in Safari 4 for Windows?
    I use Safari at work, often copying and pasting text; in Safari 4 I have noticed an issue that when I have text in the clipboard and use the keyboard shortcut to paste the text into a text box on a web page.
    Here's what happens, I first have some text I copied into the clipboard, when I accidentally hit Ctrl-C instead of Ctrl-V the clipboard gets wiped out as Safari copies a null amount of text into the clipboard, thus if I realize my mistake and try to do a Ctrl-V my previously copied text has disappeared from the clipboard and nothing pastes.
    Yeah I know I should learn to type better, ha ha, but we all occasionally make mistakes and it's infuriating when this happens. I am sure this was not the behaviour Safari 3 and also this issue does not occur in FireFox and I think most other browsers out there.
    I clean installed Safari on a new install of Windows on a virtual machine and was able to recreate the issue.
    Any thoughts?
    Phil
    Message was edited by: sixfootphil

    I found byselft the solution. Here the step for those who have to do the same:
    Copy Premise to the clipboard (BDD)
      l_procobj-header = 'OBJH'.
      l_procobj-type   = 'SWO'.
    Create object Premises
      CALL FUNCTION 'SWO_CREATE'
           EXPORTING
                objtype = 'PREMISES'
                objkey  = l_key
           IMPORTING
                object  = l_procobj-handle
                return  = l_return.
      IF NOT l_return IS INITIAL.
        EXIT.
      ENDIF.
    Set Object ID
      CALL FUNCTION 'SWO_OBJECT_ID_SET'
           EXPORTING
                object    = l_procobj-handle
                objectkey = l_key
           IMPORTING
                return    = l_return
           EXCEPTIONS
                OTHERS    = 1.
      IF NOT l_return IS INITIAL.
        EXIT.
      ENDIF.
    Buffer Refresh
      CALL FUNCTION 'SWO_OBJECT_REFRESH'
           EXPORTING
                object       = l_procobj
           EXCEPTIONS
                error_create = 02.
      l_def-element      = '<MAINOBJ>'.
      l_def-editorder    = 2000 - 1.
      l_def-reftype      = 'O'.
      l_def-refobjtype   = 'PREMISES'.
    APPEND l_def TO li_def.
      CALL FUNCTION 'EWO_XTAINER_ELEMENT_SET'
           EXPORTING
                x_elemdef       = l_def
                x_value         = l_procobj
           CHANGING
                xy_xtainer      = l_desk_xtain
           EXCEPTIONS
                invalid_elemdef = 1
                internal_error  = 2
                OTHERS          = 3.
      CALL FUNCTION 'CIC_EVENT_RAISE'
           EXPORTING
                event  = 'ADD_XTAINER_TO_BDD'
                p1     = l_desk_xtain
           EXCEPTIONS
                OTHERS = 99.

  • When I close firefox "everything " is cleared! EXCEPT when I open it again and anything i have copied to the clipboard (paste icon) remains lit... I believe this can be a security breach because I clear everything when closing firefox !!

    I have my settings to clear everything when I close firefox ver 3.6.13. If I copy something to the clipboard, the Paste icon lights up so I can paste the text... which is normal.
    The problem is when I close the browser and everything is suppose to clear (history, etc) the PASTE Icon still lights up for me to paste again.
    This can be a security breach because I want everything cleared when closing the browser !!!
    The only way I can rid myself of this problem is to restart the computer... which clears the clipboard of the operatinging... which is absolutely normal as well.
    I should not have to restart the computer each time.
    Try It !!! type text in any box... then paste it by using the PASTE Icon
    CLEAR all your history, everything ... then close firefox
    Reopen the browser... and the PASTE Icon will light up

    I only had a few addons installed, I disabled Zone Alarm toolbar, View Source Chart 3.01. I also had 5 separate java console updates/addons, and I uninstalled all but the latest java console 6.0.21. All I have now is Roboform 6.9.98, Firebug 1.5.4, Java console 6.0.21, Java quick starter 1.0. So far, so good, the problem has not occurred today. I hope this is it, I will be more sure after a few days problem free. Thanks for the info.

  • Detect something just copied to the clipboard

    Hi everyone,
    I'm wondering if it is possible for a java program to detect something just got copied into the system's clipboard? I don't mind using JNI if that helps. I need to be notified after a user "right click and select copy" in any application. They can be copying something in microsoft word and i want to be notified in my java program when a copy-to-clipboard is just made. Is this even possible in Java? I searched the forumn and didn't see any topic on this. TIA

    Run this program, it is an example of monitoring the clipboard.
    import java.awt.*;
    import java.awt.datatransfer.*;
    class MyClipboardOwner implements ClipboardOwner {
        public void lostOwnership(Clipboard clipboard, Transferable contents) {
            System.out.println ("Someone copied something to the clipboard");
            DataFlavor[] df = contents.getTransferDataFlavors();
            for (int i = 0; i < df.length; ++i) {
                System.out.println (df);
    public class Test105 {
    public static void main(String[] args) throws Exception {
    Clipboard cb = Toolkit.getDefaultToolkit().getSystemClipboard();
    cb.setContents(new StringSelection ("Put this in the clipboard"), new MyClipboardOwner());
    while (true) {
    try { Thread.sleep(100); } catch (InterruptedException ex) {}

  • Copying a slide to the clipboard?

    I want to copy a Captivate slide to the clipboard so I can
    edit it in a graphics program. The documentation first says:
    Adobe Captivate provides an easy way to copy a slide to the
    clipboard. Then the instructions say:
    To copy a slide to the clipboard:
    1. Open an Adobe Captivate project in Edit view.
    2. Select an image on the slide that you want to copy as a
    bitmap.
    3. Select Edit > Copy to Clipboard as Bitmap.
    4. .....
    How do I copy the entire slide to the clipboard as a bitmap
    in order to edit it, and not just an image on the slide?
    Thanks.

    Hi there
    Yep, you sure can! Insert a Highlight Box object. Configure 0
    for the frame width and 0% transparency. Here's where it gets cool.
    Click the color chooser, then the eyedropper and lift the color
    from the field. (Sometimes these are an odd color, so this helps)
    Now size and position the Highlight Box to cover the
    information you wish to hide. Once that is done, copy this to the
    clipboard. Here's where it gets even cooler! Choose all the
    remaining slides where you want to hide the info and paste. Whoosh!
    The Highlight Box is pasted in the EXACT location on each slide.
    (no futzing with placement!)
    Now all you have to do is visit each slide, right-click the
    Highlight Box and choose Merge into Background.
    This should accomplish what you are doing with editing in a
    different application.
    Cheers... Rick

  • Copy ImageField Images to the clipboard

    We've created ImageFields in a pdf to for people to send into us.
    However we would like to be able to take those images and copy and paste them into other things. emails for example.
    right now the ImageField only lets you click it to add an image. We can't select or right click that image to copy it to the clipboard.
    is there a way to setup a button or something that via javascript or some other way allow us to copy that image to the clipboard?

    Hi,
    to copy an image to the clipboard you can use the snapshopt tool from Acrobats or Readers Edit menu.
    There is no other way I'm afraid.

Maybe you are looking for

  • Cant delete all from a bound text area--why??

    Hi All, Here's my problem. I'm using jdev10.1.2, jsp's and adf bc's. i have several text areas on my jsp that correspond to clob attributes on a VO. If the user edits this page by removing the entire contents of one of these text areas and submits th

  • Adobe Presenter 9 navigation to webpage was canceled when click email hyperlink

    Windows 7, IE 10, Adobe Presenter 9 I have an email hyperlink created in PPT/Presenter that works fine within PPT.  However, when I publish the course to My Documents and view the presentation, once I click the email hyperlink, it opens an email but

  • Missing Tools. ACK! Help!

    At work I'm using CS5 on a Mac. Today I tried installing a new brush and after doing so all my tools went away, and I mean ALL of them. Looking under the WINDOW menu the only things tht are listed are: New Window, Arrange, Application Frame, Applicat

  • Time Constraints in Hr

    hi gurus , there is some doubt in Time constraints 1 , 2  and 3 . Can  u plz Give me detail of time constraints with example so that it can clear the picture. thanks and regards. Ruchi

  • JMenu, Hotkeys & Action Listener

    If I set a JMenu Hotkey, it will activate whenever I press it (not just when the menu is open). I don't want the hotkey to activate when I'm typing elsewhere outside the menu (ex: JTextField). I don't want to have to use CTL+hotkey for everything on