Report Top 10 and OTHERS

Hi,
I would like to report the TOP 3 and othres as table and chart on the web report.
I am very glad if you advice how to do.
Transaction
customer1 5000
customer2 6000
customer3 3000
customer4 2000
Customer5 8000
the requirement
customer5 8000
customer2 6000
customer1 5000
OTHERS    5000
I think virtual characteristic is considerble. But I have no experience about Virtual Characteristic. Or does anyone have other good way?
Kind regards,
Masaaki

Hi Aleksi,
Thanks for your advice.
Accroding to your advice, I have tried. By now I cannot create the elements of the structure in which TOP N caracter values are filtered.
For filtering, I think variable with replecement path can be used. In this case, another query is required in which TOP N are calculated.
But this variable cannot be used in the element of the structure.
it is great if you advice how to create the ristricted characteristic with TOP N.
Kind regards,
Masaaki

Similar Messages

  • Button Top and Bottom - one displays other not

    I created a report region and added a button to it:
    Create a button in a region position
    Button name: SUBMIT
    Label: Submit
    Button Type: Image
    Image Name: #COMPANY_IMAGES#lisa.gif
    Position: Top and Bottom of region
    Then I viewed the page - the top image displays correctly, but the bottom one doesn't. So viewing page source I saw, that Top image src attribute is
    wwv_flow_file_mgr.get_file?p_security_group_id=505603948315924&p_fname=lisa.gif
    whereas the Bottom image had src of
    /i/wwv_flow_file_mgr.get_file?p_security_group_id=505603948315924&p_fname=lisa.gif
    Looks like a bug to me :-/
    I'll create two buttons now (one for top and other for bottom button), no worries, but I thought you should know.

    Kaja,
    Yes it's a bug. Thanks for letting us know.
    Scott

  • .swf inside HtmlLoader appears on top of other air content

    When there is an HtmlLoader with a .swf wmode window the .swf file appears over top of everything!
    I understand that .swf should appear above everything inside the HtmlLoader, but I don't think it should appear over top of anything outside of the HtmlLoader.
    A simple example of this would be:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <mx:HTML location="http://youtube.com" width="100%" height="100%" />
    <s:Button width="300" height="300" label="should be over all html content, .swf in html appears over it. click and watch a youtube video to see." />
    </s:WindowedApplication>
    I NEED a fix to this~!
    Even placing a second HtmlLoader with an .swf wmode window over top produces random results with the top .swf sometimes on top and other times below the lower .swf

    As you have discovered, two elements on the surface of a <div> cannot occupy the same space. The solution lies in getting one of the elements to "lie down," either by getting it totally off the surface and making it a background of it or by actually "levitating" one above the other.
    Apply a unique id to each div in which an image now lies.
    Place each image in the background of its div, defining it in your CSS.
    You will not then be able to use the image as a button, and you may want to add something else to click on.
    OR (this second way is probably better)
    Change the .FilmStill definition by adding position: relative;
    Change the .SlantedWritingFilms definition by adding position: absolute; and positioning attributes (left: 0; top: 0; for instance)
    Change each .SlantedWritingFilms <span> into a <div> within <div class="FilmStill">.
    Beth

  • Top N and Other

    I grouped a report and selected top 10 and other.  Instead of showing the word other for the other category (despite choosing the radio button to do so) it shows the last value in the group.  I think its' because I am grouping on a calculated field:
    IF (IsNull({Command.AcctPriKey}) or length(ToText({Command.AcctPriKey}))<1)
    then {Command.custname}
    else {NAcct_.Nacct}
    also
    When I group on this, it doesn't actually group on this value, it groups on the combined fields in this formula.  So the result of this field could be Kobe because NAcct_.Nacct = Kobe or because Command.custname = Kobe.  Crystal WILL differentiate and will put them in different groups.  How do I prevent that?
    also
    iif(IsNull({Command.AcctPriKey}) or length(ToText({Command.AcctPriKey}))<1), {Command.custname}, {NAcct_.Nacct})
    Doesn't work.  I don' t know why.
    Finally isn't there something like coalesce in crystal.  It's such a handy function, they should really consider supporting it so we don't have any of these issues.

    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

  • Get rid of the white space at the top and bottom of the report when Printing as PDF document

    Hello All,
    I have a wider tablix report which is 29 inches wide. I have given the paper size as custom and width as 29 and height as 11 in report properties.I have deployed it and saved it as PDF document. When I print preview the report I am using the paper size as
    tabloid (17 by 11) and selected the orientation as Landscape. I am getting the full report without any stripping but I am getting some extra space at the top and bottom when I print the report. Can anyone help me how to get rid of this space? . I checked the
    margins for the report and it was 0in. Please help.
    Thank You

    Hi There
    In Reporting Services (SSRS 2008), there are white spaces preserved in the report body by default. When the white space extends the body size beyond the width of the report, blank pages will be generated. To avoid the issue, you can set the “ConsumeContainerWhiteSpace”
    property of the report to “True”.
    Please try to adjust your margins (top + side) and hopefully this problem will get resolved
    Body Width <= Page Width - (Left Margin + Right Margin)
    Horizontal usable area:
    X = Page.Width - (Left Margin + Right Margin + Column Spacing)
    Vertical usable area:
    Y = Page.Height - (Top Margin + Bottom Margin + Header Height + Footer Height)
    Body Width <= Page Width - (Left Margin + Right Margin)
    Horizontal usable area:
    X = Page.Width - (Left Margin + Right Margin + Column Spacing)
    Vertical usable area:
    Y = Page.Height - (Top Margin + Bottom Margin + Header Height + Footer Height)
    If you have any questions please ask.
    Many Thanks
    Syed Qazafi Anjum
    Please click "Mark as Answer" if this resolves your problem or "Vote as Helpful" if you find it helpful.

  • To remove the spacing in top and bottom of XML report while printing

    Hi,
    I have developed the RTF template having page size(Page Setup->Page Size) as Custom Size(Width:19" and height:9.01").When I try to run the report thorugh the APPS,there is lot of spacing included at top and bottom of the page.This is mainly due to printer page size as A4.
    Due to the report layout,I cannot change to A4 which will make the report layout clumsy.
    Is there any kind of apps page setup to be done which will relate pagesize CUSTOM to A4.
    Please advise
    Regards,

    Hi
    Are you saying that once the document is printed ou get the space? If you run to PDF and view it with Reader then the paper size is correct?
    If so then you need to set up a prt file to specify the custom paper size. I suspect you are pushing it thru a regular A4 driver and its being resized for the paper.
    Writing print files is a little bit of an art form but check out the 'SysAdmin guide and the pasta guide for some further help.
    Regards
    Tim

  • I am facing problems while openin an application in facebook and other places.when i go to the application,an error shows and firefox closes autmatically either i send error reports or dont.....plz help

    i am facing problems while openin an application in facebook and other places.when i go to the application,an error shows and firefox closes autmatically either i send error reports or dont.....plz help

    Notes:
    1) Please use the code tags when posting code or JNLP/HTML. It helps to retain indentation and avoids asterisks and plus sings being interpreted as formatting marks. To do that, select the code/JNLP etc. and click the CODE button seen on the Plain Text tab of the message posting form.
    2) That launch file is invalid. You might check it (and the project in general) using JaNeLA.
    3) The only place that SimpleSerial class could be, that the JRE would find, is in the root of aeon.jar. Is it actually there?

  • Report Generate to File PDF, HTML,Excel and Others Format

    Dear Experts,
    I am using Oracle 9i and Developer 6i. How I convert report in PDF, HTML, Excel and others format after generating the report. When i try to generate, then giving the following error message:
    REP-0999: Unimplemented Error.
    How can I solve it, Please help me.

    Do the column headings display ok but the data does not?
    If so it may be related to the font size. i.e. the whole report may not fit on the page when scaled for pdf output.

  • Top and bottom of FireFox window disappear in seconds (the window expands too far). All other windows operate normally. Now what? I've uninstalled and reinsta

    I was using Firefox for a few years with great enjoyment. Recently I opened it and within a second or so, it enlarged to the point that the top and bottom of the screen expanded off the screen. No other windows in any other program are doing this. The only way to close it is by using the task manager. Very frustrated. What other info do you need?

    Hi ConnieHampton,
    FIrefox will remember the last window size you had, which is why it keeps opening too large each time you open and close it. To fix this, try resetting Firefox: https://support.mozilla.org/en-US/kb/changes-toolbars-and-window-sizes-are-not-saved?esab=a&s=resize+window&r=7&as=s
    If you don't see your menu bar, you may be in full screen mode, and can turn it off by following these instructions: https://support.mozilla.org/en-US/kb/how-make-firefox-and-websites-go-full-screen?esab=a&s=full+screen&r=0&as=s
    If this doesn't work, please let us know and we'll figure out another way to fix it.

  • I am frustrated trying to download the latest update. I get an error message 126 and this has been reported on many other forums.

    The latest update does not work. I continue to get an error message 126. I am frustrated that the update does not work and this is being reported on many other forums. Apple needs to pick up it's game. Very dissappointed. Has anyone got a simple fix ?

    Hey dutch5,
    Thanks for the question. I understand that you are experiencing issues installing iTunes for Windows. The following article outlines the error message you are receiving and a potential resolution:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Some Windows customers may experience installation issues while trying to install or open iTunes 11.1.4.
    Symptoms may include:
    "The program can't start because MSVCR80.dll is missing from your computer"
    "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows Error 126)”
    "Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly"
    "Entry point not found: videoTracks@QTMovie@@QBE?AV?$Vector@V?$RefPtr@VQTTrack@@@***@@$0A@VCrashOnOverf low@@***@@XZ could not be located in the dynamic link library C:\Program Files(x86)\Common Files\Apple\Apple Application Support\WebKit.dll”
    Resolution
    Follow these steps to resolve the issue:
    Check for .dll files
    1. Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    2. If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    3. Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    1. Uninstall iTunes and all of its related components.
    2. Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
    3. Re-download and reinstall iTunes 11.1.4.
    Thanks,
    Matt M.

  • I closed the address, search and other bars, ..all I have showing up top is the tabs bar, and right clicking anywhere up top does not give me the option of reopening these other bars. Help!

    sorry, meant to say that right clicking up top..everywhere I try..does NOT give me the option of reopening the address..and other...bars.

    If you press Ctrl+n to open a new window, does it have all the menus and toolbars?
    If you restart Firefox, does the display return to normal?
    If those don't work, you could try Firefox's Safe Mode. This will let you temporarily disable add-ons to work around any problem there.
    You might want to back up Firefox before using Safe Mode. For help with that, see [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information].
    Next, try starting Firefox in Firefox
    [http://support.mozilla.com/kb/Safe+Mode Safe Mode]. Be careful not to "reset" anything permanently if you didn't back up.
    Does that restore your menus and toolbars?

  • Hello everyone, my iTunes is always on top and if I open other windows remain below. How do I remove this feature? Through 1000, Elvis.

    Hello everyone, my iTunes is always on top and if I open other windows remain below. How do I remove this feature? Through 1000,
    Elvis.

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • I cannot get icloud to open for my feddly pro. I apid for feedly pro on my desk top and now I cannot use it on my other devices

    I cannot open icloud with my feedly pro.  I set up my account on my desk top and now cannot get it to open all of the blogs on my other devices

    Feedly Pro has absolutely nothing to do with iCloud.
    Contact Feedly if you're having problems with their product.

  • HT1420 I got rid of my old Gateway desk top and bought a MAC. I'd like to deauthorize the Gateway and add the MAC without deauthorizing my other shared computers. How do I do this?

    I got rid of my old Gateway desk top and bought a Mac. I'd like to deauthorize the Gateway and add the Mac without deauthorizing my other computers.

    Individual computers can only be deauthorised directly on them, so if you no longer have the old desktop the only way to deauthorise it is to log into your account on your computer's iTunes and 'deauthorise all', and then authorise/reauthorise the computers that you still have and need.

  • Report RDLC print deployment influenced by "Make text and others items window larger or smaller" is that behaviors right?

    I have my PC at the window "Make text and others items window larger or smaller" set at the 150%.
    How great was my surprise when I found that this setting of my PC broke my RDLC report print deployment.
    Do you now about this mistakes?
    Is that behavior of "Windows 8" right?
    Or is that behavior of "vs 2013" right?

    Hello,
    Since this issue is mainly related to visual studio report, I am moving this thread to
    Other Forums > Visual Studio Report Controls
    forum to get help.
    And IMO I would agree with you that it should be the right behavior, since it could affect the other printing tasks.
    Regards,
    Carl
    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.
    Click
    HERE to participate the survey.

  • There are two iMacs connected through same router in my house but one refuses to login to facebook and other logged in sites. local techies are bemused, I have just reinstalled OSX and still have the problem. Login page recycles and no errors reported.

    There are two iMacs connected through same router in my house but one refuses to login to facebook and other logged in sites. Local techies are bemused, I have just reinstalled OSX and still have the problem. Login page recycles, I get no further and no errors reported. Safari, Opera and Firefox. Deleted cookies and chain but still no action.

    If you have not already done so, read the router's user manual troubleshooting section and/or contact its customer service department/forums. 
    If still having problems, post back w/details of all you have tried to resolve the problems along w/the troubleshooting solutions that the "local techies" had you try.
     

Maybe you are looking for

  • Production order q's

    Hi all , 1) What should be the selection criteria in COOIS  for open production order list for the one month frame ? 2) How can we know that for a production order Overhead , Varience, Settlement has been carried out if the production if the order is

  • Table used in FB60

    Hi, I have created some invoice over at FB60 transaction. I would like to know where are the data store? Especially the line item, which table store the line item information when i park the invoice? Regards, Rayden

  • How to track changes incrmd_order when employee responsible group is change

    Hi experts crmd_order , nj supportrequest , when the employee responsible group is changed in need to trigger email to newly entered emp responsible group after saving. i need to know where this changes of service employee group is captured. how to s

  • Acrobat X Pro 10.1.6 (on Mac OS 10.7.5) hang error, cannot print. HELP!!!!!

    Every time I try to print a pdf (regardless of which printer I use, regardless of whether printer is networked or directly connected), I end up with that lovely little pinwheel, spinning endlessly...and have to force quit.  Each time I receive the fo

  • Mac OS 10.9 Hard Drive Space Requirements

    How much space does it require? I currently have a 500GB drive with about 270GB used. I'd like to make a 200GB partition out of the remaining free space and put 10.9 on it to play with.