Add columns to Webcenter (document manager)

Hello,
I am using JDeveloper 11.1.1.6. I'm wondering if we can add columns to the document manager task flow in Webcenter. It shows the name, size, and date modified. Can we modify the view to add more details? I've read that there are more columns available such as description, modified by, etc.. I located the task-flow containing the table in the folder viewer, but i can't seem to modify anything in it. And the columns doesn't show when i run the application. Is it possible to modify these columns?
Thanks,
Mohamed

Have a read at the following Oracle Support note:
Support for Presenting Additional Content Metadata in Document Explorer View Task Flow [ID 1480966.1]

Similar Messages

  • When add a people picker (user column) in Word document (Template) and try to add a name it stuck!

    When add a people picker (user column) in Word document (un the document Template) and try to add a name it stuck!
    Is it a known issue?
    keren tsur

    Hi,
    According to your description, I have tested in my environment and I  have the same behavior.
    Only if you type the wrong name in the first time, then you click the phone book to search the right name and save, it will stuck. It means if you do other operation(e.g. type the wrong name then click “resolve” button, then search in the phone book) and
    repeat the operation above, it won’t stuck.
    It is appreciate that you can submit a feedback to Microsoft:
    https://connect.microsoft.com/
    Thanks,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How do i add partial columns to a document

    how do i add partial columns to a document with out changing the other part of the document

    You can insert layout breaks to change the number of columns throughout your document. This screenshot is from a newsletter I did in Pages 1/iWork '05, but this function is unchanged.
    You should change your profile information that appears at the bottom of your posts. Mac OS 9 hasn't been a current OS for over 10 years & there is no way to run Pages on it. If you're not sure what version of Mac OS you're using, click the  in the upper left of your menu bar & choose About This Mac.

  • How do I add columns to document in pages?

    I am trying to figure out how to add a section of columns to my document - whenever I try, the whole documents turns into columns.  Please help!

    Hi Tammy,
    Pages has the ability to isolate portions of the document for the purpose of changing the layout. Insert > Layout Break above the region where you want to change the numbers of columns, and again below that region. Then when you make your changes between the Layout Breaks the change won't spread to the rest of the section. You can also isolate the format by inserting a Section Break. The only difference is that a Layout Break operates within a Section.
    Jerry

  • Link between table EKKO-EBELN and DMS - Document Management System

    Hi to all,
    I wanted to know the form to connect or link the Document Info Record (inside "Define Object Link") to object DRAW (DMS) with table EKKO-EBELN (order head). In standard form it is possible to do it with EKPO (Purchase order item) This is in transaction DC10 Define Object Link.
    Thanks!
    Greetings
    Martin

    Hi Martin,
    Within table DRAD you can see all linked objects to a specific document info record (DIR).
    To be able to link objects to DIRs you have to maintain the correct objects in customizing.
    First of it is necessary to maintain the correct screen numbers for all needed objects within the customizing. Therefore go to transaction SPRO and select
    Cross-Application Components
    > Document Management
    > Control Data
    > Maintain Screen for Object Link
    Here you can enter all needed SAP objects with the name and
    the related screen number. If you do not know the object or the screen number you can display a list of all SAP standard objects in transaction SE80 under function group CV130 ("Screens").
    So for material master you maintain the following entry:
    SAP object Screen Description Auth.
    MARA 201 material master 1
    Please note that the system automatically adds the leading "1" which is displayed in function group CV130 under
    "Screens". So for object MARA you just have to enter 201 instead of 1201.
    The value "1" in the column "Auth." is necessary to grant that always the latest dynpros and authorizations were used when linking this object to an document info record. This will avoid different problems by displaying linked documents from the object side.
    The next step is to decide which objects should be used in the different document types. Therefore please go to transaction DC10 and choose the relevant document type. Afterwards please select "Define object links". Here you can
    add all needed objects only by entering the object. The correct screen number is taken automatically. Also note the blue information buttons in the upper right corner which contain further necessary information about the possible settings of the current screen.
    After doing these settings in customizing you should be able to link the maintained objects to document info records and oppositely by using the DMS transaction CV02N (tab "object links") or the object related transactions.
    Important notes regarding the object link functionalities are:
    Note 880077: Performance problem using object links
    Note 885977: Extension to note 867241 on object links
    Note 926060: Extension of note 885977 for object link Purchase Order
    Note 960202: Object Links Deleted While Adding New Objects
    Note 1002648: Wrong behavior while using RFC_CHANGE_DOCUMENT_MASTER

  • 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

  • Out-of-the-box document management

    Is there a framework set-up in Webcenter to have a document management lifecycle integrated within webcenter?
    These documents would be fed to a bpel process to enable automatic dossier management and would enable dossier managers to update documents, add content to these documents, generate different formats of these documents, ...
    We would lik to keep the technology stacks' footprint as small as possible regarding this document management and that's why I was wondering if there's an out-of-the-box solution available in webcenter.
    The end-user should be able to administer and manage the different electronic documents that are managed in his electronic dossier.
    We're already integrating with documentum as our documents base but the end-user approach to manage the content of these documents should be enabled through a user interface.
    Kind regards,
    Nathalie

    Hi Nathalie,
    Most of this functionality needs to be implemented on the content management side, Documentum in your case.
    We do support Documentum as the content management system, here is the documentation.
    Hope this helps,
    Peter

  • 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>

  • How to remove or hide Name column while upload document in document library

    Hi All,
    In below print screen the first column Name* which always show when I'm going to upload the file which I don't want. It will be really help full if you provide some solution how to hide this column while uploading the document. Its really confusing the users
    when they are going to upload the document in document library.
    I already tested below steps. After clicking Document Content Type every column is clickable except "Name" column. 
    Go to Document Library settings -> Advance settings -> Allow management of content types -> check the box
    Now go back to Document Library settings -> Under content types -> click Document content type -> select the column -> Hide this column
    Every column is clickable except "Name" column so unable to resolve this issue. Please help.

    Hi,
    Thanks for posting your issue, Kindly browse the below URL to fix this issue
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/c7d0e0d5-084b-4d49-88fe-b411a70042bd/how-to-hide-the-name-column-in-the-document-library?forum=sharepointdevelopmentlegacy
    http://spstipsutilitypack.codeplex.com/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • 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

  • 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.

  • MMS Hidden columns appearing in Document Library Settings / Column list

    Hello all,
    Before you read this please be aware that I have found a resolution (that might be helpful to others) but I am wondering if anyone else has experienced the same thing and the cause.
    Our scenario is as follows:
    We use a Content Type hub
    Most Content Types include one or more Managed metadata columns
    The MMS Notes (hidden) columns (e.g. mms_column_name_0) have appeared on the 'Document Library Settings page under 'Columns' for 2 document libraries only. They appear under the actual name of the column (e.g. mms_column_name).
    They are NOT visible to the user however (i.e. they are not selectable to be used in a view)
    Looking at SharePoint Manager the mms Notes column's are marked as being Hidden = false. Altering this to true has the desired effect.
    But has anyone else experienced the same issue as I'm inquisitive as to the cause.
    The only thing I can think of that caused this to happen was us using 'Metadata navigation settings' (which allows you to configure navigation hierarchies) for the first time on one of the 2 Doc Libs effected . However, on testing it on other document
    libraries the unhiding of columns has not occurred.
    Can anyone shed any why this may have occurred?
    Jason

    Hi jasonl27,
    this behaviour:
    This is by design. Two separate lists do not have any type of relationship established to distinguish that the
    columns are the same. For example, take an arbitrary column called "Position" being created on two different custom lists. Because the column Position is a custom column created
    in the list, it has no mapping to other lists. The "Position"
    in one list could refer to a title of a person
    in one list, or a physical location on a different list. SharePoint cannot tell if these two items are the same or completely different. As a result, a new column name is added when we move the item.
    perhaps you may try to do these steps:
    $site = Get-SPSite -Identity "http://......../"
    $web = $site.RootWeb
    $field=$web.Fields["column name"]
    $field.Update($true)
    $field.Hidden= "True"
    $web.Dispose()
    $site.Dispose()
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • 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]

  • How to prevent editing a SharePoint site column value from document properties view of a downloaded document?

    Hi,
    We have created a SharePoint site column with below settings
    1. ShowInEditForm - False
    2. ShowInNewForm - False
    3. ShowInDisplayForm - True
    With the above definition, the site column showing only in view properties form not in New and Edit forms.  This column is added to a document library and updating this column value will be managed by event receiver code when a document is uploaded.
    Till this point, everything is working OK.
    But the issue is when we download and open a document from the above document library, under document properties the above column (with value) is visible along with other document default properties and  this column value is editable. With this issue,
    user is able to set a new value and overwrite the existing value by re-uploading the document.
    Could you please let me know how to handle this issue so that user should not be allowed to edit except viewing the value/property (read only)?
    Thanks in advance.
    Regards
    Ramesh

    You can set "ShowInFileDlg" property of field to "FALSE". Using this you will not see that field in document properties list

  • Easy Document Management crash when logon to the system

    Hello gurus.
    I have a problem with SAP Easy Document Management.
    I double-click on the icon of SAP Easy Document Management I get the SAP logon window, then enter the username and password and then click on "Access the system."
    It seems that explorer.exe is trying to connect when I get the following error message:
    Microsoft Visual C + + Runtime Library
    Runtime Error!
    Program C:\WINDOWS\explorer.exe
    This application has Requested the Runtime to terminate it in unusual way. Please contact the application's support team for more information.
    My system is Windows XP and the version of SAP Easy Document Management 7.0.6.1 (Unicode).
    Lots off thanks

    Hi,
    we have also the similar problem with Windows 7 and EasyDMS 7.1.4.2. The Explorer crashes the first time when you try to login after starting the PC. When you then restart the Explorer and try a second login it will be successful and EasyDMS works fine all day. If you restart the PC the Explorer crashes again when you try the first login.
    We have no crashes under Windows XP with EasyDMS 7.1.4.2 !
    The problem of this issue is found by SAP and the solution will be implemented in the upcoming EasyDMS 7.1 SP05.
    Meanwhile on our Windows 7 PCs following workaround is working for us and prevent us from the crash problem:
    We add on all Windows 7 PCs to the environment variable "Path" the entry ";C:\Program Files\SAP\EasyDmsInterface\Unicode".
    And there are no crashes anymore.
    I hope this will help you or others which have similar problems.
    Best regards
    Frank

Maybe you are looking for