Document manager  customization

Hi All,
I am using document manager to display some of the attachment which is stored in my folder located
at content server .
1. I just want to display my attachment in grid format instead of tree is it possible ?
2. Is it possible to display only upload and delete icon and disable rest of icon from document manager .
3. Is it possible to create a folder on content server from my api on performing certain action .
4. If i know the username(test1) and passwd (test2) has the acccess to CS .
Can i assign to a particular content manger to authorize at page load time ?
Thanks,
Arun.

Managed to finish the app.
Below you can find the code of the most important files:
First my UCM_TEST class. This class i have used to test the IDC API and to use as an upload and delete function.
The implementation is not realy clean. In normal environments you will have a controller taking care of the IdcContext and IdcClient instead of creating one every single call. As you can see.. it is fairly easy to create a connection and call the service
package services2;
import java.io.File;
import java.util.Iterator;
import oracle.stellent.ridc.IdcClient;
import oracle.stellent.ridc.IdcClientManager;
import oracle.stellent.ridc.IdcContext;
import oracle.stellent.ridc.model.DataBinder;
import oracle.stellent.ridc.model.DataObject;
import oracle.stellent.ridc.model.DataResultSet;
import oracle.stellent.ridc.protocol.ServiceResponse;
public class UCM_TEST {
    public UCM_TEST() {
        super();
    public static void upload(File f,String title,String name) {
      try
        IdcClientManager manager = new IdcClientManager();
        IdcClient idcClient = manager.createClient("idc://localhost:4444");
        IdcContext userContext = new IdcContext("weblogic", "weblogic1");
        // populate the binder with the parameters
        DataBinder binder = idcClient.createBinder();
        binder.putLocal ("IdcService", "CHECKIN_UNIVERSAL");
        // get the binder
        binder.putLocal ("dDocTitle", title);
        binder.putLocal ("dDocName", name);
        binder.putLocal ("dDocType", "Document");
        binder.putLocal ("dSecurityGroup", "Public");
        // add a file
        binder.addFile ("primaryFile",f);
        // checkin the file
        ServiceResponse response = idcClient.sendRequest (userContext, binder);
        DataBinder serverBinder = response.getResponseAsBinder ();
        binder = response.getResponseAsBinder ();
        Iterator it = binder.getResultSetNames().iterator();
        while(it.hasNext()) {
          System.out.println(it.next());
      catch(Exception e)
            e.printStackTrace();
    public static void deleteContent(String id,String name) {
      try
        IdcClientManager manager = new IdcClientManager();
        IdcClient idcClient = manager.createClient("idc://localhost:4444");
        IdcContext userContext = new IdcContext("weblogic", "weblogic1");
        // populate the binder with the parameters
        DataBinder binder = idcClient.createBinder();
        binder.putLocal ("IdcService", "DELETE_DOC");
        // get the binder
        binder.putLocal ("dID", id);
        binder.putLocal ("dDocName", name);
        ServiceResponse response = idcClient.sendRequest (userContext, binder);
        DataBinder serverBinder = response.getResponseAsBinder ();
        binder = response.getResponseAsBinder ();
        Iterator it = binder.getResultSetNames().iterator();
        while(it.hasNext()) {
          System.out.println(it.next());
      catch(Exception e)
            e.printStackTrace();
    public static  void main(String[] args)
      try
        IdcClientManager manager = new IdcClientManager();
        IdcClient idcClient = manager.createClient("idc://localhost:4444");
        IdcContext userContext = new IdcContext("weblogic", "weblogic1");
        // populate the binder with the parameters
        DataBinder binder = idcClient.createBinder();
        binder.putLocal ("IdcService", "CHECKIN_UNIVERSAL");
        // get the binder
        binder.putLocal ("dDocTitle", "Test File");
        binder.putLocal ("dDocName", "test-checkin-8");
        binder.putLocal ("dDocType", "Document");
        binder.putLocal ("dSecurityGroup", "Public");
        // add a file
        binder.addFile ("primaryFile", new File ("C:\\test\\test.txt"));
        // checkin the file
        ServiceResponse response = idcClient.sendRequest (userContext, binder);
        DataBinder serverBinder = response.getResponseAsBinder ();
        binder = response.getResponseAsBinder ();
        Iterator it = binder.getResultSetNames().iterator();
        while(it.hasNext()) {
          System.out.println(it.next());
      catch(Exception e)
            e.printStackTrace();
}I add a popup that shows when the user clicks the upload button in my JSPX:
<af:commandButton id="btnUpload" text="Upload" partialSubmit="true">
                  <af:showPopupBehavior triggerType="click" popupId="popUpload"/>
</af:commandButton>
<af:popup id="popUpload" contentDelivery="lazyUncached">
                <af:dialog id="dlgUpload" title="Upload document"
                           dialogListener="#{IndexBean.dialogListener}">
                  <af:panelFormLayout id="frmUpload">
                  <af:inputText id="txtName" label="Name" value="#{IndexBean.name}"/>
                    <af:inputText id="txtTitle" label="Title" value="#{IndexBean.title}"/>
                    <af:inputFile id="txtFile"  label="File" value="#{IndexBean.file}"/>
                  </af:panelFormLayout>
                </af:dialog>
              </af:popup>In my bean IndexBean i use the dialogListener to call the UCM_TEST class:
    public void dialogListener(DialogEvent dialogEvent)
        try
         if(dialogEvent.getOutcome() != DialogEvent.Outcome.no)
            System.out.println("File uploaded: " + file.getLength() + file.getFilename());
            File f = IsToFile(file.getInputStream(),file.getFilename());
            UCM_TEST.upload(f,title,name);
        catch(Exception e) {
          System.out.println("error uploading file: " + e.getMessage());
    private File IsToFile(InputStream is,String filename)
      try
        File f=new File(filename);
            OutputStream out=new FileOutputStream(f);
            byte buf[]=new byte[1024];
            int len;
            while((len=is.read(buf))>0)
            out.write(buf,0,len);
            out.close();
            return f;
      catch(Exception e) {
        System.out.println("Error in converting file: " + e.getMessage());
        return null;
    }You need to convert the inputStream of the UploadFile (this is the type you have from the af:inputFile value) to a regular java File object so we can add it to the UCM service. That's why you need the IsToFile function.
I haven't implemented the delete but it has been added to the UCM_TEST class so you only need to get the values of dId and dDocName and call the ucm_test method.
I will write a whitepaper about integrating UCM with webcenter and will discuss these techniques in a bit more detail with screenshots and so. In the whitepaper i will try to create a complete utility to use UCM and RIDC in webcenter application.
It can take a few days or a week to finish it but meanwhile you have the means to create whatever you want using the RIDC api :)
As you also might noticed is that you upload the document without a folder. If you want to store the document in a folder you will need to set the xCollectionID parameter but then you need to find out the collectionID. Therefore you will need to use the folder service to get the folderID from a folder name.
I will also include this in my whitepaper...
Hope this helps :)
Edit: these are the links to the documentation that comes in handy:
Use of RIDC API: http://download.oracle.com/docs/cd/E14571_01/doc.1111/e16819.pdf
Overview of available services and their parameters in UCM: http://download.oracle.com/docs/cd/E14571_01/doc.1111/e11011.pdf
The last one is very handy... It describes every single service available in UCM.
Edited by: Yannick Ongena on Oct 13, 2010 10:52 AM

Similar Messages

  • Document Manager Task Flow Customization

    Hi All,,
    I got following exception while customizing Document Manager Task Flow using jdeveloper customization role.
    i have added a input box in upload.jsff page
    Any one has some clue about this exception..........?
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    javax.faces.FacesException: javax.servlet.ServletException: OracleJSP error:
    oracle.jsp.parse.JspParseException: <br>/oracle/webcenter/doclib/view/jsf/taskflows/folderViewer/folderViewer.jsff: Line # 118, &lt;af:goMenuItem destination="#{doclib:toPortletURL(pageFlowScope.dlMain.singleSelection.downloadNativeFileURL)}" disabled="#{backingBeanScope.dlMnBk.actions.download.disabled}" icon="/adf/webcenter/filedownload_#{backingBeanScope.dlMnBk.actions.download.iconType}.png" id="dwnld_fm" rendered="#{backingBeanScope.dlMnBk.actions.download.rendered}" styleClass="WCDoclibButton" targetFrame="_blank" text="#{dlBndl.RENDITIONS_DOWNLOAD}" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"/&gt; <br>Error: Function doclib:toPortletURL has an invalid prefix or uses the default namespace which is not defined. Correct the prefix or in a jsp document, put the function inside a tag that defines the tag library namespace
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:415)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:469)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:140)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:179)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: javax.servlet.ServletException: OracleJSP error:

    Hi,
    I tried customizing Discussion service taskflow customization .Repeatedly restart Jdeveloper by switching between roles and I got work done. More than customizing in coding,try to edit in structure window , that shows a good result.
    Try it. Good luck.
    Regards,
    Dinesh Vishnu Kumar C.

  • How to show document title instead of file name in Document Manager

    In WebCenter Portal 11g PS5, there is the Document Manager task flow:
    http://docs.oracle.com/cd/E23943_01/webcenter.1111/e10149/content_doctf.htm#BABGAICC
    it displays a list of a Folder and its contents, much alike the output of the COLLECTION_DISPLAY service in the Content Server.
    I was wondering if there is a way (customization) to display the dDocTitle of content items (or particular content items) instead of the file name.
    While displaying the filename makes sense in a lot of cases we have a lot of Contributor Data Files that are saved as dDocName.xml which doesn't make much sense to the user viewing the folder they are stored in.

    This is now possible using a customization and additional command-line properties, see the following Support note:
    Support for Presenting Additional Content Metadata in Document Explorer View Task Flow [ID 1480966.1]

  • Link Invoice Document using Easy Document Management

    Hi All, is there any way to use Easy Document Management System to attach a scanned document like a PDF to an invoice document.
    If it is there, is it easy to customize?
    We are trying to evaluate different scanning solutions and trying to see if we can make DMS work without purchasing any other software.
    Thanks

    Wrong module. DMS is not designed for invoices. DMS is designed for documents that change and need versioning.
    ArchiveLink is the correct solution/module. This allows you to link incoming invoices directly to the object in SAP in MIRO and FB60.
    If its outgoing invoices, you can link them to sales orders. The document is stored in the GOS (generic object services) area of SAP and will appear in the attachment list. If you go to GOS you will see an option called "Store Business Document" which will be made available when you have configured this properly.
    There is no easy way to customise. You have to install a content server (See SAP HTTP content server) and then configure the document type and which object it will be linked to. You also have to configure the method of processing. I.e. early archiving, late archiving.
    It is possible to set this up using no external software except the SAP HTTP content server which is free with your SAP licensing.

  • Document Management System for Struts Project

    I am doing a J2EE project in struts, in which i need to implement document management system containing the following features :
    1. File Upload/Download
    2. File Sharing
    3. Giving Permissions to Files, etc
    Instead of building a DMS from the scratch I am looking for a open source DMS solution which I can customize as per my needs and implement in my project. Since my project is based on struts, I am looking for a struts based solution.
    Please tell me if there are any good open souce DMS like these.

    hi jitesh,
    now i am doing the same project which you have done with struts framework. please let me know the solutions for the project.
    please reply to my mail id = [email protected]
    thanks.
    nandha.

  • What Tools should i use in a Document Management Project ?

    Dear All,
    I'm developing a Document Management System (DMS) to store all kinds of documents (voice,video,scanned english/arabic documents, autocad,....) but still i don't know what tools should i use ( Oracle Files or OCM ) and are there also any other supporting tools in such project ?

    I need to know which tools could i use to develop my Document Management project :
    Oracle Files or Oracle Content Management API's .....
    is Oracle Files customizable ? and How ?

  • Order Document Management

    Hi All,
    Can anyone please tell me what is Order Document Management in SAP SCM ? Is it part of APO ?
    Thanks,
    Prabhat

    Hi Prabhat,
    Order document management (ODM) is a collection of individual functions that can administer documents within logistics. These documents (for example, purchase order, sales order, delivery) are also used within logistics to document individual goods movements. Within order document management, the structure of a document is split up according to components. You can thus use the components for the different documents. You can customize ODM settings under SCM Basis component of customizing screen.
      For further details please refer to the below link.
    http://help.sap.com/saphelp_scm40/helpdata/EN/c1/6feb513038494f921200f10f497487/content.htm
    Regards,
    Raghav

  • Error while triggering document manager taskflow in adf application?

    Hi Everyone,
    I am just following the below blog post.Andrejus Baranovskis's Blog: Oracle UCM 11g Remote Intradoc Client (RIDC) Integration with Oracle ADF 11g from this post same way ..
    In my adf application I have created one task-flow in which one jsff page to show case UI. below is my page structure.
    https://dl.dropboxusercontent.com/u/78609236/pagestuf.png
    its working fine if I have one folder for one employee.If I have sub-folders for Employe when I navigate to sub-folders of employee in document manager task-flow as a Explorer layout.
    again when I click in Emplyee from above table I am not able to trigger document manger with-respect to selected  row from table.
    I can see this error on UI https://dl.dropboxusercontent.com/u/78609236/error.png
    in log I can see this log. but not able to see reason for this Error.
    <UIXRegion> <_warn> Error processing viewId: /doclib-navigator/treeNav URI: /oracle/webcenter/doclib/view/jsf/taskflows/treeNav/treeNavigator.jsff actual-URI: /oracle/webcenter/doclib/view/jsf/taskflows/treeNav/treeNavigator.jsff.
    java.lang.IllegalStateException
        at oracle.webcenter.doclib.internal.view.FileExplorerTreeModel.enterContainer(FileExplorerTreeModel.java:169)...
    this is not complete trace.
    can any one please kindly help me on this issue.its quite urgent for me.
    Thanks
    Shankar

    Hi Alejandro,
    I can see the Error log while starting the WC_Spaces server.can you please see the log and give me some solution.
    <Feb 10, 2014 5:41:24 AM EST> <Warning> <oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter> <ADF_FACES-30163> <The application is running with the new window detect flag off. It is hi        ghly recommended that this flag be turned on to ensure proper functioning of your application whe        n new browser windows are launched. In web.xml set the context parameter oracle.adf.view.rich.new        WindowDetect.OPTIONS to 'on'.>
    <Feb 10, 2014 5:41:24 AM EST> <Warning> <oracle.help.common.xml.HelpXmlPullParser> <BEA-000000> <no more data available
    java.io.EOFException: no more data available
            at org.xmlpull.mxp1.MXParser.fillBuf(MXParser.java:2978)
            at org.xmlpull.mxp1.MXParser.more(MXParser.java:2985)
            at org.xmlpull.mxp1.MXParser.parseEntityRef(MXParser.java:2216)
            at org.xmlpull.mxp1.MXParser.nextImpl(MXParser.java:1319)
            at org.xmlpull.mxp1.MXParser.next(MXParser.java:1137)
            at oracle.help.common.xml.HelpXmlPullParser._processDocument(Unknown Source)
            at oracle.help.common.xml.HelpXmlPullParser.<init>(Unknown Source)
            at oracle.help.common.xml.ParserFactory.createParser(Unknown Source)
            at oracle.help.common.xml.ParserFactory.createParser(Unknown Source)
            at oracle.help.web.config.parser.OHWParser.getGlobalConfiguration(Unknown Source)
            at oracle.help.web.rich.core.RichOHWContext.createGlobalConfiguration(Unknown Source)
            at oracle.help.web.rich.OHWServlet.init(Unknown Source)
            at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
            at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
            at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
            at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
            at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1981)
            at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1955)
            at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
            at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
            at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
            at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
            at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
            at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
            at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.jva:247)
            at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
            at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
            at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
            at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
            at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
            at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
            at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
            at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
            at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
            at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
            at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
            at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:246)
            at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
            at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
            at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
            at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    <Feb 10, 2014 5:41:27 AM EST> <Notice> <Log Management> <BEA-170027> <The Server has establishedconnection with the Domain level Diagnostic Service successfully.>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 127.0.0.1:8888 for protocols iiop, t3, ldap, snmp, http.>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 0:0:0:0:0:0:0:1:8888 for protocols iiop, t3, ldap, snmp, http.>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listeningon 172.29.248.56:8888 for protocols iiop, t3, ldap, snmp, http.>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:20c:29ff:fefa:4d9c:8888 for protocols iiop, t3, ldap, snmp, http.>
    <Feb 10, 2014 5:41:28 AM EST> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "WC_Spaces" for domain "base_domain" running in Development Mode>
    <Feb 10, 2014 5:41:28 AM EST> <Warning> <Server> <BEA-002611> <Hostname "localhost", maps to multiple IP addresses: 127.0.0.1, 0:0:0:0:0:0:0:1>
    <Feb 10, 2014 5:41:29 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Feb 10, 2014 5:41:29 AM EST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>

  • Using the Document Manager Rich Text Editor

    I'm wondering whether there is a reasonable way we can use the Rich Text Editor (based on CKEditor) that is contained within the Document Manager task flow (primarily for editing Wiki pages) outside of the Document Manager itself? We have another type of content we need a Rich Text Editor for, but it would be great if we could use the inline image links, tables, links to documents in the content repository, etc.

    Have you consider use Site Studio + Content Presenter?
    http://docs.oracle.com/cd/E17904_01/webcenter.1111/e10149/content_cp.htm
    http://george.maggessy.com/2012/05/inline-editing-in-content-presenter-for_10.html
    []'s

  • Activating u00E1 former Window after calling a Document management picture

    Hi,
    in an ABAP programm I am calling function module CVAPI_DOC_VIEW2 which opens a new window where I can view a Document management picture for a given material number.
    My problem is, that the new called window is active and I have to use a mouse click to activate the first window to enter a new material number with a barcode reader.
    How can I activate the first window through ABAP without having to use a mouse click again ?
    Is there a function module or class available which I can call to activate the first window again?
    Below you find a short programm which calls the funtion module CVAPI_DOC_VIEW2.
    Thank you in advance for an answer.
    Regards
    Franz Grott
    Tel. 0172-6056850
    REPORT  zdummy02.
    SELECTION-SCREEN BEGIN OF SCREEN 9100.
    PARAMETERS: p_matnr TYPE matnr DEFAULT 'CH-6300' OBLIGATORY.
    SELECTION-SCREEN END OF SCREEN 9100.
    START-OF-SELECTION.
      TABLES: drad.
      DATA: lt_drad TYPE TABLE OF drad.
      CALL SCREEN 9100.
      SELECT * FROM drad INTO TABLE lt_drad
        WHERE dokob = 'MARA'
        AND   objky = p_matnr.
      LOOP AT lt_drad INTO drad.
        CALL FUNCTION 'CVAPI_DOC_VIEW2'
          EXPORTING
            pf_dokar       = drad-dokar
            pf_doknr       = drad-doknr
            pf_dokvr       = drad-dokvr
            pf_doktl       = drad-doktl
      PF_APPTP       = '1'
         EXCEPTIONS
           error          = 1
           OTHERS         = 2
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDLOOP.

    I've run into this issue in CP4 as well though I've never been sure why it happens. It looks like you're opening the swf through a browser to so, for want of a solution, the easiest workaround is the edit the html file.
    open it in a text editor such as Notepad.
    Five or six lines down you'll find the title element which defines the title as it will display in your browser titlebar:  <title>This text is the title that displays in your browser title bar</title>
    Just change the text the the title you want and save the html file.
    If you go with this solution, I suggest that when you are publishing the project again you deselect the option "Export HTML" in the publish wondow. Otherwise you will have to edit your html file each time you publish.
    Hope this helps.
    Niamh

  • DMS (document management) integrate document in product

    Hello,
    I want to integrate documents in my products (crm) in background. My documents are located in my server sap. ( so I have a URL of my document : file://server/folder/test.doc)
    I have found only one mean. I try to use DMS (document management service) programming interface with the FM
    1 - SDOK_LOIO_CREATE : I create a logical document
    2 - SDOK_PHIO_CREATE : I create a physical document
    but after..?
    when do I download my document? when do I create the link with my product?
    There is a documention here
    http://help.sap.com/saphelp_crm31/helpdata/fr/15/aea9375d79fb7de10000009b38f8cf/frameset.htm
    but it is not enough for me.
    Can you help me, please?
    Say me it's possible with DMS...
    an example of coding is helpfull..
    which FM uses..
    Many thanks in advance for anything help,
    Servane,
    nb: I have tried to use BDS services but it use only in foreground.

    no idea?

  • Document Management in GRC 10.0 Process Control 10.0

    Hi - Our Company is looking to implement GRC 10.0 Process Control 10.0. We have a bit of a challenge for which document management services to go with . Currently there is no integration between GRC 10.0 and OpenText or Sharepoint. I was wondering what solutions others have for Document Management in GRC 10.0
    Thanks

    Hi Sabita,
      Did you check this article on Content Life Cycle Mngt supports all SAP GRC products. Check the link for detailed article and I hope this would be right direction for your company to go.
    http://www.sdn.sap.com/irj/bpx/go/portal/prtroot/docs/library/uuid/e0431d8f-2298-2e10-5fb0-87840e285f4c
    warm regards,
    Asok Christian

  • Advance Search not working in Document Management Task Flow

    Hi,
    We are using Document management task flow to manage UCM content. The simple search works for us but the Advance search does not work. Does anyone know of any possible reason why this could happen. Any hint would be really appreciated.
    Thanks
    Salim

    Hi Srinath,
    Thanks for replying.
    So in my scenario when I try to search the content using the simple search which is present at the right hand top corner I get the search result properly. But when I try to search by clicking on the Advance link which gives me a option to search by Filename, Keywords and adding other filters, it always returns zero search results.
    Thanks
    Salim

  • Project Document Management for Primavera?

    Hi,
    I made some test with Oracle UCM trying to evaluate if it could be suitable to be used as a Document Management for Projects. My perception after these (short) tests is that UCM seems to be too generalist and too complex to be used in conjunction with Primavera Software: it seems to me that it could bring to an iceberg, being the out of water part quite smaller than the underwater architecture.
    I would know if there are some other opinions or guidelines to use UCM or some other Oracle Software with Primavera.
    Thanks
    Fabio D'Alfonso
    I update the post to add some other result. I configured the Content Repository (using JackRabbit) and the Workflow Repository; I saw that there is an option to configure the AutoVue to be accessed by P6 Web.
    I didn't find a way to configure the access to JR repository from the PM Client Application. The result is that the WP&Docs Documents are visible from P6 Web in another tab , near the documents in the repository while this repository files are not accessible (Am I right?) from the PM client application.
    In my honest opinion, getting access to the repository if still not possible, from the PM client should have an highest priority than enlarging options for P6 Web.
    Thanks
    Fabio D'Alfonso
    Edited by: Fabio D'Alfonso on Oct 11, 2009 11:17 PM

    repository documents are not currently available from the P6 client application.

  • Setting up a Document management system in SharePoint 2013

    Hello All,
    I have come across a scenario where Customer needs a Document management system for their organization.
    They want to keep the documents of different departments like sales, HR,Finace in corresponding folders and want to include a workflow for approval of the Documents. Also, Documents related to particular department can be modified or added by users in that
    department.
    I thought of creating a seperate site collection for this purpose & document libraries of each department, setting up the permission on document library level. Is this a correct approach?
    I am new to Enterprise content management system of sharepoint. Can anybody give me a guidance on this how to get started.
    Regards
    Vishnu
    dfd

    Creating separate site collection for each department will help you scale and grow better and easier to group SharePoint sites together.
    Refer to the following articles which will give you an idea about the plan you should do before building a Document management system 
    http://technet.microsoft.com/en-us/library/cc263267.aspx
    http://blogs.msdn.com/b/sgoodyear/archive/2009/07/25/determining-between-sharepoint-site-collections-and-sub-sites.aspx
    http://atinkerersnotebook.com/2013/10/02/creating-your-own-document-management-system-with-sharepoint/
    http://community.dynamics.com/ax/b/tinkerersnotebook/archive/2013/10/02/creating-your-own-document-management-system-with-sharepoint.aspx
    --Cheers

Maybe you are looking for

  • ITunes failing to run with an application error

    Hi All, I have been running iTunes on my DELL computer with absolutely no problems until just the other day I started up the program and got this unrecoverable error: Remote Speakers: iTunes.exe - Application Error The rest of the error message basic

  • Photo quality in Forms 10g

    Hi all, I am using Oracle 10g with Dev suite. I have scanned photos in tiff format and saved in the database as longrow field. when i fetch the photos in forms 5 the quality of the photo is good but when photos are fetched using Dev Suite it get dist

  • How to allow page visitors to download a whole photo album

    hi guys i think i have seen on mobile.me hosted websites an option to allow visitors to download a whole photo album as a zipped file. i would like to offer the same to my visitors but host my site not at mobile.me but a private hosting company. is t

  • System Preferences keeps freezing

    Last night I attempted to change my desktop picture and thought I'd scroll through my own photos to choose one. When I got one in particular, it obviously changed the picture, then I couldn't change it back again. All I got was the spinning beach bal

  • How do I enable sound alert for messages

    When I get a message it shows as a sient notification. Is there anyway to enable an Audi me alert