LifeCycle Manager: The kind 'Note' does not exist in the CMS

Hi there,
I'm trying to promote a Crystal Report from one relatively fresh XI 3.1 environment to another fresh XI 3.1 environment (TEST to PROD) using LifeCycle Manager, and for this report, which has no dependencies, I get the following error when I do a Test Promote or actual Promote:
Commit Status=Commit attempted and failed, Promotion Status=Failure : com.businessobjects.lcm.utilities.LCMException: com.businessobjects.sdk.biar.exception.XSDException$UnknownKindException: The kind 'Note' does not exist in the CMS. (FWM 04030)
Has anyone encountered anything similar to this? I can't find any InfoObject that logically relates to the type/kind 'Note'. Perhaps it has to do with discussions?
Thanks,
Allan

Hi,
Can you try promoting it with the security option enabled.
Based on the error condition it seems that the discussion plugin does not exist in the destination system.

Similar Messages

  • The kind infoobject does not exist in the CMS

    hi, all of a sudden, when i import a new biar file to the server, i got the below error message:
    the kind infoobject does not exist in the CMS
    the server worked fine before. and then i imported the biar to another server, it works fine, and seems not the biar problem.
    then i found some error explanation
    Cause
    The InfoObject type does not exist in the CMS
    Action
    Ensure that the InfoObject type is propertly installed.
    and
    Cause
    An InfoObject type is missing.
    Action
    Ensure that the XSD for this type of InfoObject is installed.
    I want to know how to reinstall the infoObject type.
    or any other idear on this.
    thanks all.
    Ada

    WHat's the exact version of the source and the target BO system?
    Regards,
    Sratos

  • Error promoting reports using LCM: The kind 'Note' does not exist

    Hi,
    We are using BOXI3.1 with FixPack1.3 installed on a Windows 2003 Enterprise environment. We have installed Life Cycle Management for version management and content promotion. Our environment coneist of three server installations (Development, Test and Production).
    Our problem is that we are not able to promote reports from one environment to another. Wee are getting two different kind of errors, depending on the scenario:
    Error 1: For actual promotion
    Commit Status=Commit attempted and failed, Promotion Status=Failure : com.businessobjects.lcm.utilities.LCMException: com.businessobjects.sdk.biar.exception.XSDException$UnknownKindException: The kind 'Note' does not exist in the CMS. (FWM 04030)
    Error 2: For test promotion
    Commit Status=Commit attempted and failed, Promotion Status=Failure : com.businessobjects.lcm.utilities.LCMException: com.businessobjects.sdk.biar.exception.XSDException$ImportParsingException: Import file parsing exception occurred : 'Item 'ALLOW_DISCUSSION_THREADS' does not exist in enumeration 'Note_RightEnum'. (FWM 04016)' (FWM 04009) cause:com.businessobjects.sdk.biar.exception.XSDException$InvalidEnumItemException: Item 'ALLOW_DISCUSSION_THREADS' does not exist in enumeration 'Note_RightEnum'. (FWM 04016) detail:Import file parsing exception occurred : 'Item 'ALLOW_DISCUSSION_THREADS' does not exist in enumeration 'Note_RightEnum'. (FWM 04016)' (FWM 04009) Item 'ALLOW_DISCUSSION_THREADS' does not exist in enumeration 'Note_RightEnum'. (FWM 04016)
    This error happens for borth the Administrator user, and a user who are a member of the Administrator user group.
    We have tested following:
    1. Verify the user has at least view right for Custom Access Levels in CMC
    2. Verify the user has the 'Allow discussion thread' on the Note content on Top Level security in 'Folder' in CMC.
    3. We are getting the same error when exporting to BIAR
    4. The user have Full control of the LCM folder
    5. We have tested promotion with security option enabled
    We have also a test report where we have set Full Control and allow discussion thread explicit on the user.
    Have anyone experienced the same error and a suggestion for what can be wrong?
    Jøran
    Edited by: Jøran Kleiven on Feb 24, 2010 3:22 PM

    Hi,
    Could you tell me which table this object are in? I tried ci_infoobjects and ci_systemobjects, but it returned null.
    Jøran

  • An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM

    Hi,
    I am trying to get the Know Rights for a report object without any success. Everytime my code hits this method it throws an exception
    An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM 04030) (WBP 42029)
    I am stuck with this problem for past two days and am not able to figure out any solution
    Can anyone please help me in this issue?
    Public Function GetObjectRights(ByVal CUID As String) As RightInfo()
            Try
                Dim m_BiPlatform As BusinessObjects.DSWS.BIPlatform.BIPlatform
                Dim urls() As String = _Session.GetAssociatedServicesURL("BIPlatform")
                m_BiPlatform = BusinessObjects.DSWS.BIPlatform.BIPlatform.GetInstance(_Session, urls(0))
                Dim _RightInfo() As RightInfo = m_BiPlatform.GetKnownRights(CUID)
                Return _RightInfo
            Catch ex As DSWSException
            End Try
        End Function
    Thanks,

    Hmm... I can't think of anything else that could be causing the problem.
    I don't know of any way to exclude the 'note' right since GetKnownRights() returns all known rights (RightInfo) for the type of object passed into the method.
    A suggestion might be to try getting the knownRights using the BOE .NET SDK (not web services) to see if the same error occurs.  There is some simple sample code that you can use as a test in the [BOE .NET SDK developers guide|http://help.sap.com/businessobject/product_guides/boexir31/en/boesdk_net_dg_12_en.chm].
    If this fails as well, then I can only assume that there is some problem with your install of Enterprise as I have tried many ways to reproduce the error you are getting, but cannot.

  • SDKException$PluginNotFoundAtCMS: The plugin Enterprise does not exist in the CMS

    Post Author: NorfolkNChance
    CA Forum: JAVA
    Hi, I am trying for the first time to integrate my crystal reports into java J2ee.
    I have been following the tutorials on http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/en/BOE_SDK/boesdk_java_dg_doc/doc/boesdk_java_dg/HowToExamples3.html
    and think I am doing allright. I have imported all the jar I should do from the BO installation directories.
    so I am running this code below:
         String cms = "*********:6400";     String username = "administrator";     String password = "*********";     String auth = "Enterprise";
    //   Attempt logon. Create an Enterprise session
            try {   // manager object.   ISessionMgr sm = CrystalEnterprise.getSessionMgr();
       // Log on to BusinessObjects Enterprise   IEnterpriseSession enterpriseSession = sm.logon(username, password, cms, auth);   System.out.println("ddd");     } catch (SDKException e) {   // TODO Auto-generated catch block   e.printStackTrace();  }
    When it reaches the line in bold it throws an exception:
    [09/10/07 12:16:14:738 BST] 00000032 SystemErr R com.crystaldecisions.sdk.exception.SDKException$PluginNotFoundAtCMS: The plugin Enterprise does not exist in the CMS
    cause:com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    detail:The plugin Enterprise does not exist in the CMS
    The exception originally thrown was com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    is someone able to help me with this expection? Do I need to set something up on the sever?

    Post Author: Ted Ueda
    CA Forum: JAVA
    String auth = "secEnterprise";Sincerely,Ted Ueda

  • The requested column does not exist in this table

    Hi All,
    I am getting the following error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 59014] The requested column does not exist in this table. (HY000)
    SQL Issued: SELECT "Customers - Dim".CITY FROM MVDEMO ORDER BY 1
    When I tried viewing data online I am able to view the data in the physical Layer. Also I tried connecting thru ODBC Client and issued the same SQL (above) and it returns the data.
    I am using Oralce BIEE 10.1.3.2.1 version.
    Please let me know if any faced this kinda issue and how to resolve this.
    Thank you.

    Check your column mapping in the BMM layer in your Customers - Dim logical table. Does the CITY column point to a physical table column?

  • [Solved] The requested object does not exist. (Exception from HRESULT: 0x80010114)

    I have a 8 node cluster with Hyper-V, which will be 10 nodes when it's finally done.
    Recently I've been try to add nodes and though that went fine, after about a week I could not open the Failover Cluster Manager anymore.
    After some checking I found out that the latest added node was giving problems.
    VM's on the node still run and function properly, but most Powershell commands result in a "The requested object does not exist. (Exception from HRESULT: 0x80010114)".
    I can suspend the node with Suspend-ClusterNode, but draining roles was unsuccesful in one case.
    In the other there were no VM's on the node so suspending went fine.
    What I did find out was that when I tried to ping the node from another, proper functioning node, it took a while before the pinging started. It felt like the interface had to come back online on the problem node.
    After that, I could add the cluster to the Failover Cluster Manager. However, Powershell commands still give a 0x80010114 error or a CIM error for when I use Get-NetAdapter.
    A reboot resolves the problem, but only for about a week.
    I know there is a topic with the same title already, but the wbemtest en rollup update "answer" is totally unclear to me why I should change something with wbemtest, or why to install updates that to me have nothing to do with this problem.
    Before I did the ping test from a functioning node I pinged my DC and another node from the problem node just fine.
    No waiting at all.
    The cluster has three networks. Management (host only), Live Migration and iSCSI (also a VMSwitch for certain VM's).
    I have no idea where to look. Evenviewer doesn't give me anything I can work with that I can find...

    Hi,
    Are you using the HP servers? It seems is the HP Nic team service was causing the issue, please try to
     disabled the HP NIC team service from services and restarted the WMI service.
    The related third party information:
    Advisory: (Revision) HP ProLiant Servers - Systems Running Microsoft Windows Server 2012 or 2012 R2 May Experience a Memory Leak Up To 5 Mb/ Hour for Some NIC Teaming Configurations
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay/?javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.prp_ba847bafb2a2d782fcbb0710b053ce01=wsrp-navigationalState%3DdocId%253Demr_na-c04209163-2%257CdocLocale%253D%257CcalledBy%253D&javax.portlet.tpst=ba847bafb2a2d782fcbb0710b053ce01&ac.admitted=1401176219136.876444892.199480143
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • CRM Upgrade from 7.0 to EhP1 Error - The requested resource does not exist

    Hello All,
    We have recently upgrade our pilot system in CRM from CRM 7.0 to Ehp1. The upgrade was successful.
    However, when I login into the WebUI, I get an error message as follows:
    404 Not Found
    The requested resource does not exist
    Details: Go to main page of this application
    I got in touch with the Basis team and tried to activate some services through SICF that were deactivated because of the upgrade. But we still encounter the above error everytime I tried logging into WebUI.
    I kindly request to provide some pointers towards the resolution of the same.
    Thanks and regards,
    VSK.

    Hi,
    please try to activate all SICF services under sap->bc->bsp.
    If needed deactivate them and activate afterwards again to be sure all services are active.
    Good luck
    Kind regards
    Manfred

  • E2E RCA - The requested query / does not exist on the current server

    Hi All,
    The RCA for managed system is configured successfully and we are getting EWA for JAVA also.
    But when i try to look at the statistics through Workload Analysis it gives error "The requested query / does not exist on the current server" and "unknown or deleted query".
    I again tried to run CCMSBI_SETUP_E2E report but the problem STILL persists.
    Please let me know what are the other methods i shall try.
    Thanks,
    Rohan

    Hi,
    Our solution manager is in EHP1 SP23 and BI content is on 704 SP05.
    Firstly the BI was configured in 001 client, we changed it to production client and activated the source system as mentioned in SOLMAN_SETP -> Basic configuration.
    Later i found out the there are no queries.  I already told to update the BI content and SAP BW patch to SP06.
    Do you think it will work?
    Thanks and regards,
    Rohan

  • Web Dynpro image not found: The requested resource does not exist

    Hi everybody,
    I'm experiencing a strange Poltergeist, so I would like to cry out the issue and hope any kind sould could help me
    In my WebDynpro application, I show a JPG picture which is located in the own project, that means in "src/mimes/Components/metromadrid.net.formacion.Cursos". The image appears correctly in my Development environment, but when the activity is moved to the Consolidation System (I'm using JDI), the image doesn't appear. If I try to access it directly, via URL, the messagen shown is "404 Not found: The requested resource does not exist.." (the URL accessed is http://hostname:port/webdynpro/resources/metromadrid.es/formacionapp/Components/metromadrid.net.formacion.Cursos/foto_vacia.jpg)
    The point is that in the same Consolidation environment I have already some applications with images, which are found and loaded without any problem.
    I have checked if the image appears in the corresponding active repository and everything seems alright (I mean I can see the file there).
    Any idea? It would be really appreciated, since my time to solve the problem expires in few days...
    Thank you very much in advance!!
    Isidro Lopez

    Hi Isidro,
    your mime files were most probably not added to your NWDI activities when developing your Web Dynpro DC. This means when adding these mime files to the src/mimes/<comp package>.<Comp name> folder the Web Dynpro Tools have most probably not detected the new mime files. When testing your application on in your local development environment all images appear as they exist on your local file system. As missing mimes do not cause a CBS build failure you won't encounter a designtime error.
    Please check whether the corresponding mimes are listed as   'local only' (house symbol) in your DTR perspective. In case they are listed as 'local only' you must explicitly add them to an activity.
    I have also encountered this missing mime problem before but I have not started any investigation to really determine the reason for it.
    Best regards, Bertram

  • XISOAPAdapter The requested resource does not exist

    Hi all,
    I'm having a problem on a PI 7.1 DEV Server. Until last weekend everything ran OK.  The services were working with SOAPAdapter, but these stoped of working and the response to each request was "404 Not Found - The requested resource does not exist."
    Looking at the system what had happened, I found at the nwa - Configuration Management - Infrastructure - Application Modules that the XISOAPAdapter Web Module and the com.sap.aii.adapter.soap.ejb.jar EJB Module were not listed, both of them from the application sap.com/com.sap.aii.adapter.soap.app. The QAS and PRD PI System are working fine and the modules are listed correctly.
    Any idea of what can be wrong?
    Thank's a lot for your help
    Edited by: Juan Camilo Gonzalez on May 20, 2010 6:36 PM

    Re-deploy the XISOAPAdapter

  • SAP Portal Integration - The plugin secSAPR3 does not exist (FWM 02016)

    Hi Gurus,
    I have some problems with the integration of SAP Portal.
    I have created an iview in the SAP Portal with a Webi Report.
    When executed, displays the login page of InfoView without any authentication option, only request user an password. When I insert my credentials, appears the following error:
    Account Information Not Recognized: The plugin secSAPR3 does not exist (FWM 02016)  and I cannot login.
    Previous to this error message, appears an alert from the Session Management, advising me that the application will launch in other domain. I donu2019t know what problems can lead this fact.
    I have configurated the SAP Authentication in CMC and imported roles and users from BW. I can use the same user and password in both environments and works fine.
    Can anyone help me?
    Thanks in advance!
    Isaac.

    Hi IRoyan,
    First let's explain why the plugin secSAPR3 doesn't exist:
    1> when you view report from SAP EP to the report in BOE, it would use OpenDocument view application to logon and open the report.
    2> and the secSAPR3 plugin is the file of secSAPR3.jar;
    3> So it means the secSAPR3.jar is not in the classpath of OpenDocument application.
    How to resolve it:
    1> In the existing BOBJ solution, the secSAPR3.jar is included in PartnerPlatformServices;
    2> So please try to modify the web.xml under the directory $INSTALLDIR$:\Business Objects\Tomcat55\webapps\OpenDocument\WEB-INF, add the logon service URLcontext:
        <context-param>
            <param-name>config.logon.service.context</param-name>
            <param-value>/PartnerPlatformService</param-value>
        </context-param>
        <context-param>
            <param-name>config.logon.service.url</param-name>
            <param-value>/service/app/logon.do</param-value>
        </context-param>
    Hope you can understand it and it helps.
    Thanks,
    Rongliang

  • Help me soon please: error:1065 the database specified does not exist.

    hello every one,
    when i start the computer the concurrent manager service not started , when i try to start it i have this problem:
    "could not start the oracle concmgrvis_orabac service on local computer error:1065 the database specified does not exist."
    i restarted computer and tried to stop and start all services more times but no change.
    i hope if you can help meplease soon.

    check note How to Recreate the Concurrent Manager Service for Oracle Applications 11i on Windows NT
    Note:152887.1
    maybe recreting the CM will solve your issue
    Follow these steps to recreate the concurrent manager service on Windows NT:
    1. cd $APPL_TOP
    2. dos> envshell.cmd (this opens up a new DOS window. Go to that window and
    do the following).
    3. cd $COMMON_TOP/admin/install
    4. dos> adsvcm.cmd -deinstall (deinstalls the ccm service)
    should exit with status '0'
    5. dos> adsvcm.cmd
    should exit with status '0'
    Should see "Successfully installed concurrent manager"
    6. Reboot
    fadi
    .

  • Error 1065 The database specified does not exist

    Hi All,
    When I am trying the start the Concurrent Manager [[From Services.msc]] I am getting this error.
    Error 1065 The database specified does not exist
    I am also not able to connect through SQL* Plus.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    Thanks to both of you. I don't have metalink access right now.
    Hussein
    It's my Desktop. For quite sometime I have not run it and Now when I am opening the Apps I am not able to login.
    Also I don't have much idea where to check the CM log file????
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Check Point VPN-1 Securemote service causes Error 1075: The dependency service does not exist or has been marked for deletion

    Has anyone ever managed to solve this one?
    We have a problem on Windows 7 SP1 32bit systems.
    when we try to start the Check Point VPN-1 Securemote service we get this message:
    Error 1075: The dependency service does not exist or has been marked for deletion
    When we install a clean Windows 7 from an ISO the checkpoint client without any issues
    when we use the same Windows Setup source and install it from SCCM TS - the CheckPoint client doesn't start
    the client we're installing is : CP_SeucRemoteSecureClient_NGX_R30_HFA3
    which is supported for Win7 x86
    other than that there are no special prerequisites for the CheckPoint client. therefore we know the problem is local :/
    we tried to isolate and minimize the cause of the issues by trying to see the differences between a clean installation from ISO and a clean installation from SCCM
    We know for sure the problem is not from SCCM Client, Programs and Features, Updates, Group Policy
    it seems like the configuration is the same but we can't seem to find any online solution about this issue
    any suggestions?
    thanks
    Tamir Levy
    Tamir Levy

    Hi,
    Please check if all the dependencies services are running, if not, please start them:
    DNS Server
    Remote Procedure Call (RPC)
    Netlogon
    Server
    Workstation
    Any error message, please post back.
    You can also check solution in this article:
    http://support.microsoft.com/kb/269375
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

Maybe you are looking for

  • How do you change the date of the photo?

    How do you change the date of the photo? 

  • Flash 9 and 10 serious limitations

    Hello! I've been developping flash applications with AS2 for years. While Flash 9 and 10 are great, for the very first time in Flash history it had become impossible for me to do something important that I was once able to do with previous versions.

  • Snow No Worky?

    Ok, I'll try and rephrase my problem. Since updating to Snow from Leopard and applying 10.6.2. update the following do not work: Disk Utility, System Preferences (I tried to get into Accounts), and Sys Admin for the remote Snow server I want to insta

  • [solved] NO HD intel 4000 Sound?

    I installed alsa-utils, I have no sound, not sure how to correct this: I beleive my card is 0 and device is 7 **** List of PLAYBACK Hardware Devices **** card 0: PCH [HDA Intel PCH], device 0: ALC898 Analog [ALC898 Analog] Subdevices: 1/1 Subdevice #

  • Table and Figure Autonumbering

    I am currently using FrameMaker 8.0 and having a problem with the autonumbering of my tables and figures. Is there a way to have these as seperate numbering but still referencing the Chapter number? E.g. CHAPTER 1 Table 1.1 Figure 1.1 Figure 1.2 Tabl