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

Similar Messages

  • Why am I unable to copy and paste from clipboard?

    I am able to copy text from Safari on iPad 3, but it is not saving to clipboard because I am unable to paste it (no paste option comes up when I tap). Sometimes it also pastes a previously copied text from the clipboard instead. How can I fix this?

    but it is not saving to clipboard because I am unable to paste it (no paste option comes up when I tap).
    you would benefit from telling where you are when no paste option comes up with you tab because it's up to the app if they support paste at all

  • Unable to copy text values in CLipboard in Ubuntu 8.1

    Hi all ,
    Im using the following code to copy the text:
    import java.awt.Toolkit;
    import java.awt.datatransfer.Clipboard;
    import java
         .awt
         .datatransfer
         .StringSelection;
    import java
         .awt
         .datatransfer
         .Transferable;
    public class TextWriter {
         public static void writeToClipboard(String writeMe) {
              // get the system clipboard
              Clipboard systemClipboard =
                   Toolkit
                        .getDefaultToolkit()
                        .getSystemClipboard();
              // set the textual content on the clipboard to our
              // transferable object
              // we use the
              Transferable transferableText =
                   new StringSelection(writeMe);
              systemClipboard.setContents(
                   transferableText,
                   null);
         public static void main(String[] args) {
              System.out.println(
                   "Writing text to the system clipboard.");
              String writeMe =
                   "I'd like to be put on the clipboard";
              writeToClipboard(writeMe);
    }After running the application when I try to paste it in GEDIT , it is not pasting .
    Also in menubar the PASTE is also not getting enable.
    Can anybody tell how to copy text .
    OS used Ubuntu 8.1 and java version 1.6 update 10
    Thanks and regards
    Anshuman Srivastava

    Copy cannot be disabled to my knowledge. Did you try quitting Safari and resetting your iPad? To quit an app double click the Home button to reveal the row of recently used apps. Flick up on the page preview and it will fly away and disappear. That quits the app. Then Press and hold both the Home button and the Sleep/Wake button continuously until the Apple logo appears. Then release the button and let the device restart. You will not lose data doing this. It's like a computer reboot.

  • 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 + "\"'");

  • Copying data to the clipboard cause windows 8 to lock up

    Whenever I copy to the clipboard Windows 8 will lock up for about 20-30 seconds and then it will finally work. After that it will work fine for a little while. Then the problem will repeat. I am tried running sfc /scannow and everything reports OK. I also
    don't see any errors in the event logs. Please help

    To turn off UAC, go to the Control Panel, then User Accounts.
    Under the header, "Make changes to your user account", there is an entry titled "Change User Account Control Settings".
    Pick it, and drag the slider all the way down to "Never Notify".
    Access of Japan is the company Palm hired to write Palm Desktop 6.2.2.  
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Unable to copy properties of the program

    Hi All,
    Actually, i am working on a code that copies reports or programs or lets say any obects.All this in CMC.
    For suppose if we have some reports and Programs in the public folders. Then what my code does is it copies reports and programs into the other folder(Lets say Destiantion)
    The thing is if any properties are changed for the reports that will be also copied into destination for that specific report. But where as if any properties are changed for the program..that is not being copied into destination. I could'nt find any thing related to properties in add program method in tha SDK...for report it is there regarding properties.
    So anyone can help me out in solving this issue.
    Thanks.

    My sample code
    IInfoObjects programObj1s = this.getChildrenForParentFolder(infoStore, modFolderId, "Program");
                   if(programObj1s.size() > 0){
                   for (int i = 0; i < programObj1s.size(); i++) {
                           IProgram progObject = (IProgram)programObj1s.get(i);
                           System.out.println("Program name to be modified : " + progObject.getTitle());
                            IInfoObjects iChildProgObjects = infoStore.query("SELECT * FROM "
                                       + "CI_INFOOBJECTS "
                                       + "Where SI_KIND='Program'"
                                       + " AND SI_NAME='"+ progObject.getTitle() + "'"
                                       + " AND SI_PARENTID=" + destProgFolderId);                      
                            if(iChildProgObjects.size() > 0){
                                 IProgram modProg = (IProgram)iChildProgObjects.get(0);
                                 iChildProgObjects.delete(modProg);
                                 infoStore.commit (iChildProgObjects);
                                 int progId = this.addProgram(infoStore, modProg.getTitle(), modProg.getProgramType(), destProgFolderId);
                                 //cmcMain.addToDeletedReportList(delReport.getTitle());
                                 //System.out.println("Deleted report is " + delReport.getTitle());
                            } else{
                                 System.out.println(progObject.getTitle() + " cannot be located");

  • 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

  • Unable to copy and paste code or text in the post

    hi
     i am unable to copy or paste the code or text from my notepad/word to this editor when i am trying post questions  etc.
    is this feature blocked my MS ?
    If i add a html code windows , i am able to paste the  code and text. can anyone pls confirm why they have removed copy-paste operations from the normal window

    Did you try to paste by right-clicking or by typing Ctrl + V ?
    Sometimes the former doesn't work but the latter works.  -- My own experience.
    Alexis Zhang
    http://mvp.support.microsoft.com/profile/jie
    http://blogs.itecn.net/blogs/alexis
    | i am unable to copy or paste the code or text from my notepad/word to this editor when i am trying post questions etc.

  • Error when trying to preview on device : unable to copy files to device

    I have  an error with the device preview function.
    Everything is installed and has worked 2-3 times, but painfully.
    An error is often displayed and says unable to copy files to the device.
    What is the problem?
    Have you this error?

    Are you using this function without problem ?
    Is your custom viewer built with developper or enterprise certificate ?

  • Unable to copy to clients with ARD 3.8

    Our school is unable to using ARD 3.8 with all clients running on Mavericks 10.9.5 with all updates.
    While using Spotlight search we find files, but are unable to copy them to the admin machine.
    The scenario is this:
    - I search for files on users desktop "/Users/student/Desktop/" using the Spotlight feature
    - Look for mp3 audio files
    - Select all results and press "Copy To This Computer."
    - Select Desktop as my destination and start to copy the files
    Problem:
    The first file will copy fast, but the second will stall sat 0%.
    After a about 1 minute timeout the second file fails.
    The third file copies as fast as the first.
    The fourth file stalls again at 0%.
    After a about 1 minute timeout the second file fails.
    This pattern repeats.
    Tried these fixes:
    - Updating Maverick host and client with all available updates.
    - Update Apple Remote Desktop from 3.7 -> 3.8
    - Deleted associated preferences with ARD database
    - Opening com.apple.RemoteDesktop.plist and replacing all hostname with ignorehostname,etc., via recommendation from community poster (Bryan).
    Question:
    Is anyone else having problems with this? Copying files from admin machine with ARD to clients also exhibits this problem.
    Appreciate your help friends.
    Take care,
    -Steve

    I would use an alternate scheme.
    Duplicate the document and delete what must not appear in the LogBook.
    Yvan KOENIG (VALLAURIS, France) lundi 17 octobre 2011 18:59:00
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Since upgrading to Mavericks, I have been unable to sync devices (specifically ipad mini and iphone 4s) to my MId 2013 Imac . They wil rapidly connect and disconnect, and I'm unable to do anything with the device. This happens with both USB ports.  Any su

    Since upgrading to Mavericks, I have been unable to sync devices (specifically ipad mini and iphone 4s) to my MId 2013 Imac . They wil rapidly connect and disconnect, and I'm unable to do anything with the device. This happens with both USB ports.  Any suggestions?
    MacBook Air, OS X Mountain Lion (10.9.1)

    Obviously, syncing an iOS device with iTunes over USB is still supported in Mavericks. Calendar and contact syncing with iTunes is no longer supported. That has nothing to do with your problem.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for