Creation of new entity on ADEP content server fails

Hi. 
I get the following error when trying to persist a new instance of an entity into the content (experience?) server:
Create Item Failed, RepositoryException: {Code}-LCC-REP-FCT-002, {Message}-Access denied
The new instance is defined in a Flex GUI and connected to the content Server through Data Services.  The error occurs when I try to develop the simple app shown in
Session #9: Using Model Driven Development with Persistence in the ADEP Content Repository (http://www.youtube.com/watthech?v=rNnLC8fADlc).
I have loaded the sdk, samples and cmis packages.  RDS and Unsecured RDS are enabled on the server.  The Deployment Handler is set to content on the Flex GUI.
I think it fails becuase the app does give appropriate security creditials to the server, but don't know how to do so (as commented by Hodmi on the YouTube page).
Would appreciate any help to make progress as I am keen to see what ADEP can do.
Regards
Jamal

Jamal-
Check out this link: http://learn.adobe.com/wiki/display/ADEPSamples/Model-driven+Development
In the Run the Application section, the step I've copied below will solve your issue.  I actually did not change the permissions on the "content" node (step 4), but selected my application node under content, and that also worked.
Have fun with ADEP!
-Matt
PS-Thanks to Gary for pointing me in the right direction for this answer.
To create node or delete node when running the application, you can  use anonymous user but you need to configure the ACL for the user  according to the following steps:
Open http://<server_name>:<server_port>.
Enter admin/admin as user name/password, click Sign In.
Click Content Explorer in the right side panel.
Click the node “content” in the left tree.
In the top bar, click Security > Access Control Editor.
Click the check box next to ACL, then click Set selected policies.
Click New ACE, and then click Browse, select user, and click Search Now, select anonymous, and click select.
In Privileges list, select jcr:all.
Click the Green arrow, and then click OK
Note: If you want to add  authentication for the application, the login page should be needed, and  you can refer to the detailed sample code to learn how to add  authentication to such applications.

Similar Messages

  • Issue with Creation of new entity and adding it to collection

    Hi Experts,
    LR_ENTITY_ACCT(Account details) is the parent node and that is populated using the query builder.
    From there, I am trying to get realtion of notes section 'BuilNotesRel'). If it is not present, I am creating a new entity of that relation through parent node, setting attributes and saving it. I have written the following code. While debugging, I can see the new entity created under parent LR_ENTITY_ACCT and set property is also working. But afer execution, if I check in genil_bol_browser transaction, there is no new entity created under BuilNotesRel. Please help.
    data:  LR_ENTITY_ACCT          TYPE REF TO CL_CRM_BOL_ENTITY,
               LR_COL_NOTES            TYPE REF TO IF_BOL_BO_COL,
                  LR_ENTITY_NOTES         TYPE REF TO CL_CRM_BOL_ENTITY.
            IF LR_ENTITY_ACCT IS BOUND.
              LR_COL_NOTES ?= LR_ENTITY_ACCT->GET_RELATED_ENTITIES( IV_RELATION_NAME = 'BuilNotesRel' ).
    IF  LR_COL_NOTES->SIZE( ) = 0.
        LR_ENTITY_ACCT->create_related_entity( iv_relation_name = 'BuilNotesRel').
        LR_CORE_3 = CL_CRM_BOL_CORE=>GET_INSTANCE( ).
                LR_CORE_3->MODIFY( ).
            LR_COL_NOTES ?= LR_ENTITY_ACCT->GET_RELATED_ENTITIES( IV_RELATION_NAME = 'BuilNotesRel' ).
              LR_ENTITY_NOTES ?= LR_COL_NOTES->GET_FIRST( ).
                  LR_ENTITY_NOTES->SET_PROPERTY( IV_ATTR_NAME = 'TEXT_ID'
                                               IV_VALUE     =  'ZCOM').
                LR_ENTITY_NOTES->SET_PROPERTY( IV_ATTR_NAME = 'TDLINE'
                                               IV_VALUE     =  LS_ACCOUNT_DETAILS-NOTES ).
    LR_CORE_3 = CL_CRM_BOL_CORE=>GET_INSTANCE( ).
                LR_CORE_3->MODIFY( ).
    endif.
    endif.
    Thanks,
    Ramya

    Hi Sumit,
    I have used a structure for notes which is of TYPE crmt_bupa_il_notes.
    ls_notes                TYPE crmt_bupa_il_notes.
    Then I create the entity, get properties, set the properties and do a core modify.
    LR_ENTITY_NOTES = LR_ENTITY_ACCT->create_related_entity( 'BuilNotesRel' ).
         LR_ENTITY_NOTES->get_properties( IMPORTING es_attributes = ls_notes ).
        ls_notes-task = 'M'.
        ls_notes-text_id = 'ZCOM'.
        ls_notes-langu = 'EN'.
        ls_notes-languiso = 'EN'.
        ls_notes-tdformat = '*'.
        ls_notes-tdline = LS_ACCOUNT_DETAILS-NOTES.
          LR_ENTITY_NOTES->set_properties( EXPORTING is_attributes = ls_notes ).
          LR_CORE_3 = CL_CRM_BOL_CORE=>GET_INSTANCE( ).
                LR_CORE_3->MODIFY( ).
    Thanks,
    Ramya

  • How to install new instance on Stellent Content Server

    Hi All,
    I have installed Stellent Admin Server and Content Server with the instance name "idc".
    Now I want to install one more content server "idc1" on same Admin server.
    So is there any appropriate way to do this?
    Please let me know.
    Thanks & Regards,
    Vishal Shah

    Hi
    You can do it but there is one very critical exception to do it depending on the Webserver that you are using :
    1. Is you are using Sunone Webserver then you cannot install multiple instances of CS on the same webserver instance.
    And if using IIS then the only thing that you need to do on the webserver front is to restart the Webserver after the second instance is installed so that the webserver picks up the config entries made for the second instance's install.
    With Apache webserver you will have make the entry in the httpd.conf for the second instance as you had done for the first instance
    Eg for this is :
    This is my first instance:
    LoadModule IdcApacheAuth "D:/oracle/ucm/cs2/shared/os/win32/lib/IdcApache22Auth.dll"
    IdcUserDB cs2 "D:/oracle/ucm/cs2/data/users/userdb.txt"
    Alias /cs2 "D:/oracle/ucm/cs2/weblayout"
    <Location /cs2>
         Allow from all
         Order allow,deny
         DirectoryIndex portal.htm
         IdcSecurity cs2
    </Location>
    This is my second instance:
    LoadModule IdcApacheAuth D:/oracle/ucm/idc1/shared/os/win32/lib/IdcApache22Auth.dll
    IdcUserDB idc1 "D:/oracle/ucm/idc1/data/users/userdb.txt"
    Alias /idc1 "D:/oracle/ucm/idc1/weblayout"
    <Location /idc1>
    Order allow,deny
    Allow from all
    DirectoryIndex portal.htm
    IdcSecurity idc1
    </Location>
    Hope this helps
    Thanks
    Srinath

  • Error while adding new security group in content server

    Hi,
    When i am trying to add new security group in UCM using User Admin applet i am getting following error:
    Event generated by user 'weblogic' at host 'vpunvfpctnsz-07.ad.infosys.com:16200'. Unable to execute service ADD_GROUP and function insertGroupRow.
    Unable to execute query 'IroleDefinition(INSERT INTO RoleDefinition (dGroupName, dRoleName, dPrivilege, dRoleDisplayName)
    values ('Test_111', 'admin', 0, ''))'. ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated
    java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,weblogic,vpunvfpctnsz-07.ad.infosys.com:16200!$!csServiceDataException,ADD_GROUP,insertGroupRow!$!csDbUnableToExecuteQuery,IroleDefinition(INSERT INTO RoleDefinition (dGroupName\, dRoleName\, dPrivilege\, dRoleDisplayName)<br>          values ('Test_111'\, 'admin'\, 0\, ''))!$ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated<br>!syJavaExceptionWrapper,java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated<br>
    intradoc.common.ServiceException: !csServiceDataException,ADD_GROUP,insertGroupRow!$
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2071)
    at intradoc.server.Service.buildServiceException(Service.java:2207)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2201)
    at intradoc.server.Service.createServiceException(Service.java:2196)
    at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1736)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1691)
    at intradoc.server.Service.doAction(Service.java:476)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1439)
    at intradoc.server.Service.doActions(Service.java:471)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1371)
    at intradoc.server.Service.executeActions(Service.java:457)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:723)
    at intradoc.server.Service.doRequest(Service.java:1865)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1332)
    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1678)
    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:221)
    at sun.reflect.GeneratedMethodAccessor120.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
    at idcservlet.ServletUtils.executeContentServerIntegrateMethodOnConfig(ServletUtils.java:1592)
    at idcservlet.IdcFilter.doFilter(IdcFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
    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:2268)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: intradoc.data.DataException: !csDbUnableToExecuteQuery,IroleDefinition(INSERT INTO RoleDefinition (dGroupName\, dRoleName\, dPrivilege\, dRoleDisplayName)
    *          values ('Test_111'\, 'admin'\, 0\, ''))!$ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated* at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2441)
    at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:584)
    at intradoc.server.UserService.insertGroupRow(UserService.java:1201)
    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 intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
    at intradoc.server.Service.doCodeEx(Service.java:549)
    at intradoc.server.Service.doCode(Service.java:504)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1622)
    ... 39 more
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_OCS.PK_ROLEDEFINITION) violated
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:89)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:135)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:210)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:473)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:423)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1095)
    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:193)
    at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1028)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1379)
    at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:5846)
    at oracle.jdbc.driver.OracleStatement.doScrollStmtExecuteQuery(OracleStatement.java:5989)
    at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2012)
    at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1958)
    at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:301)
    at weblogic.jdbc.wrapper.Statement.executeUpdate(Statement.java:503)
    at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:564)
    ... 50 more
    I checked in database , the security group Test_111 is not present in ROLEDEFINITION table.
    What could be the issue?
    Regards,
    Minal

    1) Try importing CMU bundle with 'Overwrite Duplicates' option unchecked .
    2) In the CMU bundle, open file roles_guest.hda and see if 'guest' role has access to any group that start with special character or group you haven't created in the system..
    Eg: guest
    #AppsGroup
    0
    Also open securitygroups folder in CMU bundle, and see if you can find any groups that starts with special character or group you haven't created in the system.
    3) Identify that group and execute below query in the UCM database.
    select * from roledefinition where dgroupname= '#AppsGroup';
    Replace '#AppsGroup' with the groupname you identified.
    4) Solution would be to delete all the rows with dgroupname= '#AppsGroup' from the 'roledefinition' table.
    delete from roledefinition where dgroupname= '#AppsGroup';
    Replace '#AppsGroup' with the groupname you identified.

  • Resisting the creation of new log files when SQL SERVER is restarted

    Hi,
    I know that when SQL server is restarted new log files are created. But is it possible to resist creating new log fils and insert log data in the existing log files that are used before restarting the sql server

    Hello,
    I guess Raghvendra answered your question. And as per your previous post its not clear what you want to ask an you did not revert. Again if your issue is solved appreciate if you can please mark the answer and vote the posts helpful.
     Can I continue to log in the same file.?
    What does this line mean exactly ? Yes SQL Server will continue to use same transaction log file(LDF file) for writing information as it was using before shutdown. If you are talking about errorlog file a new errorlog file would be created which you can
    read using
    sp_readerrorlog
    Even if you stopped SQL Server service mistakenly its not that server is gone. Yes when you stopped the server all inflight transactions are rolled back. And when SQL Server would come online it would undergo crash recovery and would bring all the databases
    online by reading transaction log file and performing redo and undo of information. All committed transaction would be rolled forward and uncommitted would be rolled back.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • New entity in Porject Server

    Hi all,
    I am kind of new to Project server.
    Is it possible to create a new entity type in project server like Project, Resource and Task. If yes, how?
    Regards,
    Sujay Babu

    Hi Sujay,
    Your question is quite a "start from the beginning" question... First of all, which version of Project Server are you working with?
    It is definitely possible to create entities in Project Server since in the other case the application will be totally useless.
    For resources, it should be enterprise resources, so the workload can be consolidated among all projects, allowing the capacity to be managed. Moreover, using enterprise resources allows doing timesheets and/or task updates.
    About tasks, Project Server aims at managing tasks and project, so the interrogation itself sounds redundant.. Creating a new project from Project Web Access or MS Project Pro connected to Project Server, you'll be able to add tasks, relationships between
    tasks, enterprise resources on tasks (assignments), and publish it to Project Server.
    Here are a few links (among a large number of blogs, articles..) I'd suggest you to read:
    http://office.microsoft.com/en-ca/project-server-help/getting-started-project-managers-HA010374483.aspx
    http://technet.microsoft.com/en-us/library/gg188121(v=office.14).aspx
    http://khurramjamshed.blogspot.ca/2011/02/project-server-task-and-timesheet.html
    http://office.microsoft.com/en-ca/help/project-management-goal-create-a-new-project-schedule-HA102919765.aspx
    http://office.microsoft.com/en-us/project-server-help/create-a-project-HA102848217.aspx
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Bank Master Data ( Creation of new Account )....

    Dear SAP Gurus,
       Good morning to all,i have one doubt regarding creating a new Bank Master Data in Production, please help me.My user has a requirement which is like one Cash Credit Account has been opened with SBI bank where with the same bank and branch there is already an existing Current Account,now my client wants from me to create a bank master data for the new bank Cash Credit  Account( as he is saying that he has to maintain BRS).
       Now i have to know that what is the best practice in sap whether i should create one more  master data for the new Account or i should attach the new account with the existing Bank Master?
    Please help it is urgent.I'll be waiting for your valuable suggestion.
    Regards
    Rajiv Kapur

    Hi Rajiv,
    Creation of new house bank will not serve purpose in better way, it is only required when there is a complext scenatio in check printing but that does not appear in your case.
    So, create a new Bank Account in the existing House Bank, this will be included in Bank Reconciliation. Moreover, creation of Bank account instead of House Bank will also ease some maintainance in Bank Reconciliation statement configuration.
    Regards,
    Chintan Joshi

  • Content Server - MaxDB Backup Strategy

    Hello Experts,
    I am new to MaxDB and Content Server.Please help me to my below queries which will be very helpful to me.
    1. I have installed content server 6.40 MaxDB 7.6.
    2. I have installed DBStudio for MaxDb Administration.
    3. I have installed ADINT/TSM Client as I need to use IBM TSM server for backup/restore.
    Please provide me the steps to do backup/restore of MaxDb database using TSM.
    Thank you again.
    Regards,
    Karthick Eswaran

    Lars,
    You are very quick. Working on Sunday as well!
    I have checked the location /usr/tivoli/tsm/adint64/temp but there is nothing in that location.
    But how did you identify that this is the issue with TSM Client?
    Where will be the log file stored for MaxDB and TSM Client?
    Please let me know how to check whether the pipe is created or not?
    After changing the backup script to :
    OD1>>backup_start FullData recovery DATA
    The previous message got disappeared and now the below error shows up.
    Cleaning up.
    Removing data transfer pipes.
    Removing data transfer pipe /tmp/pipe_data1 ... Done.
    Removed data transfer pipes successfully.
    Copying output of ADSM to this file.
    Begin of output of ADSM (/tmp/temp1256495075-1)----
    ADINT Interfacetool between MaxDB and TSM
    Version 2, Release 3, Modification 1 for AIX 64-bit
    Build: 108 compiled on Oct 20 2005
    (c) Copyright IBM Corporation, 1994-2005, All Rights
    Reserved.
    ADI0052E: TSM API Error: ANS1035S (RC406) Options file '*'
    could not be found.
    ADI0003E: ADINT has ended with an error.
    End of output of ADSM (/tmp/temp1256495075-1)----
    Thank you very much.
    Regards,
    Karthick Eswaran
    Edited by: Karthick Eswaran on Oct 25, 2009 8:38 PM

  • Creating a new database on a MySQL server

    Hi,
    I am using the JDBC driver from http://www.mysql.com/products/connector-j/index.html and it works if I connect to an exixting database. I would like to implement extra functionality to my application by allowing the creation of new databases on an existing server.
    Has anyone done this before or does somebody know if this is possible through the above driver or some other way?
    Thank you

    I think it is indeed mysql. The root user by default can only connect from the localhost, so you'll have to create a user first who is allowed the right privileges.

  • Reformat Content Server Error

    Sometimes we get an LDAP error. This causes UCM to display a content server error page to the user. It has the message that 'content server failed' and then some small detail. The page has a navigation bar on the left.
    We would like to catch errors like this and format a nice error page that the user is not stunned with.
    I thought about a custom component in the check credentials service that would do a redirect to our new web page but not sure this would work.
    Any ideas would be a help.
    Thanks

    You could also build a component that contains a new error page template (with the same name as the original one and with a load order that'll make the content server show your custom template instead of the original one). You do not have to change any of the services for this to work and your end users will always see the same template whenever they get an error.

  • Original File storage in Content Server

    Hi Gurus,
    My client has installed Content server for SAPDMS. Before installing content server we were storing files in the sap database.
    when i store original files from the transaction CV01n, i want to find out whether the files are stored in the sap database or CS.
    SInce earlier in the check-in document  screen,  the storage categories mentioned are seen. Now again after we installed content
    server we can see them with the new storage category of content server, since i have defined all these in the VAULT.
    My question is,  there is any path between the DATA carrier and the storage conditions.
    Kindly solve this gurus.
    Regards
    Poonguntran

    Anybody can help he out of this issue.

  • What is the latest prod. supported MaxDB Version w. SAP Content Server 6.40

    What is the most actual supportet MaxDB Version when using with SAP Contentserver 6.40?
    In PAM Page 5 (of the Powerpoint) the official Version should be 7.5.
    In "install and Upgrade" NW 7.0 there is the "NW 7.0 Presentation - MaxDB Release 7.6.03"  available for Download and the "MaxDB RDBMS 7.7.06 Build 10 - Windows Server on x64 64bit "
    Does that mean, that the 7.7 Version is official supported for Production?
    Searched the Notest but found no answer for that.
    Ulrich
    ... half an hour later ...
    just found MAXDB 7.7 Installation which suggest the 7.7 is the latest official supported.
    could that be the answer?
    Ulrich
    Edited by: Ulrich Neumann on Feb 2, 2010 12:39 PM

    Hello Ulrich,
    Please refer at SAP link  http://service.sap.com/pam for full platform availability information of the new version. SAP Content Server is shipped with NetWeaver 2004s SR1.
    < service.sap.com/pam -> SAP NetWeaver 04 -> Database Platforms -> Content Server
       Select in MAXDB section u201CWINDOWS SERVER...   u201C >
    < according PAM :
    MAXDB 7.6 64-BIT is released on WINDOWS SERVER 2003/X64 64BIT for     
    SAP CONTENT SERVER 6.40 > 
    As you know the SAP installation guide for Content server is available at::                          
    service.sap.com/installations -> SAP Components                  
    ->SAP Content Server -> Release 6.40 and higher                  
    < Installation - Standalone Engines >                                                                               
    For additional information and documentation please go at  SAP link:      
    http://service.sap.com/ContentServer                             
    -> FAQs SAP Content Server    
    Thank you and best regards, Natalia Khlopina

  • Content Server Backup Procedure

    Dears,
    We are using Content Server with MaxDB database.As we know in SAP with Oracle database we have brtools to configure backup to take it automatically on a regular basis.
    So now my issue in the same way we need to configure backup for my Content server that is installed with MaxDB database,Please suggest how can it be done.
    As on Marketplace we found content server for MaxDb database only,Can it be installed on Oracle also.
    Please suggest.
    Shivam

    Anirudh,
    MAX DB admin tools provide backup functions.  You can do it from the GUI or from a command line.  We backup content servers in several locations, by doing incrementals 4 times a day.  The increamental files are copied to our headquarters and imported to a backup database.  In the event a remote site's content server fails, we can bring the backup on line in just a few minutes.  Note, if you do this you start a chain of events that you have to deal with in order to get the remote site back to it's state of the primary data.  But it works for us.  The backup database (stays in admin state) can have restores and backups run on it and be ready for use.  We back it up, fully every night and carry that backup off site.  This backup is also restored to our Test system when we do a PRD to Test copy of the SAP DB.  So we backup all content servers 4 times a day and restore those backups to backup database on headquarters backup servers.  The backups are small enough, happening every couple of hours during the work day, that we can move them across the WAN without problems.
    dbmcli_commands.pdf had all the command line info in it.  I am not sure where our DBA got that file from but all of our batch schedules of backups is based from commands described in that manual.
    Dan Thames

  • Content Server News Portlet major design flaw ?!

    I ran into a Content Server 6.1 issue which is really frustrating me. I am wondering if I am doing something wrong or if it is a design flaw: 1. I created a content server news portlet "out of the box" and added it to my MyPage.2. I created and published 2 news articles.3. I edited the 1st article and just saved it. I did NOT PUBLISH it.4. I edited the 2nd article and PUBLISHED it. The news index is re-published automatically to reflect the changes of the 2nd article which has been published. But the index now displays the changes of BOTH articles, even the unpublished! Furthermore the 1st article can't be opened from the index anymore if the name property has been changed. As the published file name changes with each version and especially when the name is updated, the news index links to the new published file name - but it has never been created as I didn't publish the 1st article! I understand why this is happening: The index content item holds a list of all article content items and is published whenever an article is published / deleted / expired. But until now I thought that content server is holding the last published version and includes this into the list until a new version is published. That's not the case! Imagine this on a production environment with workflow activated: one article was approved and published while the other still needs to be reviewed, but it's (unreviewed) index data like headline etc. is already displayed in the index?! And in worst case the article can't even be opened. You just get the server error "page not found". Many of my content items for a current big project follow the idea of the news template, e.g. HR Staff Overview (persons = articles, overview = index), so I am kind of stressed by what I found out. Has anybody made similar a experience and found a workaround for this? Perhaps one of the support people could explain how the news portlet is intended to be used with this severe behaviour? Am I expecting too much? Is updating an already published article not possible? But why are version mechanisms included for content items then? I appreciate your comments. Thanks.

    Thanks for the quick reply.
    We are using Content Server 6.1 with all Hotfixes installed and we are not planning to upgrade to G6 at the moment.
    As far as I understood the 'filtered.published' property contains the date the content item was published the last time. So it will always be 'true' if the item has been published in the past, no matter if it's currently published or not.
    The index template with the code snippet you sent will display the currently not published (but changed) item properties whenever another item was published. Have you changed the design in 6.2 so that properties of an item in a list property of another item are just copied and not linked?
    As a workaround I now compare the 'modified' property with the 'published' property and if it is greater or equal I don't display it in the index. But that's not the way Content Server was designed to behave, is it? With this solution I can suppress the item in the list if it has been modified after the last publishing, but of course I rather want to have the data of the last published version.
    Isn't that possible? Is it possible in 6.2? Is there any way to update Content Server to 6.2 without acquiring G6?
    RegardsStefan

  • New to Content Server 4

    Hi,
    I am just new to content server. My company asked me to expolre content server 4 and how it can be integrated with e-commerce site. So could you please tell me where can i get the developer license and how much it will cost?
    or is it require to buy commerical license itself to start initial study?
    Thanks,
    umesh

    Sorry, i don't understand you...
    Do you have ACS4 working with Drupal 7 & DrupalCommerce???
    Thanks

Maybe you are looking for

  • Cannot load windows 7 through bootcamp

    i have been trying to load windows 7 through bootcamp. but after the initial partition process, the screen goes blank with a cursor on the top left corner. it does not come to life even after 4 hours. i did not have any problem making the partition b

  • How to display the open file dialogue in SBO 2007

    Hi I have my own form on screen with a edit text box which will contain the path and name of a file entered by the user Is there any way I can display the windows open file dialogue so the user can search for a file ? Many thanks Regards Andy

  • [SOLVED] 'Sources' badly formatted on AUR - should I bug report it?

    Hello, Just stumbled upon this page today. As you can see, the 'sources' info is so badly formatted (fetched wrong contents from the PKGBUILD), I never saw this before. Is this fault of the PKGBUILD, or should it be reported as a bug of the AUR descr

  • CS5 suddenly I cannot view any folders/photos in bridge or mini bridge.

    Just shows No Items to Display.  I have thousands of photos in folders in the Library, but cannot access them via Bridge. Anyone able to help me please?  Was working fine but now I cannot use bridge at all.  I can select a photo individually from the

  • 7.0 won't install, error writing to file

    Received the following 7.0 install error on Toshiba laptop with Win XP Tablet Ed. Error writing to file C:\ProgramFiles\iTunes\iTunes.Resources\fr.lproj\iPodHelp.chm Verify that you have access to that directory. Hangs same place each install attempt