Virtual Content Repository

I am new to content management, My requirement is to store the data in Repository and get that data through API and use it. I created the XML in the repository and able to search the meta data through API, now I want to get that data so that I can use it. Can some one let me know which API should I use to get the data or any example. Below is the code how I am searching the meta-data.
ISearchManager sm = ContentManagerFactory.getSearchManager();
          ContentContext context = new ContentContext();
          Search productCategoriesSearch= new Search("cm_nodeName = 'arvind'");
          productCategoriesSearch.setSearchPath("/WLP Repository");
          IPagedList<Node> pagedList;
          try {
               pagedList = sm.search( context, productCategoriesSearch );
               for ( Node n : pagedList ) {
                    System.out.println(n);
          } catch (RepositoryException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
Any help appreciated...

I tried what you said but getting error
Code:
ISearchManager sm = ContentManagerFactory.getSearchManager();
          ContentContext context = new ContentContext();
          Search productCategoriesSearch= new Search("cm_nodeName = 'arvind'");
          productCategoriesSearch.setSearchPath("/WLP Repository");
          IPagedList<Node> pagedList;
          try {
               pagedList = sm.search( context, productCategoriesSearch );
               /*for ( Node n : pagedList ) {
                    System.out.println(n);
               for ( Node node : pagedList ) {
                    String propertyId = node.getProperty("content").toString();
                    System.out.println("Node Id is:" + node.getId());
                    System.out.println("Property Id is:" + propertyId);
                    System.out.println("Node is:" + node);
                    INodeManager iNodeManager = ContentManagerFactory.getNodeManager();
                    InputStream is = iNodeManager.getStream(context, node.getId(), propertyId);
                    System.out.println(is.toString());
          } catch (RepositoryException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
Error:
Node Id is:/WLP Repository/2002
Property Id is:content: test.xml
Node is:[com.bea.content.Node@e37126 id: /WLP Repository/2002: name=arvind, path=/WLP Repository/arvind, parentId=/WLP Repository, objectClassId=/WLP Repository/1, objectClass=[com.bea.content.ObjectClass@1985a1 id: /WLP Repository/1:
name=ad, path=/WLP Repository/ad, isAbstract=false, isSearchable=true, hasNested=false, parentObjectClassId=null, workflowId=null, propertyDefinitions: (not loaded)], createDate=Tue Jun 15 18:39:32 IST 2010, createdBy=weblogic, modifiedBy=weblogic, modifiedDate=Tue Jun 15 18:39:32 IST 2010, hasChildren=false, isRetired=false, workflowStatus=4, type=1, properties=[adWinTarget: , adWinClose: , adBorder: , adMap: , adAltText: , content: test.xml, adMapName: , adTargetContent: , height: , width: , adTargetUrl: , adWinTitle: , adClickTarget: , adUseXhtml: , audience: internal]]
com.bea.content.NoSuchPropertyException: The property with name content: test.xml, was not found for this node.
     at com.bea.content.federated.internal.NodeManagerImpl.getStream(NodeManagerImpl.java:1019)
     at dynClientSecureWSC.DynClientSecureWSCController.begin(DynClientSecureWSCController.java:67)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:879)
     at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
     at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
     at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
     at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
     at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52)
     at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
     at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
     at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
     at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:64)
     at org.apache.beehive.netui.pageflow.interceptor.action.ActionInterceptor.wrapAction(ActionInterceptor.java:184)
     at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.invoke(ActionInterceptors.java:50)
     at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:58)
     at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:87)
     at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
     at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
     at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
     at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
     at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
     at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
     at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
     at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
     at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1129)
     at com.bea.portlet.adapter.scopedcontent.framework.internal.PageFlowUtilsBeehiveDelegate.strutsLookupInternal(PageFlowUtilsBeehiveDelegate.java:43)
     at com.bea.portlet.adapter.scopedcontent.framework.PageFlowUtils.strutsLookup(PageFlowUtils.java:108)
     at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:707)
     at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:265)
     at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.render(PageFlowStubImpl.java:137)
     at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:292)
     at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:428)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:727)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
     at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
     at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)
     at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
     at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
     at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:168)
     at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:465)
     at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:291)
     at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:231)
     at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:216)
     at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:275)
     at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:719)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
     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:292)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

Similar Messages

  • Can I integrate BPM with WebLogic Portal virtual content repository?

    For example, when there is a new added node in WebLogic Portal virtual content repository, the workflow triggerd, and start a workflow instance on that node.
    May be the node is a document, I'd like the document have a complex approval process.
    My question is, there are many nodes so many workflow instance after I added many documents, so how can I know which node is combined with which workflow instance? May be in workflow process ,I'd like to get and set the node metadata or something else with the WebLogic Portal virtual content repository, how can I process data between BPM and WebLogic Portal VCR?

    With regard to inline editing with Content Presenter in WLP 10.2, you should know that this "feature" is simply an example of how you might author advanced display templates.. The sample application for Content Presenter has a display template which is used to allow this inline editing. The template is just a sample and source code is provided. For your purposes, you can author your own display template which can provide inline edit even if Library Services are enabled. You'll probably want to enable version preview and approval to the template as well. It's a little more work, but certainly possible.

  • How to Upload Mutilple Images in content repository?

    Hi
    How to Upload Mutilple Images in content repository?
    I have a html which shd be displayed and it has 3 images which shd be displayed
    in the same page
    Here i am able to display the HTML uploaded in content repository
    but the images are not displayed,since the path is not valid for the images.
    Can any one hint me in this,
    wating for the reply
    Thanks in Adv
    Regards
    Suresh

    Suresh, your html specifies an image at resources/images/privacy.gif - is that
    image in your repository at the correct relative position to where yout html is?
    Your html and repository structure must match. So if the html you posted is at
    /BEA Repository/foo.html
    then privacy.gif must be at /BEA Repository/resources/images/privacy.gif
    James
    "Suresh" <[email protected]> wrote:
    >
    >
    >
    Hi James
    Here i have attached my sample html and image
    My Repository Structure is as follows :
    Virtual Content Repository
    BEA Repository
    MainImage type image
    Privacy type i created
    ----StartDate
    ----EndDate
    ----File Upload
    My HTML
    <HTML>
    <HEAD>
    <TITLE> New Document </title>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </head>
    <BODY>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td class="norBold"><img src="resources/images/privacy.gif"
    width="123"
    height="73">Privacy
    Policy</td>
    </tr>
    <tr>
    <td class="formHeadBack" height="19"><b> Privacy Policy</b></td>
    </tr>
    </body>
    </html>
    and
    one image
    Thanks in Adv
    Suresh
    "James Owen" <reply.to@newsgroup> wrote:
    Suresh, how is your content structured and what does your html looklike?
    If you
    could post examples, that would be helpful.
    thanks,
    James
    "suresh" <[email protected]> wrote:
    Hi
    How to Upload Mutilple Images in content repository?
    I have a html which shd be displayed and it has 3 images which shd
    be
    displayed
    in the same page
    Here i am able to display the HTML uploaded in content repository
    but the images are not displayed,since the path is not valid for the
    images.
    Can any one hint me in this,
    wating for the reply
    Thanks in Adv
    Regards
    Suresh

  • Setup 10.3 portal to connect to 8.1 content repository

    Hello,
    I am wondering, can I use the existing 8.1 WLP content repository as a third-party content repository for 10.3 WLP Virtual Content Repository (VCR)? Do I have to create the SPI implementation on the 10.3 side in order to connect to the 8.1 WLP content repository? Have anyone done something similar to this situation?
    Or is it possible to setup the 10.3 WLP VCR to connect to the 8.1 WLP content repository directly?
    Thanks!

    Hi Brad,
    I only upgrade a subset of our 8.1 portal application to 10.3. I still need the existing 8.1 repository for some of the 8.1 portal applications.
    I can upgrade and copy the entire 8.1 content repository to a new 10.3 content repository, then I will have two content repositories to maintain. Is there another way beside upgrading the entire 8.1 repository to 10.3?
    Thanks!

  • Disable Edit Content button on virtual content management reposititory

    Hello,
    i have a requirement to disable content edit in virtual content management repository (Weblogic portal administration console).
    i set delegated administration to view capability on Repository and it took out all delete and add functionality but when i browse to the content still i see edit button there. i want to take that out. so that Administrator should not be able to edit the content.
    Any input.
    appreciate your reply.
    Thanks,

    i was able to do it by specifying <readOnly>true</readOnly> in context-config.xml .
    by doing that it still give edit button so that you can view/preview the content but if you try to change and save the content it will not let you save the content and will give
    com.bea.content.AuthorizationException: User does not have update privileges on this node.

  • How to get SAP to use SSL for Content repository?

    I have defined a content repository in OAC0.  I would like SAP and the end user to use SSL when talking to the repository.  I have obtained a certificate for the repository, so that I can manually trference the repository via https... but in OAC0 when I press the Test Connection button I get "Connection Error:No SSLsupport available".  Do I have to import the content repository certificate into STRUST or something?

    Hi Ken,
    please have a look at the SAP note [712330|https://service.sap.com/sap/support/notes/712330].
    Best regards,
    Klaus

  • Error in Test Connection - Content Repository does not exist

    Hi, I have created a content repository which points to our own external HTTP content server which is a DMS through transaction OAC0.
    In transaction CSADMIN I can see our server's status as running, still it shows yellow icon "customizing missing" in CSADMIN and in transaction OAC0 whenver I click "Test Connection" it gives the message" Content Repository does not exist". CMS 106.
    Kindly help.
    Regards
    Neha

    Hi,
    We are using OACO as follows:
    Choose Tools ® Business documents, Environment ® Knowledge Provider® KPro® Content Repositories
    Enter the following fields in the u201CChange Content Repositories : Detailu201D :-
    1) Content Rep. :- ZO (Content Repository Name)
    2) Description :- Content Repository
    3) Storage type :- HTTP content server.
    4) Version no :- 0045
    5) HTTP svr:p :- IP or machine name of application server on which DMS has been deployed : Web port of the application server on which DMS has been deployed.
    1) Program :- sap/sapDocView.jsp
    Save the created Content Repository by clicking on u201CSaveu201D. We are working on SAP 4.7 versionon a SAP development server and the content repository has not been transported after creation. Will not transporting be causing this error ?
    Please reward points
    Thanks
    Vikranth

  • How to configure SAP ECC DMS content repository with CRM Services Object

    hi,
    we have SAP Document management system which is currently integrated with SAP R/3 Ecc system .
    with ref. to sap standard functionality i am able to upload the document in DMS content repository through SAP R/3 Ecc System as below.
    step-1 ,T.code:CV01n
    a.     create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    now, in same manner i want to store business documents in SAP ECC R/3 DMS content repository using CRM services trnsaction"CRMD_ORDER". kindly guide me suitably.
    regards,
    sunil

    i am explaining your proble
    a.    create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    after saving open to document in cv02n and track status of doc i.e. AR CR & RE
    if RE status is there the it will repositor at server
    Regards,
    Sanjeev

  • Issue in storing email & attachments in to content repository server.

    Hi  All,
    We have done the following for storing email & attachments in to
    content repository server.
    Transaction - Activity done
    1) OAC0 - Defined the content repository folder RQ
    2) OACT - Created a category( ZSOFFHTTP1) and associated it to RQ
    3) SKPR08 - Associated ZSOFFHTTP1 to SAP OFFICE Class SOFFPHIO
    Also, updated the entry in the table SDOKPHCL against the record having
    Docuclass value as SOFFPHIO and change the category value to ZSOFFHTTP1.
    Now, we went to transaction SBWP and created a test message and sent
    an email to ( recepient address) and recip type as
    interent address.
    But when we cross checked the entry in SOOD table for this email sent
    today, we find that the value in the field is 'K' and not "A".
    We have done all the steps as per the SAP Note 530792 still the issue
    persists.
    As per the sap note 904711,SOOD-EXTCT Storage <space> directly in table
    SOC3
    K using the KPRO
    A in an archive
    Any help on this , would be highly appreciated.
    Thanks & regards,
    Divya
    Divya

    Thanks for the answer, but my question was whether it is possible to store documents to an external content server using transaction OAOR (Business Document Navigator). Right now it is only possible to store documents to the R3 database with OAOR.
    Regards
    Thomas Hørlyck

  • Cannot find the Web Content repository in test system under KM Content

    Hi Experts,
    We have implemented Web Page Composer in our development landscape. I have created a web page with the required content in the development and now wish to transport this web page and its content to our test system.
    However when I navigate to Content Administration -> KM Content, inside the root directory I am not able to find the Web Content repository within which all WPC content resides.
    I want to know what configuration has to be done in the test system so that the Web Content repository becomes available within KM Content.
    Thanks and Regards,
    Saurabh

    Hi,
    I just want a confirmation on whether I will have to deploy the .SCA file for Web Page Composer in my test and production systems to be able to use the web pages I have created in the development environment.
    Regards,
    Saurabh

  • An error occurred while accessing the content repository from JDeveloper

    Hello,
    I'm using Jdeveloper Studio Edition Version 11.1.1.5.0
    I created Content Repository conection, following:
    RIDC Socket Type: socket
    Server hostname: localhost
    Content Server Listener Port: 4444
    Executing "Teste Connection" result "Success!"
    But, trying connect, I receive:
    oracle.webcenter.content.internal.model.rc.AbstractRepositoryLogic listFolder
    An error occurred while accessing the content repository.
    and when I login to my portal and go to administration page, then I am getting this error
    "Messages for this page are listed below.
    Could not retrieve members from policy store.
    and when I go to services tab then i am getting this error "The Documents service is unavailable.
    Error contacting the content repository."
    Please help me to resolve this problem.
    Thank You,
    Muhammad Nasir

    can anybody help me to resolve this issue please.

  • No content Repository Found in OAOR

    Hello Gurus,
    I am using OAOR transaction for uploading documents in Content Server.
    After I upload the documents, In my program when I try to read the corresponding URL of the document, It could retreive it in my development system.
    But I am having a strange error in my Test system saying that " No Content Found" and its throwing an exception.
    When I tried to debug that  method, I founf that the actual error is " No Content Repository Found".
    Further in my investigation, I found the following:
    In Dev System: When i goto tcode CSADMIN and give the repository abject as "BDS_DB" it is found and i could login in to the server and check the settings.
    In Test System: When i goto tcode CSADMIN and give the repository abject as "BDS_DB" it says that there is no repository object found.
    And while debugging the method, I found that the respository being used is BDS_DB.
    Could you please do tell me where to maintain this Repository Object and how to correct this error as this is working fine in my dev sys and not working in any other system.
    Thanks,
    Naveen

    Hello Ravindra,
    Thanks for the reply and it solved a bit.
    As I see that those two configs are already maintained in my test system as it is in DHM but still I am facing the error.
    To be more precise, I am facing the issue while using the method,
    cl_sdc_bsp_utilities=>phio_get_url_for_get
    Its throwing the error, "No Storage Repository".
    Is there anything else that I need to maintain for this?
    Thanks,
    Naveen

  • How to Upload a file to KM Content repository from a Portal Application

    Hello All
    I have a urgent requirement where i have to upload a file to a KM Content Repository from my Portal Application which is a JSP DynPage Component..
    I am new to the area of Knowledge Management...Can anyone guide me of how to achieve this functionality from my component..
    I will be highly obliged..
    Thanks
    Sundeep

    Hello Sundeep,
    Check this:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=241883
    One more important doc:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f7ced90-0201-0010-589f-8eff15a14072
    Sample coding for content creating and retrieval
    String out = new String(“my content”);
    ByteArrayInputStream data = new
    ByteArrayInputStream(out.getBytes());
    IContent newContent =
    new Content(data, “text/plain”,
    data.available());
    resource.updateContent(newContent);
    IContent oldContent = resource.getContent();
    Greetings,
    Praveen Gudapati
    p.s. Points are always welcome for helpful answers
    Message was edited by:
            Praveen Gudapati

  • Extract & Store pdf SD billing document from archivelink content Repository

    Hello friends,
    Can some one give me a hint on this :
    I have a requirement to create a program which will extract the pdf SD billing document from archivelink content Repository and will save pdf files on application servers's directory.
    We have business Object, Content Repository ID, Document type know for this.
    thanks
    ashish

    use FM : ARCHIVOBJECT_GET_TABLE to get the content in bin format..
    then use open dataset, transfer dataset, close dataset to store that in OS level.. task done..
    you can even use GUI_DOWNLOAD if you want to download it to presentation server.

  • Document type to default content repository

    Is it possible to configure the DMS system so that when you create a document using CV01N and check in the original (using a KPro document type) it will enter it into a content repository by default, without using the pop-up box.
    For example a document of type DMO (if DMO it has KPRO checked in it's setup)  - always puts the original document in  DMS_C1_ST?
    Thanks for any advice.

    Dear Arthur,
    if I understood your latest information correctly your request is that
    the files are stored automatically to storage category if
    you add a file of a specific workstation application to a document info record and save it.
    This first setting enables the automatic start of the checkin
    process. But to have a specific storage category choosen for an
    original workstation application, you have to do another setting and
    create a profile in your system in the customizing under
    - Cross Application Components
         - Document Management System
             - General Data
                 - Define profile
    For this profile pleasee add your workstation applications under
    "Determine definitions for applications". Here you can maintain the
    default storage category for this application in field 'Storage cat.'.
    Since this profile is created assign it to all your users directly.
    Then if an user adds a new original file and chooses a workstation
    application the system should take the storage category automatically
    from the profile.
    To achieve an automatic checkin behavior the additional required setting here are the flags
    "Checkin" and "Checkin required" which must be set for the used document status in transaction DC10.
    Another proposal would be to use the BADI DOCUMENT_STORAGE01 which
    shoudl offer also methods to control which storage category should
    be taken for which workstation application.
    I hope that this information could be useful for you. To set up this
    scenario in detail I would recommend you to contact your local
    consulting organisation too which will help you in realising a solution
    that meets all your requirements.
    Best regards,
    Christoph

Maybe you are looking for

  • Runtime error while loading data in BI 7.0

    Hi All, While loading data in BI 7.0, I am getting Runtime Errors "TSV_TNEW_PAGE_ALLOC_FAILED" . No more space available for extending internal table. As per SAP BASIS SUPPORT comments: "This is NOT a space problem but rather a huge memory resource c

  • Print Prefs Don't Work?

    In PRINT dialogue, I select pop up and select iCal and select the date range - Ical still continues to print the entire month - a bug? Feature not really available?

  • All CSP cards are metal?

    core wrote: TYREX wrote: Well fair enough! Seems like a huge waste of time to me though, just to save a few seconds at the checkout.It's not just to save a few seconds at the checkout.  When your cards go spilling all over the floor it's very embaras

  • Background work process On-hold

    Hello, There is a background job running in Production system for more that 10000ms. Background work processes is on-hold and the resaon is ARFC. Following is the log file: X Thu Jun 11 07:31:10 2009 X  *** ERROR => EmActiveData: Invalid Context Hand

  • I get this error when trying to run iCloud- Error: 0x80040604: Up/POST:Conflicts

    Why do I always get this error when trying to upload Outlook data to iCloud (Win 7 & Outlook 2007) Error: 0x80040604: Up/POST:Conflicts??? I have deleted an reinstalled iCloud and still can't get past the error.