KM Content Reports

Hi,
i´m working with NetWeaver and the Knowledge Management-Content. I´m looking for any idea to implement new reports (additionaly to reports in Mass Operations like copy, delete). Which kind of programming language i have to use it? IDE or something? how have to be it implemented? is it possible?
Thanks for any idea
best regards
Christoph

Hi Denis,
yes I followed this blog completely. The report appeared in the Reporting Repository yesterday. But now the hole Content from KM disapeared. Also in path Content Administration -> KM-Content -> Reports my report don´t appear. This is very confusing and frustrating. I use SAP NetWeaver Developer Studio Version: 7.0.11. Additionaly I discovered a help reference http://help.sap.com/saphelp_nw04s/helpdata/en/42/631A15C81F0BCCE10000000A114CBD/frameset.htm but also without result.
First of all I have to restore the KM-Content.
Ok, the report is deployed. Following Exception is printed:
java.lang.Exception:     The delivered configuration object "fy" in folder "/cm/repository_managers/reports" does not have the corresponding configclass "com.sybit.km.reporting.KMReporting"; it cannot be loaded!
fy -> Configuration XML
KMReporting -> Implementation of the Interface
Do you know what means "correspondig configclass"?
Best regards
Christoph
Edited by: Christoph Maute on Aug 14, 2008 5:29 PM

Similar Messages

  • Errors when using Web Content Reporting

    Hi,
    has anybody installed Web Content Reporting from the SDN download successful?
    We got through the db-update and ran the aggregator component.
    But we have two errors:
    1.) When restarting the service, we get the following error:
    Jan 18, 2005 11:33:06 AM # PRT-Async 0          Fatal           unexpected error
    java.lang.IllegalArgumentException: Name value is not one of the known names or integer.
         at com.sapportals.portal.prt.logger.Level.parse(Level.java:154)
         at com.sapportals.portal.prt.logger.util.LoggerFile.isLevelRequired(LoggerFile.java:124)
         at ...
    2.) Trying to use the iview webreportform we get the error:
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Resource
    Component : com.sap.portal.webreport.frontend.webreportform
    Component class : com.sap.portal.webreport.frontend.WebReportForm
    User : stuehrman_h
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Unable to Find Method : key
         at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:101)
    We are on EP6.0 SP2, Patch 28.
    Any ideas?
    Best Regards,
    Helge Stührmann

    Helge,
    did you find out why there is nothing displayed? I experience the same issue, the lists in the FORM iView are empty.
    Is the aggregator not working? I get the following in the log of:
    *--flush data begin--*
    Data_Reporter1107427396468 - opening new connection
    Current database timestamp: 2005-02-03 11:55:16.483
    Data_Reporter1107427396468 - Closing connection
    Data_Reporter1107427396468 - opening new connection
    Data_Reporter1107427396468 - commit and close connection done
    Data_Reporter1107427396468 - opening new connection
    Data_Reporter1107427396468 - connection closed
    2 user ids saved
    Data_Reporter1107427396468 - opening new connection
    Data_Reporter1107427396468 - commit and close connection done
    Data_Reporter1107427396468 - opening new connection
    Data_Reporter1107427396468 - connection closed
    11 pages saved
    Data_Reporter1107427396468 - opening new connection
    Data_Reporter1107427396468 - commit and close connection done
    Data_Reporter1107427396468 - opening new connection
    Data_Reporter1107427396468 - connection closed
    47 iViews saved
    *--flush data end--*
    *Duration: 109 millis*
    Thread will flush data in 60 minutes.
    WebReportForm.doInitialization()
    Current database timestamp: 2005-02-03 12:07:17.607
    WebReportForm.doProcessAfterInput()
    Converted 20050203,00 to Thu Feb 03 01:00:00 CET 2005 to 1107388800000
    WebReportForm.doProcessAfterInput()
    Converted 20050203,00 to Thu Feb 03 01:00:00 CET 2005 to 1107388800000
    WebReportForm.onSubmitButtonClicked()
    Skipped 0 PCD URLs
    Database accesses: 0, Cache Hits: 0
    Database access took 16 milliseconds.
    WebReportForm.doProcessAfterInput()
    WebReportForm.doInitialization()
    Current database timestamp: 2005-02-03 12:08:03.293
    Regards,
    Erik

  • Workspace Contents Report not working

    - Navigate to https://beehiveonline.oracle.com/BOLAdmin.html
    - Select Workspace Contents Report
    - A new window pops up with only the header line of the report

    Hi,
    I have just tried it and got a report with all the contents as expected.
    We have had a problem with the database server that we have just cleared which may have slowed the system down and caused the report to fail - Try again and see if it works .
    I will check the logs to see if there is another issue.
    Phil

  • Web content reporting User information

    HI Guys,
    We have been using the web content reporting tool for a while now.  We however want to have information about WHO logged on.
    If I look into the databse I can see a hashed userid is logged.  Has anyone allready tried to get this information into the reports?  (
    Does anyone has an idea to unhash this userid, or maybe better DO not hash it at all?
    Thanks
    Joachim

    It seems I am blond.  I somehow missed the parameters in the application descriptor.  It now seems to be writing the logon id(unhashed) in te logonid field.
    Hopefully it will appear in the standard reports.....

  • Problem installing Web Content Reporting

    Hi,
    we tried to install Web Content Reporting on our EP6.0 SP2 and MS SQL Server / Win 2000.
    We use the Installationmanual and executed the following SQL-Statement :
    >>
    USE master
    exec sp_addlogin 'webreporting', 'pibm001', 'B07'
    USE B07
    exec sp_grantdbaccess 'webreporting'
    GO
    exec sp_addrole 'webreporting_role'
    exec sp_addrolemember 'webreporting_role', 'webreporting'
    CREATE TABLE [WCR_AGGINFO] ("TIMESTAMPHOUR" BIGINT  NOT NULL, "AGGREGATIONLEVEL" NVARCHAR(1) DEFAULT N' ' NOT NULL, "LASTAGGLEVEL" NVARCHAR(1) DEFAULT N' ' NOT NULL, "NUMAGGREGATES" BIGINT  NOT NULL)
    ALTER TABLE [WCR_AGGINFO] ADD PRIMARY KEY ([TIMESTAMPHOUR], [AGGREGATIONLEVEL])
    CREATE TABLE [WCR_USERNODESTAT] ("TIMESTAMPHOUR" BIGINT  NOT NULL, "NODEID" BIGINT  NOT NULL, "HASHEDUSERID" NVARCHAR(28) DEFAULT N' ' NOT NULL, "USERTYPE" NVARCHAR(1) DEFAULT N' ' NOT NULL, "LOGONID" NVARCHAR(255))
    ALTER TABLE [WCR_USERNODESTAT] ADD PRIMARY KEY (  [TIMESTAMPHOUR],  [NODEID],  [HASHEDUSERID])
    CREATE TABLE [WCR_USERSTAT] ("TIMESTAMPHOUR" BIGINT  NOT NULL, "AGGREGATIONLEVEL" NVARCHAR(1) DEFAULT N' ' NOT NULL, "HASHEDUSERID" NVARCHAR(28) DEFAULT N' ' NOT NULL, "USERTYPE" NVARCHAR(1) DEFAULT N' ' NOT NULL, "LOGONID" NVARCHAR(255))
    ALTER TABLE [WCR_USERSTAT] ADD PRIMARY KEY (  [TIMESTAMPHOUR],  [AGGREGATIONLEVEL],  [HASHEDUSERID])
    CREATE TABLE [WCR_WEBCNODESTAT] ("TIMESTAMPHOUR" BIGINT  NOT NULL, "NODEID" BIGINT  NOT NULL, "COUNTER" BIGINT  NOT NULL, "PCDURL" NTEXT  , "OBJECTTYPE" NVARCHAR(1) DEFAULT N' ' NOT NULL, "IMPRESSIONS" BIGINT  NOT NULL, "VISITS" BIGINT  NOT NULL, "CUSTOM" NVARCHAR(1024))
    ALTER TABLE [WCR_WEBCNODESTAT] ADD PRIMARY KEY (  [TIMESTAMPHOUR],  [NODEID],  [COUNTER])
    CREATE TABLE [WCR_WEBCONTENTSTAT] ("TIMESTAMPHOUR" BIGINT  NOT NULL, "AGGREGATIONLEVEL" NVARCHAR(1) DEFAULT N' ' NOT NULL, "COUNTER" BIGINT  NOT NULL, "PCDURL" NTEXT  , "OBJECTTYPE" NVARCHAR(1) DEFAULT N' ' NOT NULL, "IMPRESSIONS" BIGINT  NOT NULL, "VISITS" BIGINT  NOT NULL, "CUSTOM" NVARCHAR(1024)  )
    ALTER TABLE [WCR_WEBCONTENTSTAT] ADD PRIMARY KEY (  [TIMESTAMPHOUR],  [AGGREGATIONLEVEL],  [COUNTER])
    grant all on WCR_AGGINFO to webreporting
    grant all on WCR_USERNODESTAT to webreporting
    grant all on WCR_USERSTAT to webreporting
    grant all on WCR_WEBCNODESTAT to webreporting
    grant all on WCR_WEBCONTENTSTAT to webreporting
    <<
    but we got the error :
    >>
    server: Msg 911, Level 16, State 1, Line 3
    Could not locate entry in sysdatabases for database 'B07'. No entry found with that name. Make sure that the name is entered correctly.
    <<
    Has anyone an idea?
    Thanx

    HI,
    I've got it.
    The manual didn't say to create a new database
    and I'm not the specialist in SQL.
    It seems to run now.
    Rüdiger

  • XLS standard content reports templates

    Hi
    For a customer demo / software evaluation i need to produce all the standard SAP BW business content report in Excel . The customer should evaluate the standard bw reporting. A research on the service sap doen't produce any result on this topic
    Somebody could indicate or send to me XLS of standard templates of business content report or should i install all the content, load it and download every template report
    Thanks for your help .
    Andrea

    Hello,
    Crystal Reports I don't believe has anything like that, we have sample reports but not likely what you are looking for.
    You should post your question to the B1 forum.
    Thank you
    Don

  • Need only BW Business Content Reports

    Hi All,
    Please help me identify the Business content reports only from the below modules. If u have any link for the business content,it would be helpful for me, I have tried accessing SAP help.com, but I am not having all the business content reports.
    Module Names : MM, SD, PP, QM, FI and CO
    Kindly help me!
    Regards,
    Nithi

    http://help.sap.com/saap/sap_bp/BI_V1.40/BI_EN/Html/index_EN.htm
    Then Select Business Information,
    Then Under "Scenarios" select your Module
    Then go by Scenario Documentation
    and Scenario Installation
    Regards,
    Sushant

  • Database contention report

    hello i'm running on my database 10g r2 with autotuning a database contention report with the following result
    CLASS TOTAL_WAITS TOTAL_TIME
    free list 0 0
    extent map 0 0
    system undo block 0 0
    sort block 0 0
    segment header 1 0
    bitmap index block 0 0
    unused 0 0
    system undo header 0 0
    bitmap block 0 0
    save undo block 0 0
    data block 15535 4889
    save undo header 0 0
    1st level bmb 0 0
    2nd level bmb 0 0
    3rd level bmb 0 0
    undo block 229 0
    undo header 2498 174
    file header block 1 0
    what parameters should i focus to tune the database?
    thanks in advance
    nick

    You need to put these figures into context - is the time spent on these waits significant compared to the snapshot interval and the rest of the time spent in the database.
    Post an extract from a statspack report (or AWR report if you are licensed for it) showing the "Top 5 Timed Events", and the "Buffer Wait Statistics" from a busy period, and then we might be able to offer some sensible advice.
    PS - before posting any of the report, check how to use the "code" tags (in curly brackets) to get the output into: fixed fontRegards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    "The temptation to form premature theories upon insufficient data is the bane of our profession."
    Sherlock Holmes (Sir Arthur Conan Doyle) in "The Valley of Fear".

  • WebCenter Content & Reporting

    Hi all,
    This is in reference to content reporting/auditing. Are people still using Content Tracker as a reporting engine? Or has this layer been moved up in the tree?
    We don't have a Portal/Spaces site, so I assume using WebCenter Analytics is out of the question.
    But can general auditing information be extracted elsewhere in the application stack?
    Appreciate any info!
    Con

    Hi ,
    Content Tracker is still the component that is used for reporting / tracking purpose .
    This component is by default installed on UCM server but in Disabled status . You will need to Enable it , restart UCM server and then able to use it .
    Thanks
    Srinath

  • Unused Objects Content Report runs forever

    Dear Portal Gurus
    we have a lot of content in our portal (thousands of objects created by us)
    The main part is from uploading the ERP Roles into the portal.
    Our guess is, that quite a bit is not used at all.
    It seems that the two "Unused Objects" reports in the support platform are a good starting point for cleaning up.
    When i run the Unused Objects - not assigned to Roles report on one server node, it takes forever (is running more than 24 hours)
    Does anybody else have this problem too?
    Is there a way to get a result anyway?
    I ran the Broken Delta Links Detector before, which runs successfully - even though not very fast. So these reports run in general.
    We have NW 7.0 SPS 14.
    Thanks in advance for your help and best Regards
    Martin

    Hello Michael
    Thank you for your reply.
    Personalization is mainly disabled in our portal.
    In general the deltalinks were used correctly i think.
    Of course broken delatalinks should not exist, but they get created by deleting objects not by creating deltalinks.
    I'll try it with a call.
    Kind Regards
    Martin

  • Standard Business Content Reports

    Hello,
    We are on the latest SAP BI version and we also have the BO - Cystal and Xcelsius.
    My question is when I try to look for standard business content, I couldn't find any.
    Am I missing something here, please giude me through.
    Thanks,
    Ravi.

    Hello,
    Crystal Reports I don't believe has anything like that, we have sample reports but not likely what you are looking for.
    You should post your question to the B1 forum.
    Thank you
    Don

  • How to set password in obiee delivery content reports (pdf format)

    Hi
    Dear All
    i Need your help on the Obiee !
    i hvae one Requirement how to set password in obiee delivery content (pdf format) its possible. what are the things i to do
    Kindly Advice me
    Advance Thanks
    satya

    933154 wrote: My profile says PDF, config, report, settings says PDF and I get an Excel when I run screening reports. Very odd.You may want to make sure that the file where the system setting gets stored can be updated. In your <Intradoc_Dir>\urm\data\reportpublisher\config\config.hda file, there is a result set named "RPAdminConfigInfo". The third column of that result set should match the value being shown on the configuration settings page. I've changed the format value in the UI, and this file gets updated (and thus I'm getting my screening reports in the format specified in this config file.)
    933154 wrote: Also, I wasn't clear on the second part of the question. The Screening Reports appear to use the template INTERNALITEMDETAILRPTTEMPLATE. Is that configuration set somewhere? Is there any way to have the screening reports use a different template or is changing that template the only way to change the screening report layout?Templates are not configurable in that respect - the template name values being called for a service are hardwired in the code (you'd need to override in a component - just not worth the hassle). I'd either edit the existing rtf file, or just check in a new revision to the existing one if the differences are that profound. You'd still need to conform to the BI Publisher standards/methodology in either case.

  • BI content report - overview of all objects created in Integrated Planner

    Hi.....we need to create a report containing an overview of all objects used in Integrated Planner. Do we have any standard BI content query or WAB application that meets our requirement? Please let me know whether any multiproviders exists for the same which i can use to create reports.
    Some of the tables involved are:
    RSPLS_ALVL
    RSPLS_ALVL_IOBJ
    RSPLS_ALVLT
    RSPLS_CR_STEPS
    RSPLS_SEQUENCE
    RSPLS_SEQUENCE_S
    RSPLS_SEQUENCET
    RSZELTDIR
    RSRREPDIR
    RSZCOMPDIR
    RSZELTTXT
    thanks,
    Lokesh Nandula

    hi.. try dragging in the currency field corresponding to the amount also in row/column

  • BI Content Reports listing

    Hi experts,
    I have a BI 7.0 fresh installation. Is there a list of reports available on a per module basis? And since we only need certain reports in some modules can I extract (or copy to active version) BI Content on a per report basis?

    Hi,
    For this you have good experince else you see help and find
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    Or
    In Business Contenet you can find in Report option,
    RSA1>BI Contenet>Objects accroding to Type>Query Elements>Query>Select Objects>Double cilk on that and give star Cube name star
    Eg: 0SD_C03 and find., it will display all reports on that Cube.
    Thanks
    Reddy

  • HR Business Content Reports

    Hi,
    R/3 (HR) Standard Report
    R/3
    SAP Menu&#61664;Human Resources &#61664; Training and Event Management &#61664; Information System &#61664; Reports&#61664; Attendances &#61664;
    S_PH9_46000427 - Prebookings per Business Event Type
    S_AHR_61016214 - Prebookings per Attendee
    Can any one tell me are these reports available in BW as well.
    Please give me the technical name of reports and data targets on which these are based.
    Thanks in advance

    hi,
    go to the help.sap.com->Sap Best Practices->Cross-Industry Packages->Business Intelligence->V1.33->SAP BW Scenarios->Human Capital Management (with four scenarios: Cross-Application Time Sheet, Time Management-Time and Labor, Personnel Development-Qualifications and Travel Management-Travel Expenses).
    Here you can find the business process procedure, a scenario installation guide
    HR INFOCUBES
    Go to administrator workbench T-code : RSA1 in the business content folder under info providers by infoareas. in the middle screen u can see the human resources folder under that u can find the various cubes under HR.
    For queries and all u can search in the same business content folder
    HR Infocubes and Reports
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/0a693866ff230ee10000009b38f842/frameset.htm

Maybe you are looking for

  • IPod Touch cannot be synced because of unknown error alert (-50)

    i connect my ipod touch on my lap top and i cannot sync my photos cuase an unknown error alert (-50) but on the ipod settings shows like it sync the photos but i cannot see it how can i fix it?

  • Link SAP with Excel

    Hello SAP Gurus- Every month we have to download various reports from SAP (ME2J, FS10N, FD10N, FK10N and others) and export it to excel. Than in excel, we have to mannually format the same. Is there a way we can link SAP with excel? Like if anyone in

  • How to extract attachment from ABAP proxy and store in archive link....

    Hi Experts, I need to consume an incoming email attachment in the ABAP Proxy program (POP Mail  --> PI --> ABAP Proxy) and then store this file in the IBM content management server through the Archvie Link connection. Any idea how to implement this p

  • Hierarchy Time Dependent ABAP code

    Dear Experts, I want to ask a custom BADI ABAP code to get the hierarchy of a dimension member where Time Dependent Hieararchy is implemented in that dimension. Currently we are using Interface method IF_UJA_DIM_DATA->get_hier_of_mbr to get the hiera

  • SAP career path

    HI SAP abapers, I am into SAP abap for a past two years working in SD and MM related. Now i am assigned to HR Abap ,advice me whether it would be better for my career path . since i wanted to be SD functional and concentrate move to CRM ... Please ad