Categorizing a content after document CHECKIN.

Hi there!
I'd like to categorize a document programmaticaly, in other words, during a checkin event. I am aware I need the AddCCToNewCheckin.zip component installed in my webcontent server (version 11gR1-11.1.1.6.0-idcprod1-111219T111403 (Build:7.3.3.183)) to achieve this.
Based on that, I had some issues.
1- I downloaded the patch V17289-01 which contains CS10gR35UpdateBundle-20090707-11 zip file. Despite was supposed that the component would be stored in this update bundle, but in fact, it was not.
2- I've tried to find out where this component is available to download, but I simply can't find it!
Any help would be really regarded.
Thanks
José.

It is contained in this component zip (under the extras folder): http://jonathanhult.com/blog/2012/12/cs10gr35updatebundle-build-115/
Jonathan
http://jonathanhult.com

Similar Messages

  • After installing lion and updating to pages 4.1 cannot view my document content after I open the document.  Shows how many pages I have and how many words in word count, but no words...

    after installing lion and updating to pages 4.1 cannot view my document content after I open the document.  Shows how many pages I have and how many words in word count, but no words...

    Same problem. Tried reinstalling Pages. Didn't help. The behavior is like I am typing with a white font on a white background, but I am not.

  • No display of iview content after cache properties are set

    Hello,
    In an effort to improve the portal performance we activated the Iview Load Parameters(Cache level, validity, client side caching etc) and after that we are not seeing any content of the iview in the portal.
    Cache level - Shared
    Cache validity - 24 hrs
    client side caching - yes.
    All the views are pointing to KM folders.
    If we change the Cache level to none then iview content is visible.
    I have flushed the cache but it didnt work either.
    Do we have to set any other parameters to support caching Portal KM configuration or Visual adminstrator.
    Let me know how to display the content after the caching parameters are set for iview so as to improve the performance.
    Thanks,
    Praveen
    Let me know what

    Hi Praveen,
    Activating Caching on KM (Navigation, for example) "works", but makes no sense. I don't know on what SP level you are, but I just checked it on SP18:
    Take a Nav iView which points to - for example - /documents/xmlform. With your settings, if User A opens the iView and navigates to the subfolder "preview", and then UserB opens the iView, UserB immediately sees /documents/xmlform/preview, instead of the upper folder.
    So, on one hand it "works", on the other, in many cases you might have unexpected results on KM iViews.
    To improve KM performance, the first step always is to follow the performance guide: http://service.sap.com/~sapidb/011000358700004976172005E.PDF
    Hope it helps
    Detlev

  • Contents in Documents Folder Suddenly Empty

    I'm a single user and I found that today my contents in documents folder suddenly empty. I also noticed that my free space doesn't have any change (the documents folder contents contain of thousands SVG, Ai, EPS, PSD, PNG, JPG, files). Unfortunately I don't have time machine, I just bought this mac for about three months ago. This is so frustrating.
    I tried to:
    -check my trash bin, nothing found
    -search my files over spotlight and finder, nothing found
    -restart my mac, nothing happened
    -verify disk permissions, found one invalid permissions, fixed
    -verify disk, no problems found
    I tried another solutions:
    in terminal (ls -ael ~/Documents)
    ls -ael ~/Documents
    total 24
    drwx------+  8 riccotjhang  staff   272 Oct 15 17:13 .
    0: group:everyone deny delete
    drwxr-xr-x+ 37 riccotjhang  staff  1258 Oct 15 13:58 ..
    0: group:everyone deny delete
    drwxrwxrwx@  3 riccotjhang  staff   102 Apr  7  2012 .12SVF2G1IP1DCG
    -rw-r--r--@  1 riccotjhang  staff  6148 Oct 15 17:13 .DS_Store
    -rwxrwxrwx@  1 riccotjhang  staff     0 Jul  3 19:48 .localized
    drwxr-xr-x   3 riccotjhang  staff   102 Oct 11 20:36 Adobe
    drwxr-xr-x   2 riccotjhang  staff    68 Oct 12 23:18 Adobe Scripts
    drwx------   4 riccotjhang  staff   136 Oct 15 13:19 SeamlessPro
    squirtle:~ riccotjhang$
    Tried recover through diskdrill (both quick scan and deep scan)
    BUT NOTHING FOUND what's in my documents folder.
    What would cause the contents of my "documents" folder to suddenly disappear?
    Right now I'm scanning my Mac if there's any virus. I'll update soon if I found any.

    There is not malware involved. It's extremely unlikely that you would have any Mac malware, though the scan may well turn up some Windows malware attached to e-mail messages or something similar.
    As to what the problem is, that's hard to say. One possibility is that you have somehow accidentally moved them to a different folder. Since Spotlight does not search everywhere and could be handicapped if something is wrong with the search indices, try searching for one file whose name you know with certainty using EasyFind.
    Unfortunately, whatever may have happened, if those files can no longer be found on your hard drive and cannot be found by data recovery tools, they are gone for good since you don't have any backups.

  • I have several pdfs on my iPad in iBooks. My iPhone shows only the categories, none of the documents. How can I get my iPhone to also show the documents that are on my iPad?

    I have several pdfs on my iPad in iBooks. My iPhone shows only the categories, none of the documents. How can I get my iPhone to also show the documents that are on my iPad?

    You will need to connect your iPad to your computer's iTunes and do File > Devices > Transfer Purchases to copy them over to your computer (that will copy PDFs and epubs that are in the iBooks app, not just actual ibooks), and you can then sync them to your iPhone. Or you might be able to open each PDF in iBooks on your iPad and use the share icon to email them to yourself and then use 'open in' in the Mail app on your iPhone to copy them to its iBooks app (if the PDF is protected then you may not get the email option via the share icon).
    The Settings > iBooks > Sync Collections setting doesn't copy items between devices, it just means that it a bookor PDF is on both devices and you move it into a collection on one device then it will be moved into the same collection on the other device

  • How to get the file content after uploading file

    Hello everyone!
    I have a question. Anyone can provide an example code by jsp that getting the uploaded file content after user uploading a file?
    Your help is highly appreciated!!!

    My experience is you need to do it twice: first read it to a StringBuffer and readline. Then write the file to server. See the code below
    MultipartParser parser = new MultipartParser(request, 10000000);
    Part part = null;
    FilePart filePart = null;
    File uploadDir = new File("/Uploads/");
    if (!uploadDir.exists()) {
    uploadDir.mkdir();
    while(true){
         part = parser.readNextPart();
         if(part == null)
              break;
         if(part instanceof FilePart){
              filePart = (FilePart)part;
              filename = filePart.getFilePath();
              //You can do one of the following option. Here is read line to a buffer and display to screen
    //if (filename != null) {
              //Do not store the file to server machine.
    //long size = filePart.writeTo(uploadDir);
    // System.out.println("The number of bytes written is "+size);
              reader = new BufferedReader(new InputStreamReader(filePart.getInputStream()));          
              String newline=reader.readLine();
              if(newline!=null)     {     
              reconcileContent.append("<table border=\"1\"><tr><th>Destination ID</th><th>File ID</th><th>Rept Date</th><th>As of Date</th><th

  • Content type "Link to a Document" to content type Document SET

    Hello,
    Could you please assist.
    I have a customized document sets.
    I added the content type "Link to a Document” to content type Document SET.
    I uploaded several documents to each document set.  There are several identical documents in different document sets.
    How can I arrange for uploading just a link to the documents, but not the additional documents?
    In other words, how to arrange for convenience for users to download a link?
    I mean them not to enter
    http://server/files ,
    but a certain “dropdown” appeared, a kind of menu with a choice of downloaded documents.
    Suppose, I added to each file its own attribute link and this link. I want to present  in form of creation “Link to a Document”
    There are 2 forms of creation. The first one is where we point a link. The second one is where we point the attributes.
    For example:
    I have two document sets: Project 1 and Project 2.
    There are 2 documents “instruction.doc” and “invoice.xls” uploaded to Project 1.  Each document has a field – link (a link to this very document).
    I want to add a link to “invoice.xls” in Project 2.
    I want to do it in that way a user could choose a list of links from a dropdown menu.
    Thanks

    Lookup column is the attribute of file. Attribute can not be upload! . Did you try to use the content type of link to document? If yes, you can understand my question. I want to change uploaded.aspx ( link of document) and add lookup column to this form.
    Standart scenario: User create link to docunent. 1. Prees button start. 2. Input text link to upload.aspx form 3. Set attributes new. Aspx I want: 1. Press button. 2. User press dropdawn menu and choise neddeng link. 3. Set attributes Plese read my question
    again. Sorry for my not good english

  • 925685 - Approval process is not triggered after documents are added

    Hi there,
    I was wondering if anyone found already a solution for the following problem.
    According to SAP Note: 925685 - Approval process is not triggered after documents are added.
    Within our SAP application, we want to approve purchase orders for departments based upon the document total.
    I was very astonished that employees are able to add a PO which will not trigger an approval stage and after the document is added, they have the possibility to change the document and at the update moment no approval will be started even if the document meets the approval requirements.
    Therefore I really want the flexibility to give users the possibility to change their PO.
    Meanwhile, documents which are added under approval, are also locked for changes, although this is another question it is also pretty annoying!
    I hope anyone has already found a method or work around for the stated problems above.
    (We are using SAP 8.8 PL 20)
    Thanks in advance.
    Kind regards,
    Marcel

    Hi Kambadasan,
    Thank you for your reply
    I'm sorry but I know how the approval templates work and they are configured correctly, however as SAP also mentioned in their own Note, this is due to the lack of SBO that SAP has such behaviour.
    Hi Gordon,
    Thanks for your reply.
    Unfortunately I have not found the post you mentioned...
    I will post my issue alson on the topic you mentioned.
    Hopefully they found a solution or maybe version 8.81 will solve the problem.
    Thanks a lot!!
    Kind regards,
    Marcel

  • How do I recover a .app and its file contents after osx "click and hold" "hit x button" delete

    How do I recover a .app and its file contents after osx "click and hold" "hit x button" delete.
    Accidently deleted rapidweaver and all of its content and paid plugins with it. all contain in its package contents. how do i restore.  I tried using recovery software.

    It is possible that you inadvertently corrupted the file while doing the edit.
    But it could also be possible that you moved the file? For iMovie to see it, it should be in the Movies/iMovie Projects folder.

  • HT1386 every time I try to sync my phone and restore my content after I updated my iPhone, iTunes goes through the prompts and then says "cancelling sync" at step 5.  I cannot restore my apps or music!

    every time I try to sync my phone and restore my content after I updated my iPhone, iTunes goes through the prompts and then says "cancelling sync" at step 5.  I cannot restore my apps or music!

    when i try to sync my music which i have on my PC's itunes it will just not transfere on the phone. everything will sync [apps, videos, contacts] but the music will just not transfere.
    and when i try to download the music from the phone's itunes store it will say "Error. Tap again to retry".
    Thera are no more details i have! i have no idea why the songs will not sync and will not download!

  • Group setting height to size of content, after having it set explicitly

    Hi
    I have a group like:
    <Group id="test" height="100">
    <button height="200" />
    </Group>
    Can I get the group, to have the size of the content, after having set the height explicitly?
    Regards
    Martin Andersen

    It seems that the default is actually 0 as demonstrated in this sample:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   creationComplete="init()">
        <fx:Script>
            <![CDATA[
                import mx.core.UIComponent;
                import spark.components.Group;
                private function init():void {
                    trace((new UIComponent()).height); // prints 0
                    trace((new Group()).height); // prints 0
            ]]>
        </fx:Script>
    </s:Application>

  • Junk after document element

    "Junk after document element"—what does that error message mean.
    InCopy (.icml-file) size is 4 MB. We do some minimal text-corrections in InCopy and after check-in the .icml-file-size is 8 MB and the file is defect.
    No help from Adobe support available ! ?
    Thanks Andy

    add, where you want apex to stop generating code,
    apex_application.g_unrecoverable_error := true;example:
    htp.init;
    wwv_flow.g_page_text_generated := true;
    INV_INVOICES_BLOB_DISPLAY(p_image=>:REQUEST);
    apex_application.g_unrecoverable_error := true;had most problems when displaying pure XML, apex added junk in the end of file.

  • User Exit  with call up after document splitting in New GL.

    Hello,
    I am looking for a user exit which is called up after document splitting and before final posting to FI. We are implementing Ecc 6.0 and wish to change functional area on gl line item based on values in cost center.  However, this change/redetermination of functional area also needs to be done on documents which have been split.  Splitting is at profit center level.
    Regards
    Jayesh.

    Hi Gordon,
    Yes, by a little piece of ABAP.
    I have created a Z table and configured by co.code and document type. Add a little bit of code in the badi FAGL_3KEH_DEFPRCTR.
    Hope it helps.
    Thanks,
    Srini

  • Is there a way to uninstall Legacy and Compatibility Content after installing with Additional Content?

    Is there a way to uninstall Legacy and Compatibility Content after installing with Additional Content?

    Hey Antonio,
    That's a good suggestion, and it's something that we're already planning on addressing in the next release, probably via a service that you can use to view information about patches and notifications -- not only the ones that were known at the time that you installed, but also ones that might have come into existence since then.
    In case you're still looking for the link to that CVI 2009 notification, you can find it here.
    By the way, my world cup sympathies to you -- your guys were robbed.
    Luis

  • Substitute business area after document splitting or when creating document

    Hi experts,
    I have to do a substitution of business area after document spliting, but i saw in previous threads that it's not allowed by SAP to modify a document after spliting. So if i do this substitution when I create a document, for example in f-02 or fb01,is it possible? And how can I do? With user-exit or Badi?
    I have a specific table which contains all business areas which I should put into the document:
    BUKRS, GSBER
    CompA, BA 1
    CompB, BA 2
    CompC, BA 3
    Thank you for giving me some ideas.

    If each Company code has a different business area, why do you need to populate it in the first place?
    The definition of a business area is that is can cover a range of Company Codes, but not be directly linked to one. I would suggest your use for Business Area is wrong.
    You are right about changes after splitting, however I would check with an ABAP'er on this or OSS.
    Also, if you are saying Business Area is Company code dependent, then there should not be a problem as the Business Area posted to will be correct, as an accounting document can only be for a single Company Code.
    You should have your business are validation, or substituion prior to document splitting.
    Hope this helps, award points if useful.

Maybe you are looking for

  • Printing Header and Footer once in HTML and on all pages in RTF and PDF using one RDF

    Hi, I am using a single RDF to generate reports in HTML,PDF and RTF. For printing the header only on the first page I used the following trigger begin srw.get_page_num (page_num); IF upper(:P_FORMAT) = 'HTML' THEN if page_num = 1 then return(true); e

  • Photoshop CS5.1 will not save prefs

    Once quit, prefs are standard again. Even on admin account. PS is the only application of mastercollection with this issue. Reinstallation does not help. What is the solution? There is no plist file named com.adobe.Photoshop.12.1 in the prefs from sy

  • "Save as PDF" crashes the application

    Hello all, I used to be able to save documents as PDF's by going to Print > PDF > Save as PDF before running routine maintenance tasks using the latest version of Onyx. Here's what I've done: 1. I have all of my Apple software updates. 2. This is not

  • I can't find WB_RT_TIME_SRC

    Hello. I've a problem. I'm trying to insert into a time dimension using the source generated by OWB. But an error appears because I haven't got the table named wb_rt_time_src. The code is like: INSERT INTO "ME_FECHA" ( "DA_ACTUAL_DATE","DA_DAY_NAME",

  • Itunes was corrupted, downloaded it again all my content has disapperared

    i tunes was corrupted, had to download it again but all my content has disapperared, any ideas how to get it back?