Display top 5 articles in KM

Hi All,
How to do it this, I want to dispaly the top most 5 articles in one page in KM.
Thanks,
Jayan

Hi,
You can try this tutorial:
<a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7d28a67b-0c01-0010-8d9a-d7e6811377c0">https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7d28a67b-0c01-0010-8d9a-d7e6811377c0</a>
It creates a report which displays documents statistics.
Best Regards,
Avishai Zamir

Similar Messages

  • How to display top 10 values in a Webi report?

    Hi,
    I have the following requirement.
    If the report contains 'State' and 'Revenue' columns, I need to display top 10 cities with highest revenue and the revenue of the remaining cities can be summed together and should be available in a separate cell.
    I tried several formulae to achieve the requirement but was unsuccessful.
    I created a variable using the formula: '= If (Rank(<State> ,<Sales revenue>)>10 ) Then Sum(<Sales revenue>) Else 0' and added it as a column in the report. This provides the required results.
    When I add this variable as a column in the report, it displays 0 for the first top 10 values and only displays the remaining values. After that we can apply the Sum on this column to get the sum of the remaining (Other) sales revenue excluding top 10 values. However I cannot display this sum in a separate cell.
    Please provide some suggestions on this.
    Regards,
    Aditya Joshi

    Hi Aditya,
    Could you please try the following solutions to resolve the issue.
    Solution1:
    In Oracle, there is a function called: RANK() OVER (PARTITION BY () ORDER BY ()) which can be used to define an object at Universe level to return a rank position when used in a report. If you can check with your DBA - there is a similar function available for SQL Server. It should be RANK() OVER (ORDER BY colname) AS () FROM.
    Solution2:
    Or you can also try returning all rows in query, apply sort at report level & apply alerter to highlight the top 10 values.
    Regards,
    Sarbhjeet Kaur

  • Problem while displaying top of page in list display

    Hi,
    M facing problem in displaying top of page in list .
    M using following methods:-
    lr_outer_grid TYPE REF TO cl_salv_form_layout_grid,
    lr_inner_grid TYPE REF TO cl_salv_form_layout_grid,
    lr_label TYPE REF TO cl_salv_form_label,
    lr_text TYPE REF TO cl_salv_form_text.
    For displaying the top of page m using event TOP_OF_PAGE.
      CREATE OBJECT lr_outer_grid.
    *Outer grid
      lr_inner_grid = lr_outer_grid->create_grid(
      row = 1
      column = 1 ).
    *... create lable information in inner_grid
    User ID
      lr_label = lr_inner_grid->create_label(
      row = 1
      column = 1
      text = text-h03 ).
    *... create text information in inner_grid
      lr_text = lr_inner_grid->create_text(
      row = 1
      column = 2
      text = sy-uname ).
    *... set label for text
      lr_label->set_label_for( lr_text ).
    But while m going to do same coding for second parameter its not intializing length so adding extra spaces while displaying second row.
    e.g
    USERID       abcdefghjik
    PLANT         jhk            to hjk
    I want that output should look like
    USERID      abcdefghjik
    PLANT        jhk to hjk
    Please tell me the solution what should i do for avoiding extra space

    Hi Neelema,
    You could try this sample code.
    [http://sap-img.com/fu037.htm]
    [http://sap-img.com/abap/sample-alv-heading-in-alv.htm]
    Regards,
    Amit.

  • XLR - How to display top 5 customer or top 5 products?

    I am trying to modify the XL Reporter Dashboards and I am stumped by the following issues:
    Display top 5 customer
    Display top 5 products.
    Could someone please help with this project?
    Your help is appreciated!!
    John

    Hi John,
    The syntax for this is:
    FACT Top 5 BPA(*) Order By Fig.SO_DocTotal Descending
    There is a good document on the SAP portal called XLR Syntax and Functions which covers this and the XLR specific date and period type functions that I found (and still find) very useful.

  • ABAP Query to display top 5 employees who are having highest salary

    How will you write a query in abap to display top 5 emplyeee records who are having Highest Salary Among all the employees.
    Please Reply...

    Hi Kush,
    Before writing any Database Query, always keep 2 important thumb rules in your mind :
    1. Keep the number of data base access small
    2. Keep the amount of data transfer small.
    As you mentioned the Database Table has only 100 records, you can locally buffer the Table. So, make a local buffering and then you can sort the table based on the salary.
    Select *
      from Table_name
    into table gt_itab.
    Sort gt_itab by salary descending.
    Now you can read the  entries one after the another based on the index.
    Have a look at the following code for an efficient performance feature. Goto SE38 and have a look at the ABAP Examples.
    demo_select_some_columns. Package : SABAPDEMOS
    Hope this will help.
    Thanks,
    Samantak.

  • How display top 3 revenues in one block and remaining in another block

    How display top 3 revenues in one block and remaining in another block.

    create a variable as
    v_Rank =Rank([Revenue])
    then create a block level filter on the 2nd block as v_Rank Greater than 3.
    you may need to modify the variable formula as per requirement to get the rank of the row.

  • Display top,middile,bottom in prompt selection

    Hi All,
    i have one requirement like
    I created a prompt values like top,middile,bottom
    When I select top I want to display top 10 rows
    if I select bottom display bottom 31st row to last row rows
    and when I select middile display between 11th row to 30th row
    I have total 30 rows in a column
    i want case stement for the above requirement
    can you please help on this issue
    reg,
    jel

    @Deep, my thoughts too!
    Okay, OP, assuming you really have more than 30 rows, here is a way to look at your data in a very simple format:
    1) Create a Pivot Table in the usual manner with all your attributes, facts, etc.
    2) In the design mode of the Request, select another column from the Selection Pane (it doesn’t matter which because the column will be a “dummy.”) Call the column "Pagination."
    3) Click on the Edit Formula icon. Type the following SQL:
    CASE WHEN RCOUNT(1) <11 THEN ‘1-10’
    WHEN RCOUNT(1) <31 THEN ’11-30
    WHEN RCOUNT(1) >30THEN ’31 - END'
    END
    4) Put the Pagination column in the Page section of the Pivot Table.
    Now your report is divided into the 3 sections. If you want, you could break the report into more sections and if you insist on calling the sections "Top," "Middle," and "Bottom," you can replace the labels above with those words.
    You don't even need a dashboard prompt at all!

  • What's the price for a MacBook Pro Retina Display Top Case with battery in the US?

    I'd like to know what´s the price for a MacBook Pro Retina Display Top Case with battery in the US.

    Here you go.

  • Certain site displays top half of screen on FireFox but all on Explorer 8

    The URL below only displays top 50% of screen on Firefox 3.6.3 but 100% of screen on Explorer 8. To see comparison, go to my website at: http://bobenglish.com/ff052110.xls and open the file in Microsoft Excel.
    == URL of affected sites ==
    http://www.harmls.com/default.aspx?showStartPage=true

    http://www.harmls.com/default.aspx?showStartPage=true
    That page says to use Internet Explorer, and it also says "Tempo is no longer accessible from this page. ..."

  • How to display top n records(sorted by no of defects) within date range

    I would like to display top n production orders(sorted by defects linked with each order) within the date range entered by the user.
    Please advice.
    I have 3 parameters to my report:
    1. n(n is no of top records to be displayed)
    2. From date
    3. To date
    Appreciate quick response.
    Regards,
    Hari

    if you use the parameters in the report by placing them in the record selection it should display the records within your date range.
    if {date field} in ?start to ?end then true

  • How to display top 10 customers in FR

    Hi,
    I've a requirement in FR. When i select an entity from POV, it should display top 10 customers out of 100 customers in that entity (for ex. top revenue customers). Can any one pls. help on how we can achive this dynamic reporting through FR. The rank function displays the ranks, but what i would like to see is, the report should display top 20 customers only. Pls. help
    Thanks,
    PVR

    Hi,
    I am not sure what version you are, from version 9.3 I think there is a "Top" function, just highlight the row, tick the option for "Top", set the number and the column
    Failing that if you need to use rank could you not hide the column.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Pie chart to display top 5

    I am using pie chart to display the top 5 countries based on the values. For this, i created an advanced option where on the change of is country with TopN being 5 including others and show values is Pth pecentile (P=50) of @value percent.
    The problem is that the pie chart percentage is showing as 52.2% for a country and the detail information below is showing 39.38% which is calculated based on value / total value * 100. The same formula is used for the pie chart as well.
    Is this how its supposed to behave or should it show the correct value on the pie chart? How can i achieve the correct value.
    thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:

  • Displaying "Top N and Other" in Pie Chart

    Hello All,
    As the subject implies, we are trying to display in pie charr top 5 products by sales and bucket rest of the product sales in "Others". Oracle provided documentation gives below code. But I am not sure as how we can package this in view which can be used in chart
    RETURN "Top5Companies" AS SELECT
    "coName" AS "companyName",
    SUM("txnID") AS "numTxn"
    GROUP BY "coName"
    ORDER BY "numTxn" DESC
    PAGE(0,5)
    RETURN "Others" AS SELECT
    'Others' AS "companyName",
    SUM("txnID") AS "numTxn"
    WHERE NOT ["coName"] IN "Top5Companies"
    GROUP
    Edited by: 948378 on Sep 5, 2012 9:46 AM

    Hi, 
    For your first question, Other should show up if you have more than 10 groups generated.  Looking at the Group Tree, how many groups show up? 
    What happens if you did a Top5 instead of 10?  Does Other show in the Group Tree? 
    For your second question, Crystal will group on unique values regardless if the group is on a field or formula.  I have a sneaking suspicion there is either a leading or trailing space in the name.  Use the Trim function to remove the white spaces like: 
    IF (IsNull({Command.AcctPriKey}) or length(ToText({Command.AcctPriKey}))<1)
    then Trim ({Command.custname})
    else Trim ({NAcct_.Nacct});
    For your third question, throw the iif format out.  That was introduced because of dBase years ago and most people I know hate using it.  Go with the traditional.  Easier to read and figure out. 
    Good luck,
    Brian

  • Apple LED Display top and bottom

    Hello, is it normal for the display to be brighter at the top of the screen vs the bottom half? I've noticed that it's slightly more "dark yellow" at the bottom than at the top. Thanks!

    Ahhh, that must be it. I can't connect it to my Mac Pro, since it's not long enough. Waiting on my extension to arrive on Friday. Once I connect the USB, does it work with F1/F2 keys or only in Display settings? Thanks!!!

  • Apple TV not displaying "Top Movies" Thumbnails in Main Menu

    Ok, so I have the latest updates and have done the following:
    1. Have restarted my Apple TV multiple times-no change.
    2. Have reset my Apple TV multiple times-no change.
    3. Have restored once by connecting it to my macbook and restoring via iTunes-no change.
    Note: if I restart, the thumbnails reappear, but once the Apple TV powers off, the thumbnails "disappear" from the main menu about 80% of the time. The TV Show tumbnails display correctly in the main menu without any issues, along with tumbnails "in" Netflix and all other apps.
    Any ideas?

    Hello mijre64,
    For issues with playing your purchased content, take a look at the article below. It will have start with doing a reset on your Apple TV and then verifying your Wi-Fi connection. Let me know if this works or if you need further assistance. 
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/en-us/TS4546
    Regards,
    -Norm G.  

Maybe you are looking for