Howto install Related Content component on UCM 11g

Hi,
I did install URM 11g to test the Related Content component.
Does the component also work with UCM 11g. Are there any special metafields required?
Another problem is that I can't build the Related Content component, cause it is not listed in the URM ComponentWizard.
Greetings
Bodhy

Hi Bodhy,
Yes it does work with UCM 11g
It is a little hidden but can be installed as follows
Admin Server > Component Manager
In the first paragraph click on the link to advanced component manager
THen on the this page find the text
"If you really wish to modify URM components from this page, please click _here_. " and click the link
You should now find that the RelatedContent component can be enabled just for UCM.
Please mark this one as answered (if it works of course) as it may well be useful to other people looking for this hidden feature!
Tim

Similar Messages

  • How to use RelatedContent component with UCM 11g without Records Management

    As the subject really...
    I have been playing around with UCM 11g and want to use the RelatedContent component in isolation of URM / Records management.
    Can I still do this, and is it supported.
    I have had a look at advanced component manager and also the RMFC page but if I select a custom install with only related content I get a whole bunch of RM related stuff in the interface that I do not need.
    Any suggestions? Is the old RelatedContent component supported directly on 11g?
    Thanks
    Tim
    Edited by: Tim Snell on 24-Aug-2010 08:16

    Hi,
    First this post is really helpful as I was looking around for enabling related content component in ucm11g.
    Now i am able to see it in my enabled component lists.
    However , i have one doubt. I have enabled the component and restarted the server. After that if i got the checkin page, i can see only 'wwxRelatedContentTriggerDate' metadata for the related content. My assumption was when I enable the component, i will get a metadata on the content check in page to link to the other content items.
    So can you please help me
    1) to help whether my understanding is correct?
    2) if yes, why am i not getting the metadata to specify the other contents is not shown? what I need to do for the same?
    Thanks a lot in advance
    Regards
    Poornima

  • How a custom component is called when we install a custom component in UCM.

    How a custom component is called when we install a custom component in UCM.
    On what event the component services will be activated and called.
    Suppose i create a Custom service name MULTIPLECHECKIN then this service will be called on what event and where it will be defined to call.

    Saurabh,
    the code is packed in the component (see component\Security Filter\java\Security Filter\ModifyAttributesFilter.java - the first Security Filter is the component name, the other Security Filter is the Java package name).
    What is important:
    - your class must implement the FilterImplementor interface (you will need UCM standard classes - server.zip in your classpath) and its doFilter method
    How the filter is executed?
    - actually, in this case you don't need any new service - you can use the standard 'hook', which is provided by standard checkin services
    - in Component Wizard create a new component, add your compiled class to it (make sure you follow the rules not to end up in classpath issues)
    - in Component Wizard click the 'Java Code' tab. Here you can add a Custom filter called validateCheckinData, which is executed by standard checkin services. If you parametrize the filter to call your class created above, you are done.
    'Working with Content Components' manual (e.g. here: http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/developer/using_components_10en.pdf) can give you a basic picture. A better resource is Bex Huff's book - I would recommend you to get it, because it has a step-by-step HelloWorld example which can guide you through Component Wizard. I could also send you my own component (send me an email at [email protected]) which implements a filter for user quotas, so you just need to "replace classes".
    As for the other half of your task, searching for the file in the database server will work only if you use database as your storage (ie. install and configure File Store Provider component accordingly). Of course, you could do a search for file in this case - just consider that you will be comparing two BLOBs rather than two relatively short check-sums (most likely strings or arrays of bytes). Besides, it will not work if you use filesystem as your storage.
    Jiri

  • Unable to create content properly in UCM 11G using validateStandard filter

    Hi All,
        We have used validateStandard filter to assign content id with 16 digits in UCM 10G and it worked well, we deployed this component in UCM 11G but it is not working properly. When we click on Check In button content is getting created and displaying  Check_In Confirmation with 16 digit Content ID, upon clicking on Content Info it is displaying the complete info page. When we try to search the content it is not displaying in search results, also when tried to export it using Archiver it is not creating batch file. When we see logs in View Server out put it is displaying
    Unable to lock content with dDocName: 6322932684534064
    File to be removed: D:/oracle/ucm/cs/oracle/ucm/cs/vault/~temp/6322932684534064_meta.htm
    Below is the code and its corresponding log after check In is performed
    trace("=====Set 16 digit random number as ContentId=====");
                 String contId = databinder.getLocal("dDocName");
                 trace("=====value of contId====="+ contId);
            if("".equals(contId))
            //trace("=====Inside ContentId generetion=====");
            int maxdigits = 16;
            StringBuilder result = new StringBuilder();
            Random r = new Random();
            for (int i = 0; i<maxdigits; i++)
            result.append(r.nextInt(10));
            databinder.putLocal("dDocName", result.toString());
            trace("=====Generated ContentId is====="+ result.toString());
    View Server O/P:
    =====Set 16 digit random number as ContentId=====
    =====value of contId=====001885
    =====Generated ContentId is=====6322932684534064
    >(internal)/6 07.08 15:09:28.273 IdcServer-968 Unable to lock content with dDocName: 6322932684534064
    >(internal)/6 07.08 15:09:29.476 IdcServer-968 File to be removed: D:/oracle/ucm/cs/oracle/ucm/cs/vault/~temp/6322932684534064_meta.htm
    Thanks,
    Ashok

    Its a bug. References BUG:16231709 - OBIA7964:ERROR WHILE CREATING DATA WAREHOUSE TABLES USING DAC 11G
    So far the workaround is to use one Container Name at a time when creating the Warehouse.
    If helps mark and update back

  • Content categorizer engine, UCM 11g: ClassCastException.

    Hi!
    I try to register a categorizer engine in Content Categorizer in UCM 11g, on Linux.
    My Extractor Class — SccMyTaxonomyExtractor extends SccTaxonomyExtractor.
    When i try to build query tree, and click Content Categorizer Administration -> Query Trees -> Build Query Tree -> Overwrite contents of Taxonomy Cache, i get ClassCastException: SccAMyTaxonomyExtractor cannot be cast to contentcategorizer.SccTaxonomyExtractor.
    Why?
    I build my classes using contentcategorizer.SccTaxonomyExtractor from sccserver.jar (this .jar i get from UCM), with jdk 1.5, and jdk 1.6. Each time i get this exception.
    Can anyone comment this?
    Thanks for your thoughts of my question :)

    According to the documentation ( http://docs.oracle.com/cd/E21043_01/doc.1111/e10797/c04_finding_files.htm#g1300865 and particularly http://docs.oracle.com/cd/E21043_01/doc.1111/e10797/c04_finding_files.htm#CJAEAHED ) only asterisks and question marks are used as wildcards for metadata search fields. No information about underscores - (according to this: http://docs.oracle.com/cd/F49540_01/DOC/inter.815/a67843/cqspcl.htm they are wildcards for Text queries in Oracle DB)
    However, Kyle in his article https://blogs.oracle.com/kyle/entry/site_studio_naming_best_practi recommends not to use underscores for Site_ID as it "causes numerous issues", so you'll be on a safe side to get rid of them.

  • Related Content component not working

    I have this component in the list of Enabled components on my Oracle CMS, but I am not able to execute this service.
    I don't see any related content links information in the doc info page.
    Should I try to disable and enable the component or completely reinstall it.
    If I do reinstall it , would the content that are related to each other still retain their associations?

    Hi Jason,
    Yes the FXP file worked. There is something about my project that Flex doesn't like.
    I do not get any errors like those described in the bug. It just doesn't do anything when you type the dot.
    I do have a library from a loaded swf, but it all works. I also described my project to have two component directories. Please see previous post.
    Could this be the problem?
    And, could you please tell me how to find my "workspace" directory.
    And, one more thing...
    Could you please let me know how to "try a clean workspace". I'm tempted to merely delete the project, leaving the files, then re-import.
    Thanks,
    Shannon

  • Unable to create content properly in UCM 11G

    Hi All,
       We are generating content ID's using Profile Rule activation condition -> Side Effects, below is the sample script we used in rule
    <$dDocName="LIT_DOC_"&strGenerateRandom(8)&".PDF"$>
    In 10G we are able to create contents properly using this as well as through component making use of validateStandard filter, but in 11G this is not behaving properly. When content is created is it showing content got created but it is nowhere available for search.
    Please help us to get this worked in 11G. Let us know if we need to make any configuration changes for this to work. Appreciate your help on this. Thank you
    Thanks,
    Ashok

    Hi All,
       We are generating content ID's using Profile Rule activation condition -> Side Effects, below is the sample script we used in rule
    <$dDocName="LIT_DOC_"&strGenerateRandom(8)&".PDF"$>
    In 10G we are able to create contents properly using this as well as through component making use of validateStandard filter, but in 11G this is not behaving properly. When content is created is it showing content got created but it is nowhere available for search.
    Please help us to get this worked in 11G. Let us know if we need to make any configuration changes for this to work. Appreciate your help on this. Thank you
    Thanks,
    Ashok

  • Workflow: content = 1meg? UCM 11g

    I want to create a workflow to notify approvers if an image being checked in is bigger than 1 meg. What is the best way to accomplish this?
    -I know there is a variable called dFileSize that stores the size of the file in kb, but this field is not an option in my criteria definition field selection.

    you can further define the entry criteria in the workflow step so something like
    <$if dFileSize > 100000 $>
    jump to notify user step (see the idoc Wf functions in the idocscript guide and the workflow admin guide for details)
    <$else$>
    go to approval step or exit
    <$endif$>
    you workflow steps may look like this
    entrystep (everthing goes in in that needs evaluation)
    notify users of size (with 0 approvers required, therefore users get the email but it exits by itself
    approval
    Alternatively you can modify the workflow email template to provide the dFileSize information in the field.

  • Related Content UCM 11g limitation?

    Hello,
    I'm trying to create lots of relations to a content, using the "Related Content" UCM 11g component. But it seems we have a "sad" limitation: it populated a memo field at metadata table with 2000 size!
    How To Link More Than 200 Content Items when Using Related Content Component. [ID 1070481.1] - is this wrong?
    MaxResults=10000 (config.cfg)
    Event generated by user 'admin' at host 'CIS'. Unable to execute service ADD_RELATED_CONTENT and function addRelatedContent.
    Unable to execute query 'UrelatedContentDocMeta(Update/*+ INDEX (DocMeta PK_DocMeta)*/ DocMeta set xRelatedContentList='CS:7:1:DAMQ293073:1,.....DAMQ294642:1,CS:7:1:DAMQ294643:1,CS:7:1:DAMQ294644:1,CS:7:1:DAMQ294645:1' where dID=294344)'. ORA-12899: value too large for column "QUA_OCS"."DOCMETA"."XRELATEDCONTENTLIST" (actual: 2019, maximum: 2000)
    java.sql.SQLException: ORA-12899: value too large for column "QUA_OCS"."DOCMETA"."XRELATEDCONTENTLIST" (actual: 2019, maximum: 2000). [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,admin,CIS!$!csServiceDataException,ADD_RELATED_CONTENT,addRelatedContent!$!csDbUnableToExecuteQuery,UrelatedContentDocMeta(Update/*+ INDEX (DocMeta PK_DocMeta)*/ DocMeta set xRelatedContentList='CS:7:1:DAMQ293073:1\,CS:7:1:DAMQ294111:1\,.....CS:7:1:DAMQ294641:1\,CS:7:1:DAMQ294642:1\,CS:7:1:DAMQ294643:1\,CS:7:1:DAMQ294644:1\,CS:7:1:DAMQ294645:1' where dID=294344)!$ORA-12899: value too large for column "QUA_OCS"."DOCMETA"."XRELATEDCONTENTLIST" (actual: 2019\, maximum: 2000)<br>!syJavaExceptionWrapper,java.sql.SQLException: ORA-12899: value too large for column "QUA_OCS"."DOCMETA"."XRELATEDCONTENTLIST" (actual: 2019\, maximum: 2000)<br>
    intradoc.common.ServiceException: !csServiceDataException,ADD_RELATED_CONTENT,addRelatedContent!$
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2071)
    at intradoc.server.Service.buildServiceException(Service.java:2207)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2201)
    at intradoc.server.Service.createServiceException(Service.java:2196)
    at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1736)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1691)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1439)
    at intradoc.server.Service.doActions(Service.java:471)
    at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1305)
    at intradoc.server.Service.executeSubServiceCode(Service.java:3813)
    at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1185)
    at intradoc.server.Service.executeServiceEx(Service.java:3808)
    at intradoc.server.Service.executeService(Service.java:3792)
    at intradoc.server.Service.doSubService(Service.java:3707)
    at sun.reflect.GeneratedMethodAccessor410.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
    at intradoc.server.Service.doCodeEx(Service.java:549)
    at intradoc.server.Service.doCode(Service.java:504)
    Any work-arround?
    Thanks in advance.
    Regards,
    Pedro Senos

    You can pretty much do anything with metadata, but depending on how many "N" relations are can reach limits in HTML or query strings, or Javascript for Dropdown lists or DB tables.
    So planning for maximum use is needed.
    If you create a metadata field xRelationToSite and put a drop down list with the list of web sites or sections you want to relate content to, then each content can be set to relate to one or many sites.
    Then a new field could be created like xRelationToFolder and you can link content to different folders so that one file is outside of folders but you can make a Virtual relation to 10 or whatever folders instead of copying the same file into 10 folders.
    Or you can relate content to each other by setting a metadata field xRelate to one value for all related files. xRelate is a free text field and you can put any value in there. Then you can check in any number of files and specify any text string in xRelate and bing bang boom they are all related.
    That is the 1 to many relation with one value being related to multiple files via that one metadata field value. You display the list by doing something like a Library folder query to simulate a folder. (Weblayout Editor)
    Then you could create a new page and or a new query in the Library page with a query that uses an AND or an OR operator (or create your own customizations if you don't like the library pages) to take the relationship to a N to N or many to many relation.
    Since this is all metadata it is not so hard code limited like other options that are maybe "easier" like the Related Content Component but it is more robust since it is conceptually simpler.

  • !csComponentDataNotFound, when enabling a custom compoent in UCM 11g.

    Hi,
    I am seeing following exception when enabling custom component in UCM 11g (through component manager). Any pointers on what could be the issue.
    intradoc.common.ServiceException: !csComponentDataNotFound, DV_Eloqua
    After enabling when i restart the server, i don't see this exception again and in the component manager the component looks enabled.
    Logs are not clear on what is causing this. Can i Ignore this?
    Thanks in advance,
    Seshan K.

    Hi,
    I see this issue with install of all the custom components. The exception I pasted in previous post was just one of the many.
    To give you some back ground,
    This was done as part of migration effort from UCM 10gR3 to UCM 11g.
    There custom components were developed for UCM 10gR3, we have updated the code to use RIDC and  as part of migration to 11g.
    Custom components were then installed to 11g using component manager.
    This issue is not see in of the component installed, even that component was migrated from 10gR3.
    Thanks and Regards,
    Seshan K.

  • Collaboration Manager in UCM 11g

    Hi,
    I am not able to find the Collaboration Manager component for UCM 11g. However when I Installed the Collaboration manager component available with 10gR3, my UI was distorted in 11g instance. All the Images destroyed. I want to use Collaboration manager on 11g, Any ideas, kindly advise.
    Regards,
    Bharat

    Hi
    CollabManager is no more available for UCM 11g onwards . The 10g component will not be compatible with 11g ucm and thats the reason why you are seeing all the images distorted and not right. I guess you should take a look at Frameworks Folder which looks like it will be able to offer the same (not tested yet by me) features as available with Collab Manager .
    Thanks
    Srinath

  • How to add a related content for a particular document in UCM

    Hi All
    How to add a related content for a particular document in UCM. On which table it stores all the related document details. Can anyone suggest me a document which helps me to know how to add related contents for a document
    With thanks and regards
    Anoop

    I believe there is a PDF doc which comes with the component (it should be at your harddrive when you install it), which describes everything you will need.
    In a nutshell, there are two types of relationship: sibling - sibling, parent - child (there are some more nuances, but it follows the same logic).
    A relationship is created between two existing items (not sure, if you can also create a relationship for a new checked in item, but it would be just a usability). You select the type of relationship and the item - I believe depending on the relationship you may start from either item. The dialog to start is INFO (display metadata) or UPDATE (update metadata).
    When a relationship is created you may watch it also from either end (again INFO is the starting point).
    It is quite self-explanatory, so if you have the component installed you may just play around with it for a while and that is it.

  • Component Wizard is missing in UCM 11g

    Hi all,
    I'm running UCM 11g on Windows Server 2008 R2 Datacenter and I noticed that Component Wizard isn't installed neither in DomainHome nor anywhere else.
    Search in Windows Start Menu also doesn't bring any results.
    Is there any way to install it separately in existing domain or ECM Home?

    I actually found the Component Tool, but in:
    C:\Oracle\Middleware\Oracle_ECM1\ucm\idc\bin
    (this has ComponentTool.exe idcCommEnv.cmd, IdcShell.exe, Installer,exe, and a blank (pretty much) intradoc.cfg )
    NOT in the ...ucm/cs/bin dir.
    Of course when I run that, it fails with a !csIdcNameMissing which makes sense considering that is NOT where the UCM 11g server is and the intradoc.cfg isn;t configured.
    ANY ideas how this stuff got installed in different locations from the Standard??

  • Content migration Stellent 7.5 to UCM 11g | Facing trouble

    Hi All,
    We are upgrading from Stellent 7.5 to UCM 11g. Stellent 7.5 is on windows 2003 with SQL 2005 database, and UCM 11g is on Linux RHEL 5.6 with Oracle 11g database.
    We are using archiver to migrate contents from Stellent to UCM. The import batch program is successfully executing. Below is the process we follow to migrate the contents which are in workflow.
    1- Moved folders for migrating user workflow history and states of workflows
         <stellent idc root>\data\workflow to <ucm root>\data\workflow
         <stellent idc root>\data\user\profiles to <ucm root>\data\user\profiles
    2- Migrated table data
         - truncating table data, the tables are : Revisions, DocMeta, Documents, DocumentHistory and RevClasses etc
         - Migrating data of these tables from MSSQL to Oracle so that workflow state, document checkout states are also preserved
         - wf_in_queue stores did of content therefore old did (of 7.5) needs to be preserved to show documents lying in user's queue
         - As well as there are some custom tables which are dependent on did.
    Now the problem is, the native url of the link is pointing to new did.extention which was generated while content import through archiver. And if we migrate the table data as mentioned above the native url shows the old did.xls but this file doesnot exists in the file system.
    Is there any who also faced the same situation?
    Or is there a better way of migrating contents from 7.5 to 11g.
    Thanks,
    Rajiv

    There is no supported direct migration path from 7.5 to 11g. The supported migration path is to upgrade the 7.5 instance to 10g, then upgrade the 10g instance to 11g.
    I think Tim says it best here.
    Changing the UCM Database

  • How to determine a Bidirectional relation when add a related Content in UCM

    Good Day All,
    i want to use "ADD_RELATED_CONTENT" service that are defined within the LinkManager Component.
    i use the following parameters in my code and it works fine
    request.putLocal("IdcService", "ADD_RELATED_CONTENT");
    request.putLocal("dLinkTypeID", "4");
    request.putLocal("dSource", "CS");
    request.putLocal("dID", "16162");
    request.putLocal("addLinkID", dId);
    what i want to do:
    - add a related content of type Cross-Reference Class (dLinkTypeID=4) with Bidirection relation not unidirection. The above code add a content as a unidirection relation.
    is there is any specific parameter that i need to specify in order to determine the Bidirectional relation?
    Regards.

    actually am working on related content services; handle them thourgh (JAVA + RIDC).My general recommendation is: turn on server-wide tracing on requestaudit (or perhaps sometimes even services) - see http://docs.oracle.com/cd/E23943_01/doc.1111/e10792/c03_processes.htm#CSMSP535 how to do that, perform the scenario from GUI, and check what's being called. Often, you will find your answer there.

Maybe you are looking for

  • How to execute report in Background from Dialog process?

    How, or what is the best way, to lauch an executable program (report) into the background from a dialog program (dynpro)? <b>Example:</b>  The SUBMIT...AND RETURN still executes the called program before it returns control to the calling program.  I

  • Adobe Illustrator Crashing/Updating

    Hey, i just bought CC and downloaded all my softwares, they are all freshly updated. When i try to open Illustrator, it just crashes on splash screen. It happend once yesterday, so i reinstalled it and it worked for some hours. Also, it keeps asking

  • How can I do to open a PDF hyperlink in my Standard Browser?

    Hi folks! I've created my resumé using InDesign CS5 7.0. I saved as a Interactive PDF, and include a button with a hyperlink to my online portfolio. I would like to know if there is a way to open this hyperlink in my standard browser automatically, s

  • How to make my Execute Immediate statement to work??

    Hi, Sir: I use SQL Oracle 9i, I have following procedure called by a trigger: CREATE OR REPLACE PROCEDURE emps_check IS s_sql VARCHAR2(500); BEGIN DBMS_OUTPUT.PUT_LINE('1. Start to Delete all rows in the emps' ); delete from emps; DBMS_OUTPUT.PUT_LIN

  • MGM-HD Channel 744 sound no pic

    I have Verizon Fios here in Garland, Texas.  Recently, I wanted to watch some shows on the MGM-HD channel, which is part of my TV plan.   I get sound real good, but only see a blank screen.  Have not found this problem on the other channels.    Does