My tags are broken

I logged into acrobat.com today to find that most of my tagged files are not appearing under their tags.
They're all there under All Files, and showing there as tagged, but won't appear in the relevant tag window. Untagging and retagging them works until I log out; then when I og in again I'm back to square one.
Any ideas?

I thinkg "queued" hasn't worked correctly for a long time, so believe it got
pulled.

Similar Messages

  • Excel ActiveX invoke nodes are broken

    I am using LabVIEW 2007.  We are using a VI that runs on most of the PC's in our facility however on some the "invoke node" related to Excel functions don't operate. They are broken and the VIs won't run.  We get errors that the "Invoke Node: contains unwired ro bad terminals".  When going to select methods or properties not all of the properties are shown as seen on the functional PCs. Some of the properties are missing from the selection menus, thus making it incompatible.
    Has anyone seen this problem and a solution?
    Thanks
    Manliff,

    What about separating the compiled code from the source?  I recognize that this will only work in LV2010, but I expect that that will prevent the compiler from breaking activeX code that depends on a different version than the local one...
    Testing this idea is on my to-do-list, but I was wondering if anyone has tried it already.
    -Barrett
    CLD

  • Upgraded to iTunes 11. Now, I can not sync my music to my iPhone 4S (iOS 6.0.1) Apps, movies and videos sync OK. Music is the problem. Tags are correctly check-marked. Any ideas ???

    Upgraded to iTunes 11. Now, I can not sync my music to my iPhone 4S (iOS 6.0.1).  Apps, movies and videos sync OK. Music is the problem. Tags are correctly check-marked. NO ERROR MESSAGE THOUGH. Just a No Content in the Music App in the iPhone. Any ideas ???

    Bump!

  • I need to authorize my computer but i am unable to do so as i am authorized to many times but i can't authorize the other computers because they are broken, what should i do?

    i need to authorize my computer but i am unable to do so as i am authorized to many times but i can't authorize the other computers because they are broken, what should i do?

    About Authorization and Deauthorization.
    Follow the instructions in the above link to deauthorize all and then authorize only the computers that you physically have access to and need authorized.

  • In XML Output the values of Number column tags are not displayed properly

    Hi,
    Our Client have been using AR Invoice Print Program for a long time and it is heavily customized. Also they are using an old version of the RDF. So we have taken the latest version of the RDF (RAXINV.rdf) for Oracle Apps 11.5.10.2 by raising a SR and implement Client's old RAXINV.rdf into it.
    All was ok, but when we are running the program, the XML Output did not generate properly. For the Q_INVOICE query (G_ORDER_BY, G_INVOICE and G_INV_TERM group), the value of some of the scaler number columns are not appeared properly. The tags are coming correctly, but the value is appearing as '*', instead of the correct value. We have checked in the RDF Level (By putting srw.message and check in the log file) that those columns are having proper value. So there is no issue with the RDF.
    But because of the above mentioned problem, the some of the PDF output field values also is not generated correctly.
    I think that because of the lexical parameters which was implementing the Q_INVOICE query (&COMMON_QUERY) this issue is coming. Because the issue is only in the Q_INVOICE query group (G_ORDER_BY, G_INVOICE and in G_INV_TERM group) not in any other query group.
    There is no problem with the scaler character columns. The issue is only with the number columns.
    Also we have checked that if we hardcode the value of the number columns in the above mentioned lexical parameter, this problem doesn't appear.
    If we put TO_CHAR function to those number columns in the lexical parameter (COMMON_QUERY), then this issue get solved. But we can't do it because of performance issue and also Client won't approve it.
    Please help.
    With Thanks and Regards

    I don't know how to read the code you pasted or I would have checked this myself.
    Do your fields in the internal table reference dictionary objects or elementary types? If not using dictionary types, the column names will be blank by default. If you can't change your fields to be dictionary types, you can try this to change the column names:
    I made a method inside my local class to add the names:
            call method set_colname
              EXPORTING iv_tab = alv_tab
                        iv_colid = 'xxxx'  "fieldname from the table
                        iv_stxt = text-t54
                        iv_mtxt = text-t55
                        iv_ltxt = text-t55.
    METHOD set_colname .
      data:
              alv_cols type REF TO cl_salv_columns_table,
              alv_col type REF TO cl_salv_column.
      TRY .
    *... Change fieldnames
            call METHOD iv_tab->get_columns RECEIVING value = alv_cols.
            call method alv_cols->get_column EXPORTING columnname = iv_colid RECEIVING value = alv_col.
            IF iv_stxt <> ''.
              CALL METHOD alv_col->set_short_text EXPORTING value = iv_stxt.
            ENDIF.
            IF iv_mtxt <> ''.
              CALL METHOD alv_col->set_medium_text EXPORTING value = iv_mtxt.
            ENDIF.
            IF iv_ltxt <> ''.
              CALL METHOD alv_col->set_long_text EXPORTING value = iv_ltxt.
            ENDIF.
       CATCH cx_salv_not_found.
      ENDTRY.
    ENDMETHOD. "set_colname

  • Faces tags are not rendering

    I am using JDeveloper 10.1.3.. I have a rather dynamic web page, so I decided to do everything in the servlet. I write out everything for the jsf page from the servlet. Here is what I have:
    PrintWriter out = response.getWriter();
    out.println("<%@ tablib uri='http://java.sun.com/jsf/html' prefix='h' %>");
    out.println("<%@ tablib url='http://java.sun.com/jsf/core' prefix='f' %>");
    out.println("<f:view>");
    out.println("<html>");
    out.println("<head><title>Servlet1</title></head>");
    out.println("<body>");
    out.println("Prompt1:  <h:inputText id='p1' value='hey' />");
    out.println("<br>");
    out.println("Prompt2:  <h:inputText id='p2' value='yohey' />");
    out.println("</body></html></f:view>");
    out.close();
    I run the servlet with in JDeveloper.  The page is rendered but none of the jsf tags are rendered.  I have no input fields.  Why?
    When I do a view source from my browser IE 6.0 I get the following:
    <%@ tablib uri='http://java.sun.com/jsf/html' prefix='h' %>
    <%@ tablib url='http://java.sun.com/jsf/core' prefix='f' %>
    <f:view>
    <html>
    <head><title>Servlet1</title></head>
    <body>
    Prompt1:  <h:inputText id='p1' value='hey' />
    <br>
    Prompt2:  <h:inputText id='p2' value='yohey' />
    </body></html></f:view>
    [pre]
    What am I doing wrong?  Why are the jsf tags not being rendered/converted/used?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I am using JDeveloper 10.1.3.. I have a rather dynamic web page, so I decided to do everything in the servlet. I write out everything for the jsf page from the servlet. Here is what I have:
    PrintWriter out = response.getWriter();
    out.println("<%@ tablib uri='http://java.sun.com/jsf/html' prefix='h' %>");
    out.println("<%@ tablib url='http://java.sun.com/jsf/core' prefix='f' %>");
    out.println("<f:view>");
    out.println("<html>");
    out.println("<head><title>Servlet1</title></head>");
    out.println("<body>");
    out.println("Prompt1: <h:inputText id='p1' value='hey' />");
    out.println("<br>");
    out.println("Prompt2: <h:inputText id='p2' value='yohey' />");
    out.println("</body></html></f:view>");
    out.close();
    I run the servlet with in JDeveloper. The page is rendered but none of the jsf tags are rendered. I have no input fields. Why? When I do a view source from my browser IE 6.0 I get the following:
    <%@ tablib uri='http://java.sun.com/jsf/html' prefix='h' %>
    <%@ tablib url='http://java.sun.com/jsf/core' prefix='f' %>
    <f:view>
    <html>
    <head><title>Servlet1</title></head>
    <body>
    Prompt1: <h:inputText id='p1' value='hey' />
    Prompt2: <h:inputText id='p2' value='yohey' />
    </body>
    </html>
    </f:view>
    What am I doing wrong? Why are the jsf tags not being rendered/converted/used?

  • Translation from CS5 to Cloud doesn't  work correct, navi and linked images are broken.

    Translation from CS5 to Cloud doesn't  work correct, <navi> and linked images are broken.
    The data of CS5 was created at another PC. I installed Cloud version into two different PC. One has had the site data since dreamweaver CS5 and it works correct in Cloud version. Another PC got the site data from remote server and it doesn't work correct. <navi> and linked image are broken.

    Another PC got the site data from remote server and it doesn't work correct. <navi> and linked image are broken.
    This implies your site is not properly defined in DW.  Go to Site > Manage Sites.
    Or simply go to your other installation of DW and export the site definition file from Manage Sites.
    Save it to a flash stick or other removable drive.  Then import the STE file into your 2nd installation of  DW.
    Nancy O.

  • Some Myanmar characters are broken or replaced on InDesign.

    Some Myanmar characters are broken or replaced on InDesign. I use InDesign CS6/Win8, font is Myanmar text. Please let me know some advice.

    Hi,
    you would need to file a service request with support and provide a test case for this problem to be analyzed by development. For this you need a support contract. Depending on the JDeveloper version you use, it may be that this old browser hasn't been tested. Also note that with 12c we probably start de-supporting old browsers like this.
    Frank

  • Quotes in attributes in a custom tag are failing in weblogic 5.1

    This seems to be on and off behaviour but when my tags are failing I
              have traced it down to the fact that my attributes have quotes in
              them. (By the way I'm running weblogic 5.1 with service pack 10)
              ie:
              <a:foo bar="<%=req.getParemeter("biz")%>">. Escaping the internal
              quotes doesn't seem to help the matter at all.
              After many hours of racking my brain to try and figure out why the
              tags were failing I found a message somewhere in this group which said
              they had the same issue and worked around it by using single qoutes
              around any attribute with a qoute in it ie: <a:foo
              bar='<%=req.getParemeter("biz")%>'>. This work around worked for me as
              well but leaves me with 2 important questions.
              a) According to weblogic this is issue (and I quote from their
              website) "CR 34389: Escaping Quotes was not working in the value tag
              for JSP params; The JSP spec says that quotations (") are to be
              escaped with \" . Fixed quoting problems for double and single quotes.
              " This was supposedly fixed in service pack 9, I'm running service
              pack 10 so what gives???
              b) Since this single qoute thing is not in the JSP spec if I keep it
              like this to get my tags working under my current setup and then we
              eventually migrate to weblogic 6x is there a risk all my tags will
              break?
              

    This seems to be on and off behaviour but when my tags are failing I
              have traced it down to the fact that my attributes have quotes in
              them. (By the way I'm running weblogic 5.1 with service pack 10)
              ie:
              <a:foo bar="<%=req.getParemeter("biz")%>">. Escaping the internal
              quotes doesn't seem to help the matter at all.
              After many hours of racking my brain to try and figure out why the
              tags were failing I found a message somewhere in this group which said
              they had the same issue and worked around it by using single qoutes
              around any attribute with a qoute in it ie: <a:foo
              bar='<%=req.getParemeter("biz")%>'>. This work around worked for me as
              well but leaves me with 2 important questions.
              a) According to weblogic this is issue (and I quote from their
              website) "CR 34389: Escaping Quotes was not working in the value tag
              for JSP params; The JSP spec says that quotations (") are to be
              escaped with \" . Fixed quoting problems for double and single quotes.
              " This was supposedly fixed in service pack 9, I'm running service
              pack 10 so what gives???
              b) Since this single qoute thing is not in the JSP spec if I keep it
              like this to get my tags working under my current setup and then we
              eventually migrate to weblogic 6x is there a risk all my tags will
              break?
              

  • My catalogues and tags are missing from my Organizer in Photoshop Elements 10? What is going on?

    My catalogues and tags are missing from my Organizer in Elements 10. What is going on?

    Thank you for the advice. I have a PC and the catalogs were for the most part where you said they would be, on the C drive under Program Data\Adobe\Elements Organizer\Catalogs. The last six months folder as well as a cruise I took in 2012 is missing but the rest seems to be there. Now I seem to have two Organizers-the one I just found and the one I created with my March 2013 trip pictures. How do I put them together and find them when I click on the Photoshop elements Organizer icon? You mentioned “pointing “ PSE to it in the default mode? How do I do that?
    TS

  • V9.0.1 TG4RDB & TG4RMS .pdf documents are broken

    The Transparent Gateway for Rdb and RMS .pdf files are broken. The link is located at;
    http://otn.oracle.com/docs/products/gateways/content2.html
    The files can be downloaded OK, but when the files are opened with the Acrobat reader,
    it reports fixing a broken file, then opens the file. However, all the pages are blank.
    The index is present, but there is no data!
    Have tried other .pdf files from this page, and they open OK.
    Please reply to [email protected]
    thanks, Andrew (Support Analyst)

    Same thing here with Keynote 4.01. Pictures will not display in Adobe Reader.
    Preview will display fine. Adobe Photoshop CS3 will also show the pictures correctly. In Adobe Reader 6.0 everything is there, except the pictures. This is true for "exported" PDF's as well as "print as PDF"'s.

  • Podcast explicit tags are not being recognized

    I'm using Squarespace as my website host, and have followed their instructions to insert the iTunes Explicit tag into our feed before submitting to the iTunes store. Unfortunately, after extensive testing with Squarespace support, the tags are being read properly in the XML feed, but each time I attempt to submit via iTunes, the Explicit tag is not recognized. Any help would be greatly appreciated.
    Here is a copy of the XML output (provided by Squarespace support)
    https://img.skitch.com/20120328-t5g175qa2mf3wr3t86ay7rtmwr.png

    1. Try resetting your SMC.
    Resetting the System Management Controller >>
    2. Your laser pickup could be dirty. You can buy a cleaner disc for that.
    3. It may be the media you're using, but it nothing is recognized, it may be hardware related.
    4. Run your hardware tester.
    5. Is your optical drive being recognized in your System Profiler?
    -Bmer
    Mac Owners Support Group - Join us @ MacOSG.com
      Mac611 Mobile Mac Support - about.Mac611.com
       iTunes:MacOSG Podcast | YouTube.MacOSG.com
                       An Apple User Group 
    Have an iPhone or iPod touch? Enter Mac611.com in Safari on it for 'mobile Mac support.'

  • Tags are not found when typing a keyword into the location bar

    Previously when I typed a tag into the address bar - tagged bookmarks would show up. Now very rarely does this happen and instead search engine search terms show up.
    To search for tags/keywords I now have to open the bookmarks and do a search in there. Very inconvenient... it suks big time. WTF happened?
    Thanks Joe

    I think I am on the way to an answer. I turned off ALL add-ons and tags are now showing up in adress bar searches.
    Thanks! :-)

  • Tags are not transferring over to other computer using same login

    I use two computers to access the same email account on Thunderbird. I have the same tags set up on both. For over a year now I have been able to tag an email on one computer and it will appear tagged on the other computer as well. However, just recently this has stopped happening. The tags I have applied on one computer no longer show up on the other computer. Any ideas on how to fix it?

    If you create a new folder with one message, then tag it, does the tag appear on the other computer? Since tags are stored in the folder index files, the non-working folders may have corrupted indexes (which might be fixed by right-clicking the folder, Properties, Repair Folder). Backup first in case the Repair function misbehaves.

  • E50 voice tags are not cteated

    Hello all
    I've got Nokia E50 and 360 contacts. My contacts name are written in Russian. When I copy the contacts from the memory card the first 100 contacts the voice tags are created only for first 100 numbers.
    I've installed the latest firmaware 07.36.0.0 - the same result. My friend has got the same phone and he reported no problem with voice tags. He has more than 100 contact and everyone has voice tags. We copied MY CONTACTS to HIS PHONE and HIS CONTACTS to my one. His contacts in my phone have voice tags, but my contacts in his phone - no.
    We analized our contacts and found the only difference - my contact's names are stored in russian, but his - in english. I converted all my contacts in english and now all my contacts have voice tags.
    But I want russian names! Why 100 russian contacts have voice tags, but other don't have?
    did anybody see smth like this?

    Thanks Mohjo,
    Your reply is much appreciated.
    I did do several searches but not for SIND or N series phones. didn't know it was called that.
    Anyhow, I understand what it does but still think its rubish
    What was wrong with the old 'record your own voice tag' system?
    OWI!, Nokia!, NO!. If it ant' broke, don't fix it!.
    I now the the task of going through all my contacts to check if the voice tag the phone wants to use is ANYTHING like the one I want to use.
    It's taken the edge of showing off my new phone to me mates and saying look what mine does. And yes I am shallow.
    And its only costing me £20 a month.
    Dave
    EDIT: removed expletive.Message Edited by mohjo on 16-Feb-2007
    09:59 AM

Maybe you are looking for

  • How do I stop Launchd from opening so many other processes?

    My computer has been running slow for some time even with without any applications open. On a whim, I created a new login account and it runs lickety split. I compared the Activity Monitor of both accounts and the old account is running 40 other proc

  • SOS-- run_product

    Hi I am trying to invoke a report from a form module using "run_product" command. THe report and form are not in the same directory. How can I hard code the path instead of declaring the path directly in "run_product" command. Thank you! null

  • Page resizing as browser window changes sizes

    http://www.missginasschoolofdance.netau.net/ I am having problems with a few of the pages I created using a table. Schedule and Tuition pages if you resize the browser I would like the page to move with it. The other pages work fine. Thanks in advanc

  • HT1976 i have no data, its not a network problem please help

    My iphone keeps telling me I am not subscribed to a mobile network despite showing 3g and great reception. Network has been checked.

  • EMAIL Declined option

    Hi Experts, After Identifying and confirming the customer in IC CRM 2007, when customer is not wishing to give his E-mail id, i should able to disable the field by check mark E-mail declined.what are the option available for this particular requireme