Need report generator for jsp

hi,
i badly need some third party sw which can interact with jsp for giving attractive reporst like charts(bars,pie,spder...) tables etc.,
pls suggest me some user friendly and free ware
balaji

there is a tool called NetCharts Server from Visual Mining it's free and supports tomcat4.0.4
regards
chandu

Similar Messages

  • Grey (blank) EWA reports generated for Portal systems

    I am attempting to set up EWA reports for J2EE systems. At this stage despite all efforts I continue to get grey rated (blank) reports generated for our Portal systems.
    As far as I can tell all required components are installed correctly (Wily, SMD server, SMD agents etc).
    This problem seems to be restricted to our Portal systems as report data is being generated for our XI J2EE engines with the same SMD components installed.
    CGA collection jobs are running successfully against the managed Portal systems, and I have attempted to manually generate reports via transaction DSA in the Solution Manager system, using an uploaded service data xml file generated with the SMD/services utility. This also results in a blank report.
    Our systems comprise the following components:
    Wily v7.1
    SMD 13 on Solution Manager and managed systems
    Solution Manager 4.0 SP13: (ABAP):
    SAP_ABA     700     0013     SAPKA70013
    SAP_BASIS     700     0013     SAPKB70013
    ST-PI  2005_1_700     0006     SAPKITLQI6
    PI_BASIS 2005_1_700     0013     SAPKIPYJ7D
    SAP_BW     700     0015     SAPKW70015
    SAP_AP     700     0009     SAPKNA7009
    BBPCRM     500     0009     SAPKU50009
    CPRXRPM     400     0010     SAPK-40010INCPRXRPM
    ST     400     0013     SAPKITL423
    BI_CONT     703     0008     SAPKIBIIP8
    ST-A/PI     01K_CRM560     0000          -
    ST-ICO     150_700     0011     SAPK-1507BINSTPL
    ST-SER     700_2006_2     0004     SAPKITLOK4
    Solution Manager (J2EE):
    sap.com     SAP_JTECHF     7.00 SP13 (1000.7.00.13.0.20070812015644)
    sap.com     ISAGENT     7.00 SP13 (1000.7.00.14.0.20070927052333)
    sap.com     SAP-JEE     7.00 SP13 (1000.7.00.13.0.20070812015311)
    sap.com     SAP-JEECOR     7.00 SP13 (1000.7.00.13.0.20070907082334)
    sap.com     BASETABLES     7.00 SP13 (1000.7.00.13.0.20070812013638)
    sap.com     CORE-TOOLS     7.00 SP13 (1000.7.00.13.0.20070812014121)
    sap.com     JLOGVIEW     7.00 SP13 (1000.7.00.13.0.20070812001600)
    sap.com     JSPM     7.00 SP13 (1000.7.00.13.0.20070812001700)
    sap.com     CAF     7.00 SP13 (1000.7.00.13.0.20070809092315)
    sap.com     UMEADMIN     7.00 SP13 (1000.7.00.13.0.20070809093947)
    sap.com     ADSSAP     7.00 SP13 (1000.7.00.13.0.20070812011854)
    sap.com     BI_MMR     7.00 SP13 (1000.7.00.13.0.20070812013749)
    sap.com     CAF-UM     7.00 SP13 (1000.7.00.13.0.20070809092324)
    sap.com     KM-KW_JIKS     7.00 SP13 (1000.7.00.13.0.20070812014519)
    sap.com     SAP_JTECHS     7.00 SP13 (1000.7.00.13.0.20070812015951)
    sap.com     BI_UDI     7.00 SP13 (1000.7.00.13.0.20070811190400)
    sap.com     LM-SERVICE     7.00 SP13 (1000.7.00.13.0.20070812001200)
    sap.com     LM-TOOLS     7.00 SP13 (1000.7.00.13.0.20070906104634)
    Among many, many others, the following notes and documentation has been followed:
    976054 Availability of EWA for Non ABAP components
    1010428 End-to-End Diagnostics
    762969 - Grey rating for Earywatch Report
    EWA guide for NON-ABAB components
    SAP Solution Manager 4.0 End-to-End Root Cause Analysis Installation Guide
    762969 - Grey rating for Earywatch Report
    And of course all the Wily & SMD installation guides.
    Please let me know if there is any other information required. I'm posting this in the hopes that someone else has had this problem and has been able to resolve it. I have read though what seems like hundreds of threads on SMD setup problems, however not many that describe the problem I'm having exactly.
    Many thanks in advace.
    Tim

    Hi Stephan,
    You're on the right track! When I try manually generate reports for our XI systems via uploaded service data, I only get valid report data if I generate report with graphics - otherwise the report is blank.
    Alas with the Portal systems, I get no report data either way.
    The XML storage table does contain data (with XI & Portal systems) - so comms with the J2EE is working.
    Thanks for your help.
    Tim

  • Need reporting logic for Previous months sales compared to current month

    Dear Folks,
    I need to design a report that  should give cumulative sales for the month compared with cumulative sales for the same date for previous months e.g. Sales upto 21st May should be compared with sales from 1st to 21st April, from 1st March to 21st March and so on.
    Can anyone provide me a logic or CMOD code how to develop this report.
    Will be great helpful.
    Thanks in Advance.
    Rakesh

    Hi Rakesh,
         To accomplish the required output, you need to create variables that are input enabled and of processing type user eixt in the columns of your report in the query designer. I am assuming that, you would have atleast one variable which is input enabled and of processing type manual entry.
    The user would input a date ( for example may 21) in this variable. You need to capture this value in the user eixt in I-STEP 2. From this value you need to calculate the previous month and pass it to the user exit variable. Below is a sample code,
    ----variable ZPREVDATE:pass the to value from variable ZCURRDAT -
    DATA : LV_CALDAY TYPE SY-DATUM,
               LS_T_VAR_RANGE TYPE i_t_var_range,
               LV_YR(4), LV_MN(2), LV_DY(2).
    WHEN 'ZPREVDATE'.
    IF i_step = 2.
          READ TABLE i_t_var_range INTO LS_T_VAR_RANGE
          WITH KEY vnam = ZCURRDAT'.
          LV_CALDAY = LS_T_VAR_RANGE-high.
          LV_YR = LV_CALDAY+0(4).
          LV_MN = LV_CALDAY+4(2).
          LV_DY = LV_CALDAY+6(2).
    LV_MN = LV_MN - 1.
    CONCATENATE LV_YR LV_MN LV_DY INTO LV_CALDAY.
          ls_range-low = LV_CALDAY.
          ls_range-opt = 'EQ'.
          ls_range-sign = 'I'.
          APPEND ls_range TO e_t_range.
    ENDIF.
    The above code is a rough code that would help you to acheive your logic
    Regards,
    Prem

  • Need a webserver for jsp

    Hi, does anyone know how can i put jsp or servlets on my website.
    so i won't have to run j2ee -verbose.
    my site hosting company doesn't support java, do i have to get hosting company that support java?
    do you know a low cost and a good one?
    thanks

    I get dsl from DirectTv and it comes with a static ip
    so you can host your own site instead of paying aSure, this is all well and good for a small site, but the downtime on Telocity, FastAccess, and other such companies is way too high for most high traffic applications. Not to mention the drain that high traffic applications place on your bandwidth. It's nice that Telocity gives you a static IP though, unlike FastAccess who don't even offer it at an extra charge, to my knowledge.
    And what happens if your server goes down on a Friday night while you're out partying? Sometimes it's just worth paying a hosting company $20 a month.. especially if it's a corporate site. If $20 or even $50 a month breaks your company's bank, then maybe you've got other issues :)

  • PR need to generate for Service material in third party process

    Dear All
    Is it possible to create Service PR for the service material in sale order like third party material.process
    Please suggest how to configure the same?
    Regards

    Hi,
    It is very much possible. please creat the third party vendor, and the service material.
    Do partner determination for the vendor in CS module and follow the ref. links.
    http://sap-sd-articles.blogspot.com/2009/03/sap-customer-service-processing-sd-sls.html
    http://www.sap-img.com/sap-sd/process-flow-for-3rd-party-sales.htm
    Also maintain copy controls for sales order type to billing type in case you want to use SD module itself.
    Regards
    DSR

  • What is the best report generator for flex?

    Anyone
    have idea

    Unfortunately, this is the Adobe Connect Forum for Adobe Connect questions and not Flex. Please post your question in the Flex forum so you will get the right support folks attention.

  • What all things I need to install for Report Services?

    I just want to use Oracle 9IAS Release 2 for Reports purpose.Along with RDF reports I nee to use the report service for JSP reports also.
    So just I want to know what all things I need to install from Oracle 9IAS CD?
    Any suggestion.........

    2ManyDogs wrote:Read the Beginners' Guide.
    +1
    I've used Linux for several years, but only recently installed Arch for the first time. I installed Bridge Linux, Chakra, and later ArchBang, and after getting a feel for pacman (I think it's great!) and, with Bridge and ArchBang, the Arch repos, I was convinced that I wanted to go ahead with an Arch installation. Not sure if this is an option for you or not, but I actually tried two "test" installations on a spare computer first, taking detailed notes, with tabs in my browser (on another computer) opened to the Beginners' Guide and the "official" Installation Guide. I also kept the Bridge and ArchBang installations; kinda nice to be able to take a look at them sometimes to see how things are set up there. I don't know if Arch users would recommend this type of approach, but it has worked out well here.

  • Report generating tool for labview v.10.0

    Hi,
    I'm using labview 10.0, I need report generating tool for the same. I downloaded RGT 2012 & 2013 but it is not working with the labview V10.0. Let me know the link to download RGT 2010.

    Hello RKN,
    If the serial number(s) currently associated with your ni.com account include licenses for the RGT 2010, then you should be able to access it via ni.com/downloads
    Only the most recent version of the software will be available for "evaluation" download, so if you're looking for an older version you'll need to get it through ni.com/downloads or off of physical media (discs).
    If you're not seeing the 2010 version, I would check that the serial number you're using for 2010 is registered to your account - this might be different from the 2012/2013 serial number. Do you see LabVIEW 2010 available as an option for download on this page?
    If the serial number is the same and you're not seeing LabVIEW 2010 or the RGT 2010 on ni.com/downloads, I'd contact your NI sales representative or [email protected] 
    Regards,
    Tom L.

  • Report generator and timestamp

    I am trying to use the report generator for LabVIEW 6, but I'm not very succesful. The first problem is that I should precisely timestamp the data that I logged. Doing this in LabVIEW is no problem, but when I generate an excel report, all I get is the hour formatted as a decimal. And in excel I do not find how to display milliseconds. I found the precise timestamp on the NI site, and it generates timestamps up to milliseconds. But this is not so bad.
    An other problem is that I do not manage to get a chart going in excel using the report generator, tables go allright, but where do my charts go to?
    Can somebody help me? Tanks!

    I do not have a direct answer to this one but I CAN tell you that if you are finding limitations in using Excel, which seems to be the case, perhaps you should consider DIAdem from National Instruments. It is a techincal Data Management tool that far exceeds excel in Data processing and allows for "Time" channels with the correct formatting. When used in conjuction with LabVIEW it makes a great data analysis package.
    www.ni.com/DIAdem

  • Report Generator für Labview 7.1

    Hello
    I am looking for Report Generator for Labview 7.1, if somebody can give me an idea where i can find it.
    Thank´s a lot
    Helmut
    helm

    Hey helm,
    if you want to use the Report Generation Toolkit with LabVIEW 7.1, you have to request the version 1.1.2 of the toolkit.
    Take a look on this page:
    Report Generation Toolkit Compatibility with Microsoft Office and LabVIEW - National Instruments
    http://digital.ni.com/public.nsf/allkb/C9408B9F08D711E786256F3300701D01
    Regards, Stephan

  • Need to generate a Index xml file for corresponding Report PDF file.

    Need to generate a Index xml file for corresponding Report PDF file.
    Currently in fusion we are generating a pdf file using given Rtf template and dataModal source through Ess BIPJobType.xml .
    This is generating pdf successfully.
    As per requirement from Oracle GSI team, they need index xml file of corresponding generated pdf file for their own business scenario.
    Please see the following attached sample file .
    PDf file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/BPA_Print_Trx-_output.pdf
    Index file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/o39861053.out.idx.txt
    In R12 ,
         We are doing this through java API call to FOProcessor and build the pdf. Here is sample snapshot :
         xmlStream = PrintInvoiceThread.generateXML(pCpContext, logFile, outFile, dbCon, list, aLog, debugFlag);
         OADocumentProcessor docProc = new OADocumentProcessor(xmlStream, tmpDir);
         docProc.process();
         PrintInvoiceThread :
              out.println("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
                   out.print("<xapi:requestset ");
                   out.println("<xapi:filesystem output=\"" + outFile.getFileName() + "\"/>");
                   out.println("<xapi:indexfile output=\"" + outFile.getFileName() + ".idx\">");
                   out.println(" <totalpages>${VAR_TOTAL_PAGES}</totalpages>");
                   out.println(" <totaldocuments>${VAR_TOTAL_DOCS}</totaldocuments>");
                   out.println("</xapi:indexfile>");
                   out.println("<xapi:document output-type=\"pdf\">");
    out.println("<xapi:customcontents>");
    XMLDocument idxDoc = new XMLDocument();
    idxDoc.setEncoding("UTF-8");
    ((XMLElement)(generator.buildIndexItems(idxDoc, am, row)).getDocumentElement()).print(out);
    idxDoc = null;
    out.println("</xapi:customcontents>");
         In r12 we have a privilege to use page number variable through oracle.apps.xdo.batch.ControlFile
              public static final String VAR_BEGIN_PAGE = "${VAR_BEGIN_PAGE}";
              public static final String VAR_END_PAGE = "${VAR_END_PAGE}";
              public static final String VAR_TOTAL_DOCS = "${VAR_TOTAL_DOCS}";
              public static final String VAR_TOTAL_PAGES = "${VAR_TOTAL_PAGES}";
    Is there any similar java library which do the same thing in fusion .
    Note: I checked in the BIP doc http://docs.oracle.com/cd/E21764_01/bi.1111/e18863/javaapis.htm#CIHHDDEH
              Section 7.11.3.2 Invoking Processors with InputStream .
    But this is not helping much to me. Is there any other document/view-let which covers these thing .
    Appreciate any help/suggestions.
    -anjani prasad
    I have attached these java file in kixs : https://kix.oraclecorp.com/KIX/display.php?labelId=3755&articleId=354962
    PrintInvoiceThread
    InvoiceXmlBuilder
    Control.java

    You can find the steps here.
    http://weblogic-wonders.com/weblogic/2009/11/29/plan-xml-usage-for-message-driven-bean/
    http://weblogic-wonders.com/weblogic/2009/12/16/invalidation-interval-secs/

  • Help needed for Report Generator in B1 2005

    Hi,
    I have upgraded to B1 2005 and I would like to know where I can find Help files for the report generator (used to customize invoices ...). In particular, I would like to know where I can find information about the system functions available e.g. currentpage().
    Thanks in advance for your help!
    JP

    Use this link.
    <a href="https://websmp102.sap-ag.de/form/sapnet?_FRAME=OBJECT&_HIER_KEY=701100035871000437965&_SCENARIO=01100035870000000183&">https://websmp102.sap-ag.de/form/sapnet?_FRAME=OBJECT&_HIER_KEY=701100035871000437965&_SCENARIO=01100035870000000183&</a>
    In Customization section you can find a document based on PLD

  • Need to generate a report for 30 Million records

    HI Gurus,
              We have a requirement wherein we need to generate a report with 30-32 million records on a monthly basis and store the report in some external system via FTP. We estimated the size of the file to be around 2.5 GB. Is it possibloe to save the file in PDF ? or is it possible to store such file in anyother file type?
    Kindly let me know..
    Cheers...
    Nip

    Hi,
    If you are using 7.0 then you can save the file as a PDF file. Would suggest you precalculate while running the report as well.
    Cheers,
    Kedar

  • EtreCheck version: 2.1.5 (108) Report generated 4 January 2015 14:29:26 GMT  Click the [Support] links for help with non-Apple products. Click the [Details] links for more information about that line. Click the [Adware] links for help removing adware

    My Mac is very slow and applications take a long time to load, especially Safari and iTunes.  Please help.    I have run the Etrecheck report and these are results.
    Thanks Pat
    EtreCheck version: 2.1.5 (108)
    Report generated 4 January 2015 14:29:26 GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Mid 2011) (Verified)
      iMac - model: iMac12,1
      1 2.7 GHz Intel Core i5 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:32:50
    Disk Information: ℹ️
      ST31000528AS disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 999.35 GB (717.51 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Seagate Expansion Desk 2 TB
      EFI (disk1s1) <not mounted> : 210 MB
      Seagate Expansion Drive (disk1s2) /Volumes/Seagate Expansion Drive : 2.00 TB (1.66 TB free)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. iPhone
      Apple Internal Memory Card Reader
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
    Problem System Launch Agents: ℹ️
      [failed] com.apple.syncservices.SyncServer.plist
    Launch Agents: ℹ️
      [loaded] com.avast.userinit.plist [Support]
      [running] com.epson.Epson_Low_Ink_Reminder.launcher.plist [Support]
      [loaded] com.epson.esua.launcher.plist [Support]
      [running] com.epson.eventmanager.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [running] com.trusteer.rapport.rapportd.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [running] com.trusteer.rooks.rooksd.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.avast.home.userinit.plist [Support]
      [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist [Support]
    User Login Items: ℹ️
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 [Support]
      DivXBrowserPlugin: Version: 2.2 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      OVSHelper: Version: 1.1 [Support]
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions: ℹ️
      wrc [Installed]
    3rd Party Preference Panes: ℹ️
      DivX  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      GoToMyPC Preferences  [Support]
      Java  [Support]
      Trusteer Endpoint Protection  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 281.84 GB
      Destinations:
      Seagate Expansion Drive [Local]
      Total size: 2.00 TB
      Total number of backups: 78
      Oldest backup: 2013-07-28 18:09:06 +0000
      Last backup: 2015-01-04 14:29:38 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 281.84 GB X 3)
    Top Processes by CPU: ℹ️
          2% WindowServer
          1% mds
          0% fontd
          0% mds_stores
          0% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB Safari
      112 MB com.avast.daemon
      94 MB com.apple.WebKit.WebContent
      56 MB spindump
      52 MB mds_stores
    Virtual Memory Information: ℹ️
      479 MB Free RAM
      1.56 GB Active RAM
      1.11 GB Inactive RAM
      904 MB Wired RAM
      5.37 GB Page-ins
      75 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 4, 2015, 01:57:18 PM Self test - passed
      Standard users cannot read /Library/Logs/DiagnosticReports.
      Run as an administrator account to see more information.

    patbythesea wrote:
    Can I assume that with my Mac I do not need any additional virus protection software?  If I do, what should I use?
    See my Mac Malware Guide for help on protecting yourself from malware. You generally don't need anti-virus software.
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Line Item : New dispaly field for Report generated using Tcode FBL1N

    Hi Geeks,
              I want to display further fields in the line item report generated using Tcode FBL1N . i have refered OSS note 373268 it only discuss about fields available from index table ( BSID/BSAD/BSIK/BASK/BSIS/BSAS ) and special field from tables ( BKPF, BSEG, BSEC, BSED... ) using FAKP .My requirement is to add NAME1 from LFA1. Pls suggest a solution.
    Thanks,
    Karthik

    Hi Ushma,
    Its possible.No need to cpy into Z transaction.  You'll have to use a BTE for it.
    Go to FIBF.
    Create a 'Z' product.
    Put your own. Goto settings-> P/S modules-> of a customer.
    Now in the event 00001650 of z product there is a function module.
    It'll be 'LINE_ITEMS_GET_GKONT'.
    make a z by copying this and then put it here.
    Put code in that ZLINE_ITEMS_GET_GKONT.
    Also create append structure in RFPOS and RFPOSX with the fields you want.
    And activate.
    varun

Maybe you are looking for