Tricky Reports Stuff...

I'm having a technical issue with Reports. We run Forms 6.0 (not i) and Reports 6, and we are trying to dynamically insert conditional statements into the report. Conditional statements will be stored in a DB table. The client has mandated the conditional statements will contain verying type styles and properties of text (some bold, some underline, some italics, some different type face).
Report looks something like this:
Statement 1. blah blah blah blah
blah blah blah.
Conditions:
1. You MUST (in bold) NOT (Bold and Underline) operate during the day.
2. At no time can ANYONE (Bold) blah blah blah.
Depending on some criteria, the conditions may not need to be inserted into the report. There may be one or more conditions (or no conditions at all).
We tried building the report and condition statements in RTF, however RTF doesn't seem to restore from the DB and insert into the report and retain its formatting. I was told to use OLD (install Word), but there has to be a cleaner way to provide the functionality. Next to try is HTML and saving the condition statements as an HTML string. Are there any tricks to storing HTML in a DB table, or inserting HTML into a report?
Report output format doesn't matter as no matter what it is, we will be converting it to PDF.
Any help would be greatly appreciated.
null

Hi,
I have two Western Digital external HDs with nearly exactly these specs.
Partitioned them with GUID partition scheme and have Partition 1 as bootable OSX clone and partition 2 with FAT32 for file storage/sharing between OSX and Windows.
So, what you want is what I have/use right now.
Regards
Stefan

Similar Messages

  • Tricky Report

    Hi,
    I've got a tricky reporting problem that I'm trying to work through.  We have a monitoring database that I pull from to create a report.  I have the report setup to show errors grouped by day in the week, then by an office.  The problem however is that for each office, there are a number of monitors that show error durring a network outage, so the report shows multiple errors for one outage. Ideally we would only show one error durring the outage.
    As this report adds total downtime for a certain period, I don't want to count multiple nodes if they are related to the same outage. The database has a field which indicates a parent node. Somehow I need to test each record, to see if it's parent id was also in error during the same time period. If the parent was in error during the same time period then I need to supress that record. If the parent wasn't in error in the same time period then I need to show the record.
    I haven't come up with a good way to do this. I have found some functions previous & next which allow to check against the previous and next records....however the parent may be several records a away.  The only solution that I can think of is to use an array. Somehow I need to create an array of all of the records, then for each record compare and see if the parent_id is also in error. This is where I'm having problem.
    So the real question.....
    Does anyone know how I can use a while loop, to loop through the records in the report so that I can load an array? Or if anyone else has a differen't idea to a solution with the problem that would be great also.
    thanks,
    Rody

    I'm a little dismayed that the activity level appears to be a bit dead. I have tried to answer other questions posted in this forum, (if I didn't answer it's because i have no clue on how to help.)
    Anyways if you have idea's for the above situation please respond.
    thanks

  • Self Joining and Inline Query. A tricky report.

    I am stuck with a very tricky situation.Please help.This is PROD issue.
    I have written a SQL code which has 1 inline queries,and displays the right results
    with the right report output
    Dont get confused.Just go thru this.
    select   pie.id_inst_code,
             ISNULL(PN.Active, 0)                 'Active',
    from position_master_input_event pie,
    (select  insx.id_inst_xref_type,insx.id_inst_xref,count(*) 'PrimaryListing'
    from instrument ins, instrument_xref insx
    where ins.id_inst = insx.id_inst
    and   insx.flg_active = 'Y'
    and   ins.flg_active  = 'Y'
    group by insx.id_inst_xref_type,insx.id_inst_xref
    )PN
    where     id_entity = 'AGL'
    and       pie.id_inst_code *= PN.id_inst_xref
    and       pie.id_src_inst_code_type*= PN.id_inst_xref_type
    group by  pie.id_inst_code,PN.Active,
    Table :Instrument_xref
    id_inst      id_inst_xref_type    id_inst_xref  flg_active
    0372285      SE                   B0DV8Y9       Y
    0372285      IS                   GB00B03MLX29  Y
    Table :Instrument
    id_inst      id_inst_xref_type    id_inst_xref  flg_active  flg_primary_listing
    0372285      SE                   B0DV8Y9       Y           N 
    OUTPUT:
    id_inst_xref                      Active
    B0DV8Y9                           1
    PERFECT.Works fine
    2) Now comes the tricky part.:
        0372285 also has GB00B03MLX29 which has flg_active to Y and which also maps to 0372285.
        Am I right?
        New reportOutput
        id_inst_xref                      Active   PRIMARY ISIN
        B0DV8Y9                           1        1
        So,now I want a SELF JOIN this way built into the code:
        (hardcoded values work)
        (i)
        select  a.id_inst_xref
        from instrument_xref a,
             instrument_xref b
        where b.id_inst_xref ='B0DV8Y9'
        and   b.id_inst = a.id_inst
        and   b.id_inst_xref_type in ('SE','IS')
        and   a.id_inst_xref =  'GB00B03MLX29'
        (ii)
         select count(*) 'PrimaryISIN'
         from instrument ins,
             instrument_xref insx
         where ins.id_inst = insx.id_inst
         and   insx.flg_active = 'Y'
         and   ins.flg_primary_listing = 'Y'
         and   ins.flg_active = 'Y'
         And now LINKING ALL :
        select   pie.id_inst_code,
             ISNULL(PN.Active, 0)                 'Active',
        from position_master_input_event pie,
        (select  insx.id_inst_xref_type,insx.id_inst_xref,count(*) 'PrimaryListing'
         from instrument ins, instrument_xref insx
         where ins.id_inst = insx.id_inst
         and   insx.flg_active = 'Y'
         and   ins.flg_active  = 'Y'
         group by insx.id_inst_xref_type,insx.id_inst_xref
        )PN,
        (select count(*) 'PrimaryISIN'
         from instrument ins,
             instrument_xref insx
         where ins.id_inst = insx.id_inst
         and   insx.flg_active = 'Y'
         and   ins.flg_primary_listing = 'Y'
         and   ins.flg_active = 'Y'
          and     insx.id_inst_xref = ( 
                                           select  DISTINCT  a.id_inst_xref
                                            from    instrument_xref a,
                                            instrument_xref  b
                                      where b.id_inst_xref = 'B0DV8Y9'
                                          and     b.id_inst = a.id_inst
                                          and     b.id_inst_xref_type in ('SE','IS')
                                       and    a.id_inst_xref =  'GB00B03MLX29'
        where     id_entity = 'AGL'
        and       pie.id_inst_code *= PN.id_inst_xref
        and       pie.id_src_inst_code_type*= PN.id_inst_xref_type
        group by  pie.id_inst_code,PN.Active,
        THE Self join works fine as long as it is hardcoded.
        But assume there can br multiple such situations as the above,and I dont want to
        hardcode the values,how can I build the NEW REPORT by SELF JOINING.
        Please can someome help.This is a tricky one.
        Is there a better way to this

    Isn't this the same question as:
    Passing values dynamically Froman 'INLINE Query' to a 'SUB QUERY'
    and
    Another query regarding Inline Query and Self Join and pass Column Values

  • Tricky Report for Sub totalling. Please See

    Hi,
    First of all this is a repeated question and I thank
    all of you (cartena,petpandian,FS and the lot) who have
    sent in replies.
    I need to create a report in 9i
    This is the table data :
    TRANS_ID   ACC_ID DEL        CCY        AMT TRADE_DAT LENDER
    LEL0002045 SLEND  RECEIVE    GBP       1200 02-AUG-05 LENDERA
    LEL0002053 SLEND  DELIVER    GBP       1000 02-AUG-05 LENDERA
    LEL0002003 SLEND  DELIVER    KRN       1000 11-AUG-05 LENDERA
    LEL0002001 SLEND  DELIVER    GBP       1000 08-AUG-05 LENDERA
    LEL0002002 SLEND  DELIVER    USD       1000 09-AUG-05 LENDERAThis is the Report Format I want :
    TRANS_ID   ACC_ID DEL        CCY        AMT TRADE_DAT LENDER
    LENDERA
    LEL0002045 SLEND  RECEIVE    GBP       1200 02-AUG-05
    LEL0002053 SLEND  DELIVER    GBP       1000 02-AUG-05
    LEL0002003 SLEND  DELIVER    KRN       1000 11-AUG-05
    LEL0002001 SLEND  DELIVER    GBP       1000 08-AUG-05
    LEL0002002 SLEND  DELIVER    USD       1000 09-AUG-05
                      RECEIVE    GBP       1200
                      DELIVER    GBP       2000        
                      DELIVER    USD       1000
                      DELIVER    KRN       1000You can get multiple CCY with 'RECEIVE' or 'DELIVER' for a particular
    lender
    There can be a CCY with 'YEN' for LENDERA with DEL as 'DELIVER'
    I have used layout style 'GROUP LEFT' while creating the report (thru Report wizard)
    In group fields, I specified
    LENDER as (Level -1)
    DEL as (Level -2)
    CCY as (Level -3)
    And in Sum fields
    Give sum(Amt).
    The SQL Query I am using in the SQL is
    SELECT trans_id, acc_id, del,ccy,amt,trade_date,lender,
           decode(DEL,'RECEIVE', AMT,0) as REC_AMT,
           decode(DEL,'DELIVER', AMT,0) as DEL_AMT
    from TableAThe output comes this way using GROUP LEFT layout:
    LENDERA    RECEIVE       GBP    LEL0002045      1200
                                    Total           1200
               DELIVER       GBP    LEL0002053      1000
                                    LEL0002001      1000
                                    Total           2000
               .... Can anyone suggest a better altenative? Thanks a lot

    I have got the SQL running if I run this from the SQL prompt and it gives me the correct result (Thanks a lot cartena for the grouping SQL)
    But now, if I run this same SQL in report wizard, the output is not correct
    If I run this in SQL :
      Select lender,
                trans_id,
                del,
               ccy,
               sum(amt) as amt from TestReport
       group by grouping sets ((lender, trans_id, del, ccy),(lender, del, ccy))
       order by
       lender, trans_id, del, ccy
       Output:
    LENDER                                   del             ccy                     AMT
    LENDERA                        LE     RECEIVE   GBP             1000
    LENDERA                        LE     RECEIVE   GBP             1000
    LENDERA                        LE     RECEIVE   KRN             1000
    LENDERA                        LE     RECEIVE   GBP             1200
    LENDERA                        LE     DELIVER   USD             1000
    LENDERA                                DELIVER    USD             1000
    LENDERA                                RECEIVE   GBP             3200
    LENDERA                                RECEIVE   KRN             1000
    LENDERB                                RECEIVE    KRN            1000
    LENDERB                                RECEIVE   KRN             1000But which layout wizard should I use in REPORT ?
    Group Above or Group Left?

  • JRC (upg. to CR4E) - Report w Subreport - Oracle DB -  Null Pointer Excepti

    Hi
    We have a Crystal Designer/Developer Version 11.5.10.1263. We develop reports using this.
    Most of the reports have SQL Command mode design with JNDI/JDBC connection. It gets deployed with our Web application. And during runtime, when users access these reports from our web application, we typically use Java Reporting Component with Crystal Report Viewer SDK to open and display the report to the user.
    Besides other issues, current problem I am having is:
    I have a sub-report in my report. I am connecting to Oracle database. If this sub-report does not return any rows, I was getting a Null Pointer Exception. This seems to be a known bug. This happened to us when we had just the above mentioned components.
    We recently upgraded just the JAR libraries to the ones packaged in CR4E (Crystal Reports For Eclipse) - initially to get more exporting capability.This upgrade gets us past the Null Pointer Exception issue.
    Now, I am getting an error like "Unexpected database connector error". Please see the exception stack trace below if needed. Since we are a product and this display is specific to one out of about 100 different clients; with all the time we spent on making this report stuff work against this oracle DB client, we had finally ended up creating the display in JSP into our general product just for one of about 100 clients. Client must be the Lucky one...As a developer, I felt really frustrated.
    One note:- SQL Server DB works perfect.
    Other thing - Do we need to change any API calls after upgrading the JARS from standard JRC/Viewer to CR4E package?
    11:46:57,540 INFO  [STDOUT] 11:46:57,540 ERROR [JRCCommunicationAdapter]  detected an exception: Unexpected database connector error
         at com.crystaldecisions.reports.datafoundation.DFQuery.for(SourceFile:632)
         at com.crystaldecisions.reports.datalayer.a.do(SourceFile:1621)
         at com.crystaldecisions.reports.datalayer.a.a(SourceFile:1404)
         at com.crystaldecisions.reports.dataengine.m.b(SourceFile:334)
         at com.crystaldecisions.reports.dataengine.j.b(SourceFile:515)
         at com.crystaldecisions.reports.dataengine.m.o(SourceFile:408)
         at com.crystaldecisions.reports.dataengine.m.a(SourceFile:173)
         at com.crystaldecisions.reports.dataengine.ContextNode.a(SourceFile:114)
         at com.crystaldecisions.reports.dataengine.ContextNode.a(SourceFile:95)
         at com.crystaldecisions.reports.dataengine.j.case(SourceFile:1080)
         at com.crystaldecisions.reports.dataengine.h.<init>(SourceFile:108)
         at com.crystaldecisions.reports.dataengine.DataContext.a(SourceFile:254)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:4660)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:4574)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.new(SourceFile:2652)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.byte(SourceFile:2610)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.try(SourceFile:2282)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.int(SourceFile:2442)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.I(SourceFile:1013)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.if(SourceFile:4816)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:2020)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:309)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:250)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.u.a(SourceFile:922)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.u.e(SourceFile:784)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.u.for(SourceFile:242)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.aa.a(SourceFile:64)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:243)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.a(SourceFile:210)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.v.a(SourceFile:185)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.v.a(SourceFile:230)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:359)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:133)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ColumnFormatter.for(SourceFile:120)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.aa.a(SourceFile:64)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.a(SourceFile:511)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.a(SourceFile:452)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.a(SourceFile:369)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ah.a(SourceFile:72)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ReportColumnFormatter.a(SourceFile:86)
         at com.crystaldecisions.reports.formatter.formatter.paginator.SinglePageFormatter.a(SourceFile:332)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:359)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ai.for(SourceFile:133)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.ColumnFormatter.for(SourceFile:120)
         at com.crystaldecisions.reports.formatter.formatter.paginator.SinglePageFormatter.for(SourceFile:177)
         at com.crystaldecisions.reports.formatter.formatter.objectformatter.aa.a(SourceFile:64)
         at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.do(SourceFile:737)
         at com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.formatPage(SourceFile:236)
         at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.byte(SourceFile:219)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1909)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
         at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
         at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
         at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
         at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
         at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.getPage(SourceFile:767)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.getPage(SourceFile:324)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.getPage(SourceFile:149)
         at com.businessobjects.report.web.event.s.a(SourceFile:158)
         at com.businessobjects.report.web.event.s.a(SourceFile:127)
         at com.businessobjects.report.web.event.bt.a(SourceFile:47)
         at com.businessobjects.report.web.event.bw.broadcast(SourceFile:93)
         at com.businessobjects.report.web.event.am.a(SourceFile:53)
         at com.businessobjects.report.web.a.t.if(SourceFile:2104)
         at com.businessobjects.report.web.e.a(SourceFile:300)
         at com.businessobjects.report.web.e.a(SourceFile:202)
         at com.businessobjects.report.web.e.a(SourceFile:135)
         at com.crystaldecisions.report.web.ServerControl.a(SourceFile:607)
         at com.crystaldecisions.report.web.ServerControl.processHttpRequest(SourceFile:342)
         at org.apache.jsp.ipalHistoryReportViewer_jsp._jspService(org.apache.jsp.ipalHistoryReportViewer_jsp:201)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.Standar
    11:46:57,540 INFO  [STDOUT] dEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         at java.lang.Thread.run(Thread.java:595)
    11:46:57,634 INFO  [STDOUT]  CustomReports - finally Calling CrystalReportViewer dispose ...

    I have exactly the same problem. Had posted it on the forum last week, but haven't received any response yet. I just file a single support case ($195) with SAP.  If I hear anything useful back, will keep you posted. Please let me know if you are able to resolve the problem.
    In my case, I can get my report to work with a single subreport.  When I put multiple subreports, I get the same error as you are currently getting.
    Check if your report has any special section formatting (conditional suppression etc).  Try to remove those to see if it helps at all.

  • Creating a "bunched" report (intercompany)

    Hi Gurus,
    I have a tricky report requirement that can be achieved using multiple reports but that is not ideal and will make it difficult to maintain.
    The report is an intercompany report with Entity, Interco member and Account in the rows.  The report needs to have Entity on the outside with each intercompany partner listed and then a subtotal for each intercompany member and then each entity member.  Within each intercompany member, a "group" of accounts needs to be shown (intercompany account groups).  Finally, a subtotal for the total of an account group needs to be shown beneath all the entities and intercompany, then this is repeated for a new account group, as follows:
    Is this possible with one report?  I'm open to using VBA or any other tricks to turn this into one report.  The current problem is that the Entity and intercompany need sorting, but if they are sorted then the accounts will not be bunched together as shown above.
    Appreciate any help or advice on this.
    Best,
    Chris

    Moderator message: you said your  issue is solved but did not mark your discussion as such, please see
    How to close a discussion and why

  • RE: Report Writers/Managers

    We have started using Crystal Reports for all our reporting requirements in the FORTE applications accessing an Oracle database. For general reporting eg daily, monthly reports etc, we use Crystal INFO. This package uses the Crystal Report engine but also includes a scheduling and distribution component. No more writing report programs in COBOL for us and we do not intent to write any in Forte either!
    Kam Chow
    Mazda Australia
    From: Max Branch
    Sent: Wednesday, April 23, 1997 1:41 PM
    To: [email protected]
    Subject: Report Writers/Managers
    We are putting our first Forte project together and note that there is
    a significant "batch" reporting requirement. Our site's background is
    MVS COBOL based development. Very typical reporting stuff....and lots of
    it !! We currently use CA-VIEW and CA-PREVAIL on the MVS platform and
    would like to replicate this kind of report/report management
    capability.
    We are deploying to a WIN95/NT clients and HP-UX/Oracle server....SAS
    would like the business, Andyne too......thoughts and observations
    greatfully received.... note that Actuate is not yet in the country ....
    and we are yet to be approached by Crystal Reports.... Should we
    approach them/others ??
    Max Branch
    Sydney, Australia

    Please check the following links
    Report Painter/Writer
    report painter and report writer
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).

  • Report Writers/Managers

    We are putting our first Forte project together and note that there is
    a significant "batch" reporting requirement. Our site's background is
    MVS COBOL based development. Very typical reporting stuff....and lots of
    it !! We currently use CA-VIEW and CA-PREVAIL on the MVS platform and
    would like to replicate this kind of report/report management
    capability.
    We are deploying to a WIN95/NT clients and HP-UX/Oracle server....SAS
    would like the business, Andyne too......thoughts and observations
    greatfully received.... note that Actuate is not yet in the country ....
    and we are yet to be approached by Crystal Reports.... Should we
    approach them/others ??
    Max Branch
    Sydney, Australia

    Please check the following links
    Report Painter/Writer
    report painter and report writer
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).

  • Can I use Oracle Report Server to print from APEX? How?

    Hello, we have Oracle Application server, Oracle Report server and now we just installed APEX and doing a pilot project. Since we don't have BI Publisher, how can we use our Oracle Report server to print from apex report? Can it be done and if yes where can I get some detail info that I can share with our DBA?
    I have in past asked questions about the printing issues but I have been refered to http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html#01 section 5 which talks about another installation.
    Thanks so very much for any info.
    -iahmadi

    You can use FOP, but the formatting of the xsl (Xml Style Sheets) takes a little work. If you have the Oracle Reports server up and access to the development product, why not go that route?
    You want the filtering and sorting and searching, yes, but then you also want to print them out.. Then you would probably be best looking at replacing the Oracle Reports setup with BI Publisher. You can convert Most your reports over to bi publisher layouts easily.. (I have heard of some reports that do require recreating in Bi Publisher from Oracle Reports..)
    Then you can have your Apex Reports and call Bi Publisher from APEX and everyone wins..
    Is your Oracle Reports stuff used by non-APEX applications, that could be modified to use Bi Publisher?
    Thank you,
    Tony Miller
    Webster, TX

  • J2EE - Reports using Business Objects.

    Hi Friends,
    We have a requirement to generate reports in our project using Business Objects v5.1.8.
    Some users/Actors will have assess the reports through Webi of business objects and other requirement is to do some selection criteria in web page and once you get the right details, we should be able to generate report directly from web page (Calling .rpt file of Business objects), J2EE application calling business object report. (similar to calling PDF file in browser).
    Did any body of you did similar thing and is it possible to do through business objects, I know we can do from crystal reports. Do we need any plug-in ?
    I would be grateful, If you have sample code and willing to share.
    Thank You
    srikanth

    oh no, you have that as a requirement! :) well, have fun!! (the guy beside me develops our crystal reports stuff all day).

  • Types Of Reporting.

    Hi Experts,
    This is Guru. New bie to ABAP. One of my friend said as a fresher in ABAP programming i must first focus on <b>Reporting stuffs</b>. Can anyone say what are the types of reporting in ABAP programming ?
    Thanks in advance,
    Guru.

    Hi,
    1.     Developed a report to display all purchase order whose goods receipt have been made but not invoiced.
    2.     Developed a Division wise Sales Analysis report.
    3.     Developed a report to display unconfirmed Purchase Orders.
    4.     Created a report to display a list of Sales orders, Ordered by customer who doesn’t have credit limit more       
    5.     Developed a Stock Tracking report, which shows stock of various materials in various Storage locations.
    6.     Developed a report for customer out standings.
    7.     Developed a report for monthly dispatches.
    8.     Developed a report for displaying the vendor balances.
    9.     Created Vendor Performance report, which lists the vendor name, Materials Supplied, planned, Actual delivery items, Payment terms and Prices.
    10.     Created an Interactive Reports on blocked invoices.
    11.     Report to display all material rates by using Material number, Sales Organization, and Distribution Channel and condition type.
    12.     Developed a report which will list out all the purchase order details and the secondary list contains all the information about the supplier.
    13.     Developed an interactive report which displays the list of purchase requisitions in the basic list according to the user’s selection screen and which in turn allows the user to modify the purchase requisition in the secondary list.
    14.     Created an interactive report to list the purchase orders details for a vendor.
    15.     Created Report to Display the Details of Sales Quantity in the given date. Outputs Material No, Material Disc, Plant, current Month Sales, Previous Month Sales, Last Year same Month and Date (Quantity). Data was extracted from  VBRK, VBRP.
    16.     Developed ABAP List View report program for Material Values to display list of all materials under a plant. Selection screen contains plant, material type.
    17.     Developed a Report To print report of all the items whose quantity is bellow re-order level.
    18.     Created a report to display sales order and dispatch details.
    19.     Developed a report to display the list of Inventory Differences by adding two new fields.
    20.     Developed AP aging report sort by Invoice date and Receipt date over dues Analysis.
    21.     Developed a report for mass selecting and printing Material Master Changed History.
    22.     Developed an interactive report to display sales orders for particular customer, items for particular order.
    23.     Developed a report that displays list of purchase requisition with details like MRP controller, release date and unit of measure.
    24.     Developed a report to display unused material numbers.
    25.     Developed vendor master analysis report, which lists the material including material number and storage location.
    26.     Developed an Interactive list for purchase requisitions at a given plant.
    27.     Developed a report to display list of purchase order details.
    28.     Developed a report, which lists delivery number, delivery quantity, customer number, material number and material description for a given shipping point.
    29.     Developed a report to display all sub-totals and grand totals for a particular vendor.
    30.     Developed a report that shows a list of purchase requisition and purchase orders for a selected vendor, by material group listing by material.
    31.     Developed a report to get list of purchase orders created during a particular month.
    32.     Developed the outstanding purchase order report based on acknowledgement date.
    33.      Developed material description report to display list of materials, language key, material description based on material type and plant.
    34.     Developed a report that lists purchase order entered into SAP, limit the selection to purchase order created during a specific period.
    35.     Created report, which will print the material stock, which will find out material group for material and find out the material description for each material.
    36.     Created an interactive report, which lists the customer details in the basic list. If the customer number is selected, the corresponding sales orders and item details will be displayed in the secondary lists. Drill down to transaction “MM03” is also provided.
    37.     Created utility report to copy batch characteristics from one batch to already existing another batch.
    38.     Created an ALV report to provide detailed information regarding all Materials by taking plant, material and material type as input.
    39.     Generated a warranty evaluation report.
    40.     Generated a report, which list out all the customers who have the warranty period for their product.
    41.     Developed a report to list warranty expired customers.
    42.     Created Vendor Performance Report that lists Vendor Name, Materials Supplied, Planned & Actual Delivery Times, Payments Terms and Prices.
    43.     Reports created to list out the sales documents created everyday, for credit approvals.
    44.     A report to monitor transportation details for delivery schedule.
    45.     Block for posting and mark for deletion all inactive vendors in all company codes and purchasing organization levels for period of 2 years.
    46.     Report to generate Material valuation.
    47.     Generated an interactive report, which will list out all the purchase order details and all the information about suppliers.
    48.     Generated a report listing stock position for a chosen material for chosen storage location in a given plant.
    49.     Developed a report on goods issue, which generate the information about how much stock issued to the customer according to the sales order for a particular period.
    50.     Delivery due list: This report program generates list with details of quantity available, quantity planned, quantity delivered and quantity still to be delivered for sales orders and stock transport orders based on shipping point.
    51.     Involved as a team member in generating interactive report program to give details on sales orders, vendors, customers for a particular material.
    52.     Created a report to display item, material, quantity, purchase order number, vendor and goods receipt date based on goods receipt number.
    53.     Developed an Interactive report that list out all the materials for a given plant. Secondary List contains Vendor who supplies the chosen material
    54.     Monthly warehouse report.
    55.     Report on customer payment, items cleared and discounts.
    56.     Material availability report.
    57.     Report on Dollar Value of Material, quantity on hand, average monthly quantity used.
         Line item details for financial journal entries.
         Financial gross sales margin.
         Ending inventory balances.
    58.     Shippable details report.
    59.     Report for all blocked invoices.
    60.     Purchase order wise GR document   and invoice receipt details line item wise.
    61.     Open sales order report. – VA05
    &#61558;     Created Classical and Interactive report to display all the Purchase Orders for the Purchasing Organization, Purchase groups and display the total, and individual values of all the Purchase Orders.
    &#61558;     Generated an Interactive report that displays vendor wise Purchase Order details.
    62.     Created an interactive report to display Sales Order data. In the basic list it displays the header data like SO number, created by, customer number etc., At the first level, SO screen and Customer master data is displayed by selecting appropriate item in the basic list. At the second level, report displays selected line item for the Sales order
    63.     Created a Report to display the pricing conditions in a sales order with standard details.
    64.     Created an report for purchase variance.
    65.     Created report to compute and display the list of outstanding orders by ship-to-party or sold-to-party.
    66.     A report on Sales Register:  It lists the details like Invoice No, Date, Customer no, Sales value, Sales tax etc.
    67.     A Report to display the commissions for the sales department sorted by sales representative.
    68.     A Report to get the status of a particular delivery items with respect to a customer from specific shipping points over a given period.
    69.     A Report to show the list of Vendors with Blocked Payments.
    70.     An Interactive list showing all the Sales Areas, Customers of that sales area, Materials Ordered by them, information regarding materials and their net price.
    71.     An Interactive List displaying SO, Line Items which need to be delivered by certain Date.
    72.     An ALV Report for PO history for a particular period. Gives PO details based on specified company code, plant, Invoice receipt date and Vendor number.
    73.     An Interactive Report showing Vendor Information and his corresponding Bank Details.
    74.     Developed a report to compare the calculated average selling price for an item to a customer versus the current standard price for that item to that customer.
    75.     Developed a report to display Outstanding Quantity for Material.
    76.     Developed a report to drill down the displayed list, displaying the subsequent list of the line items for the selected purchase order. 
    77.     Developed a report to display line item details information for financial journal entries.
    78.     Developed a report to List the Purchase Orders must allow the user to select the types of Purchase Orders.
    79.     Developed a report to displays all the Sales Orders processed to one particular customer for a given range of time.
    80.     Material Master Detail report for a given plant and material type, displaying material and plant depending on material.
    81.     •&#61472;&#61472;&#61472;&#61472;&#61472;&#61472;Sales Journal - which displays sales details for a particular plant  in  a  particular period of time.
    82.     •     developed a report to display the stock details.
    83.     Created a report for list of purchasing group for given plants. this report displays the list of plants, purchasing group, description of purchasing group  according to the plant.
    84.     Created Vendor performance Report that lists vendor related details.
    85.     Developed a report to display Vendor master information and vendor bank details.
    86.     Developed a report to display all purchase orders whose goods receipt have been made but not invoiced.
    87.     Developed Division wise Sales Analysis report.
    88.     Developed a report to display unconfirmed Purchase Orders.
    89.     Developed a report to display list of Materials.
    90.     Created a report to display a list of Sales orders, Ordered by customer who doesn’t have credit limit more.
    91.     Developed a Stock Tracking report, which shows stock of various materials in various Storage locations.
    92.     Developed a report for customer out standings.
    93.     Developed a report for monthly dispatches.
    94.     Developed a report for displaying the vendor balances.
    95.     Created Vendor Performance report, which lists the vendor name, Materials Supplied, planned, Actual delivery items, Payment terms and Prices.
    96.     Created report, which will print the material stock, which will find out material group for material and find out the material description for each material.
    97.     Created an interactive report, which lists the customer details in the basic list. If the customer number is selected, the corresponding sales orders and item details will be displayed in the secondary lists. Drill down to transaction “MM03” is also provided.
    98.     Created utility report to copy batch characteristics from one batch to already existing another batch.
    99.     Created a Report to display the pricing conditions in a sales order with standard details.
    100. Created an report for purchase variance.
    100.     Created report to compute and display the list of outstanding orders by ship-to-  party or sold-to-party.
    101.     Created Classical and Interactive report to display all the Purchase Orders for the Purchasing Organization, Purchase groups and display the total, and individual values of all the Purchase Orders.
    102.     Generated an Interactive report that displays vendor wise Purchase Order details.
    103.     Created an interactive report to display Sales Order data. In the basic list it displays the header data like SO number, created by, customer number etc., At the first level, SO screen and Customer master data is displayed by selecting appropriate item in the basic list. At the second level, report displays selected line item for the Sales order.
    104.     Contract Compliance Report : This report looks at the actual customer purchases (QTY) by period vs. targeted quantities.
    105.     The report created will list all the contracts quantity vs. shipped quantity in the period specified for a given customer or material or sales organization or contract number along with details such as material numbers, contract start date, contract end date, etc.
    106.     Contract Expiration Report : Contracts need to be monitored and quotations sent out for renewal as they approach their expiry date. A report is required to show the contracts expiring.
    107.     This report will list all the contracts expiring in the period specified for a given customer or material or sales organization or contract number along with details such as equipment numbers, material numbers, contract start date, contract end date, etc.
    108.     Audit Trial For Pricing Conditions : This report  tracks the manual changes made to the Pricing Conditions.
    109.     Back Order Report by Customer, Material or Product Line : The definition of a back order is an item, which cannot be shipped on the date necessary to meet the customer’s requested delivery date.
    110.     This caters the back order by customer, material or product line which is to be used by DS.
    111.     Match Confirmation Report : This program reports the discrepancies in characteristics between the materials and the machine for a given production version.
    112.     This report will compare characteristics of the material to the machine characteristics and lists any discrepancies between the characteristics. This will replace the current legacy report (Mismatch report). The program will provide information that will prevent the Company from producing products on the wrong modules that can lead to significant waste, rework and potential product recalls.
    113.     Invoice Out of Tolerance : This will report against the customer invoices that are below a predefined margin rate. This will be the primary indicator of pricing problem.
    114.     Here Customer invoices below a specified gross margin value are reported.
    115.     Pricing Override Report : When there is a legitimate need to override system proposed pricing, it should be documented for use in downstream decision making.
    116.     On demand report detailing overrides to the proposed system pricing along with override reason. This report will allow for analysis and possible adjustment of pricing conditions.
    118. Classical & interactive reporting.
            Production report, Stock Balancing report, Delivery Schedule,
            Material dispatch Updation, Material Freight Updation,
            Material wise serial number for production & dispatch, Valued Stock Report,
            Machine Dispatch of RG1 (Excise Returns)..
            Warranty Reports (Item wise, Dealer wise, Machine wise).
            Warranty expenses of machines with in the warranty period and beyond warranty
            Period.                                             
            List of failures value wise and frequency wise.
    119. Delivery Performance Report - The delivery performance report is used to compare the    customer delivery schedules with the deliveries created in SAP to determine whether they are early, on-time, or late. This measurement is done by comparing the customer request date against the goods issue date from the delivery. 
    120. Batch Level Inventory Report - This is a quick method to review all inventory that is in the entire plant or being more selective, in a particular storage location.
    121. Sales by Subcontractor - This report presents sales numbers by subcontractor for a given plant or all plants.
    122.Generated reports for Customer info and Waiting list.
    1.     Created an interactive report that displays sales order information like sales order number, order reason, sold to party and delivery status. The detailed list gives item data and delivery status.
    2.     Maintenance of existing reports. Made changes as per their requirements. Developed new reports related to SD and MM.
    3.     Another report that takes date and customer ranges as input and gives the invoice details. If the user select any of the invoice, it checks whether it is credit or debit based on that further details of the particular invoice would be displayed as an interactive report.
    4.     Interactive report which displays all the purchase orders for one particular customer, the items      order for that particular order, quantity ordered, goods issue date and contact information about      that customer.
    5.     Created report lists for the gross sales, credit returns, gross weight for the customer for the      current year and comparing the same with that of the previous year for the same period. The data      is selected from KNVV, BKPF, BSEG and MARA.
    6.     Report that lists the shipping point, loading point, transport partner name and the shipping date      given the sales order number as user input.
    7.     Created an interactive list displaying sales orders and line items, which needed to be delivered by      a certain date. Selection criteria were used to enter the specified delivery dates.
    8.     Developed a  report which displays material wise Suppliers for a given plant.
    9.     Developed a  report that displays Sales Analysis By Customer.
    10.     Developed a report that tracking down the invoices.
    11.     Developed Monthly Extract Report for Indirect Sales.
    12.     Developed a report program for displaying General Material data according to the selection of the material number and batch number by the user provided on the  selection  screen.
    13.     Report that displays all the late shipments in a particular period of time.
    14.     Developed vendor performance report that lists vendor name, material supplied, planned and actual delivery times, payment terms and prices.
    15.     Developed a  report that displays a list of Purchase Requisitions.
    16.     Developed a report in material master that outputs valuated stock, grouped by material type and plant . Data was extracted from MARA, MARC, MARD, MAKT, EKKO, EKPO, MKPF, MSEG and T001W.
    17.

  • Issue with Standard report RPLICO10

    If the standard report RPLICO10 is copied to to a Custom Program.
    Because this program uses LDB, we are not able to print multiple records for a single PERNR on the ALV Report.
    Jus wanted to confirm can we try to print multiple records for single PERNR?
    ( Eg : 0006 infotype has subtype 1 and subtype 2 records )
    I tried to change the code for such infotypes ( Multiple subtype records ), the program is dumping.
    Can someone suggegst a solution for this.
    Regards,
    Srujan

    Hi,
    RPLICO10 is a tricky report but by far one of the best report fo someone who want to take a look into Dynamic Programming in HR.
    For handling such type you have to add them as separaate entities in FIELD SELECTION tab and then write the code for them accordingly in the report, create field catalog for them also.
    If you want to go like any other standard one it will require a complete change in the report logic and also reduce the performance of the report.
    Regards,
    Amit
    Reward all helpful replies.

  • Ways to activate debug log on JavaFX 8 / support for bug reports ?

    Hello,
    Since, there is to much time until next march, I've downloaded the JDK8 u 87 and started to play with JavaFX 8. Very nice things, but I am going into a lot of obscure bugs
    * For example, when closing an application that does only CSS styling I keep getting this exception when closing the window:
    java.lang.NullPointerException
         at com.sun.glass.ui.View.notifyRenderingEnd(View.java:352)
         at com.sun.javafx.tk.quantum.PaintCollector.done(PaintCollector.java:308)
         at com.sun.prism.render.RenderJob.run(RenderJob.java:75)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
         at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
         at java.lang.Thread.run(Thread.java:724)
    This happens 15% of the time. The same story ( but different exception ) for a simple application for playing with sliders.
    I would open some bugs but 2 things come to my mind:
    * are there any ways to activate debug log so that developers see a bit more that just a stack trace?
    * I saw on JavaFX 2 jira that you can't attach files to an issue, so basically how can I report stuff that prove things if I can't attach any file?
    Regards,
    subzero
    Edited by: subzero on May 1, 2013 5:50 AM
    Edited by: subzero on May 1, 2013 5:51 AM

    subzero wrote:
    java.lang.NullPointerException
         at com.sun.glass.ui.View.notifyRenderingEnd(View.java:352)
         at com.sun.javafx.tk.quantum.PaintCollector.done(PaintCollector.java:308)
         at com.sun.prism.render.RenderJob.run(RenderJob.java:75)
         at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
         at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
         at java.lang.Thread.run(Thread.java:724)This particular exception is described in RT-30014 and has already been fixed:
    https://javafx-jira.kenai.com/browse/RT-30014
    Artem

  • How to print report from print server ?

    Hi all,
    I need to print the report where the printer are shared by group of people which is located at server. I have put in the path in DESNAME = \\192.168.1.239\plc6 where \\{my printer ip address}\{printer name}
    however, when I run the report, in the report viewer the printer name is still defaulted as what I have defaulted printer in my printer setup whereas the printer that I specific in the report which is located at server was not selected and again the report was printed out based on what my PC has been defaulted. My question it's anything wrong with my path ? why the report was not printed out based on the printer on the desname ?
    Please advise. Thanks.
    Lim

    You can use FOP, but the formatting of the xsl (Xml Style Sheets) takes a little work. If you have the Oracle Reports server up and access to the development product, why not go that route?
    You want the filtering and sorting and searching, yes, but then you also want to print them out.. Then you would probably be best looking at replacing the Oracle Reports setup with BI Publisher. You can convert Most your reports over to bi publisher layouts easily.. (I have heard of some reports that do require recreating in Bi Publisher from Oracle Reports..)
    Then you can have your Apex Reports and call Bi Publisher from APEX and everyone wins..
    Is your Oracle Reports stuff used by non-APEX applications, that could be modified to use Bi Publisher?
    Thank you,
    Tony Miller
    Webster, TX

  • Anyone gone to the report builder?

    Hi,
    i did a lot now with servicedesk and here it comes to the point where i need to get more out of the reporting stuff.
    As usual the help of the report builder doesnt bring me anywhere..
    I need to create a report which shows me the amount of time in a month where Technicians worked on special SLAs.
    kind regards
    Gerd Zobel
    The NetWorker GmbH
    www.the-networker.de

    Gertfried,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

Maybe you are looking for

  • User view output in IE and the output is in portrait but should be in landscape

    No issue create BI template.  Completed successfully run in oracle 11.5.10.2 and able to print it out in landscape as expected..  BUT when user click the "view output" button.  The IE pop up open the output file.  when user either save it or print it

  • Blackberry Device is unknown on the appworld website after sign in

    Hello, I'm from Germany and new in the Blackberry World :-)  Now my Problem : If I go to https://appworld.blackberry.com/ and sign in with my BlackBerry-ID and click on "My World" there is on the right site a box  "Your Device" . But there isn't show

  • BIOS and sensors problems on MSI MS-7031 (RS350M)

    Hi, I got problem with BIOS, I cant set CPU Warning temperature because buzzer is making a lost of noise. I`m setting warning temp to 70C my CPU in BIOS is at 45C (I check temperature with digital multimeter too and it`s about 40-45C) Fan1 are runnin

  • Create a link within a photoshop image?

    forgive me if this topic has been beaten to death but i couldnt find what i was looking for in a search: i'm importing photoshop images as each of my webpages but would like to create links from text within the .jpg file. i'm pulling out my hair tryi

  • Ecxpert Problem in getting the original file name submitted by FTP

    hai, when i use the scheduled FTP Application receive mode to receive files from the remote machine, i am not able to get the original file name, Ecxpert itself maintaining it's own file name, Even i query the tracking table also i am not able to fin