Intractive report Green geer donwload issue

Hi All,
   i have a report with interactive there have Date column with '01-JUN-2013' displaying..but if go to the green gree donwload throw .csv /.xls Files just coming only the '01-jun-13'
   i need out put in download also 01-JUN-2013 ..Please help me on this....

Hi,
What version of APEX you are using?
Have you try enter to column Number/Date format e.g. DD-MON-YYYY ?
Regards,
Jari

Similar Messages

  • Column Arrenge in order in intractive report

    hi..
    i want to Arrenge Column according to me in order in intractive report .I have use arrow for up & dowmn in report Column Attributes .but there are no change .
    How can i arrenge column in order acording to me.
    Thanks
    Manoj Kaushsik

    Hi,
    Run page.
    Then open interactive report action menu and Select Columns.
    Order your columns. And then again from action menu Save Report.
    In select list select "As default report setting".
    Br, Jari

  • Oracle APEX 4.0  -  Interactive Report - Table Column Filter Issue

    Environment: Oracle APEX 4.0  -  Interactive Report - Table Column header Filter Issue
    We have developed an interactive report using Oracle APEX 4.0, which contains a record count of around 3,000 Rows. All the rows values are unique in nature. When we try to filter the same with the help of column header filter option available in the interactive report,We get only 1000 records.
    Could some one help us, why this behaviour under APEX Table Column Header Filter as if it does not display beyond 1000 distinct values.
    Is there a way or workaround on how to get all the records in the column header filter?
    Thanks in advance.
    Krish

    Hi
    Thanks for the advice and this issue has been moved to the below URL
    Oracle APEX 4.0 - Interactive Report - Table Column Filter Issue Posted: No
    Krish

  • Saving BO reports in excel-time issue

    Hi,
    I am facing an issue when i try to save a BO6.5 report in the excel format.when Busines objects saves reports into excel the issue is that the time value in Business Objects varies completley and is incorrect.There is a time difference of 11 hours
    Can anyone please advise me on this issue.
    Cheers,
    Anu

    Hi,
    Try to check your system time (local settings i.e control panel-> time....) is displaying correctly or not. As BO will take your local system date/ time in reporting.
    Cheers,
    Suresh Aluri.

  • Intractive report using ALV fm's

    Hai This is Srik,
       I am trying to develop an intractive report using ALV fm's...
        Can anybody help me with some sample code and the needed FM's.
    Thanks in advance.
    Srik

    Srikanth,
    *& Report Z_INTERACTIVE *
    REPORT Z_INTERACTIVE no standard page heading line-count 200 message-id zp.
    TABLES: MARA, MAKT, MARC, MARD,T001W.
    DATA: BEGIN OF IT_MARA_MAKT_MARD OCCURS 0,
    MATNR LIKE MARA-MATNR,
    MTART LIKE MARA-MTART,
    MEINS LIKE MARA-MEINS,
    MAKTX LIKE MAKT-MAKTX,
    LABST LIKE MARD-LABST,
    END OF IT_MARA_MAKT_MARD.
    DATA: BEGIN OF IT_MARC_MARD1 OCCURS 0,
    WERKS LIKE MARC-WERKS,
    LABST LIKE MARD-LABST,
    NAME1 LIKE T001W-NAME1,
    END OF IT_MARC_MARD1.
    DATA: BEGIN OF IT_MARC_MARD OCCURS 0,
    LGORT LIKE MARD-LGORT,
    LABST LIKE MARD-LABST,
    END OF IT_MARC_MARD.
    SELECT-OPTIONS: s_matnr FOR MARA-MATNR.
    AT SELECTION-SCREEN.
    REFRESH IT_MARA_MAKT_MARD.
    SELECT MATNR MTART MEINS INTO CORRESPONDING FIELDS OF IT_MARA_MAKT_MARD FROM MARA WHERE MATNR IN s_matnr.
    SELECT SINGLE MAKTX INTO IT_MARA_MAKT_MARD-MAKTX FROM MAKT WHERE MATNR = IT_MARA_MAKT_MARD-MATNR.
    SELECT SUM( LABST ) INTO IT_MARA_MAKT_MARD-LABST FROM MARD WHERE MATNR = IT_MARA_MAKT_MARD-MATNR.
    APPEND IT_MARA_MAKT_MARD.
    CLEAR IT_MARA_MAKT_MARD.
    ENDSELECT.
    IF SY-SUBRC <> 0.
    MESSAGE I008.
    ENDIF.
    START-OF-SELECTION.
    SORT IT_MARA_MAKT_MARD.
    WRITE:/ 'MATERIAL NUMBER' COLOR 2, 20 'DESCRIPTION' COLOR 2, 50 'TYPE' COLOR 2, 70 'UOM' COLOR 2, 100 'STOCK' COLOR 2.
    ULINE.
    SKIP 4.
    LOOP AT IT_MARA_MAKT_MARD.
    WRITE:/ IT_MARA_MAKT_MARD-MATNR, 20 IT_MARA_MAKT_MARD-MAKTX, 50 IT_MARA_MAKT_MARD-MTART, 70 IT_MARA_MAKT_MARD-MEINS, 90 IT_MARA_MAKT_MARD-LABST.
    HIDE: IT_MARA_MAKT_MARD-MATNR, IT_MARA_MAKT_MARD-MAKTX, IT_MARA_MAKT_MARD-MTART, IT_MARA_MAKT_MARD-MEINS, IT_MARA_MAKT_MARD-LABST.
    ENDLOOP.
    AT LINE-SELECTION.
    CASE: SY-LSIND.
    WHEN 1.
    WINDOW STARTING AT 1 20 ENDING AT 120 120.
    REFRESH IT_MARC_MARD1.
    CLEAR IT_MARC_MARD1.
    SELECT pWERKS QNAME1 INTO CORRESPONDING FIELDS OF IT_MARC_MARD1 FROM MARC AS p INNER JOIN T001W AS q ON pWERKS = qWERKS WHERE p~MATNR = IT_MARA_MAKT_MARD-MATNR.
    SELECT SUM( LABST ) INTO IT_MARC_MARD1-LABST FROM MARD WHERE MATNR = IT_MARA_MAKT_MARD-MATNR AND WERKS = IT_MARC_MARD1-WERKS.
    APPEND IT_MARC_MARD1.
    CLEAR IT_MARC_MARD1.
    ENDSELECT.
    SORT IT_MARC_MARD1.
    WRITE:/ 'MATERIAL NUMBER' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MATNR COLOR 4.
    WRITE:/ 'DESCRIPTION' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MAKTX COLOR 4.
    WRITE:/ 'TYPE' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MTART COLOR 4.
    WRITE:/ 'UNIT OF MEASUREMENT' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MEINS COLOR 4.
    WRITE:/ 'MATERIAL QUANTITY' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-LABST COLOR 4.
    ULINE.
    SKIP 4.
    WRITE:/ 'PLANT CODE' COLOR 2, 20 'PLANT NAME' COLOR 2, 60 'STOCK' COLOR 2.
    LOOP AT IT_MARC_MARD1.
    WRITE:/ IT_MARC_MARD1-WERKS COLOR 4, 20 IT_MARC_MARD1-NAME1 COLOR 4, 41 IT_MARC_MARD1-LABST.
    HIDE: IT_MARC_MARD1-WERKS.
    HIDE: IT_MARA_MAKT_MARD-MATNR, IT_MARA_MAKT_MARD-MAKTX, IT_MARA_MAKT_MARD-MTART, IT_MARA_MAKT_MARD-MEINS, IT_MARA_MAKT_MARD-LABST.
    AT LAST.
    SUM.
    WRITE:/30 'TOTAL STOCK', 60 IT_MARC_MARD1-LABST.
    ENDAT.
    ENDLOOP.
    WHEN 2.
    WINDOW STARTING AT 1 20 ENDING AT 120 120.
    REFRESH IT_MARC_MARD.
    CLEAR IT_MARC_MARD.
    SELECT LGORT LABST INTO CORRESPONDING FIELDS OF IT_MARC_MARD FROM MARD WHERE MATNR = IT_MARA_MAKT_MARD-MATNR AND WERKS = IT_MARC_MARD1-WERKS.
    APPEND IT_MARC_MARD.
    CLEAR IT_MARC_MARD.
    ENDSELECT.
    SORT IT_MARC_MARD.
    WRITE:/ 'MATERIAL NUMBER' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MATNR COLOR 4.
    SKIP 1.
    WRITE:/ 'DESCRIPTION' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MAKTX COLOR 4.
    SKIP 1.
    WRITE:/ 'TYPE' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MTART COLOR 4.
    SKIP 1.
    WRITE:/ 'UNIT OF MEASUREMENT' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MEINS COLOR 4.
    SKIP 1.
    WRITE:/ 'MATERIAL QUANTITY' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-LABST COLOR 4.
    SKIP 1.
    ULINE.
    SKIP 1.
    WRITE:/ 'PLANT CODE' COLOR 2, 40 'PLANT NAME' COLOR 2.
    WRITE:/ IT_MARC_MARD1-WERKS, 40 IT_MARC_MARD1-NAME1.
    SKIP 3.
    ULINE.
    WRITE:/20 'STORAGE LOCATION' COLOR 5, 50 'STOCK' COLOR 5.
    SKIP 4.
    LOOP AT IT_MARC_MARD.
    WRITE:/20 IT_MARC_MARD-LGORT, 50 IT_MARC_MARD-LABST.
    AT LAST.
    SUM.
    WRITE:/30 'TOTAL STOCK', 60 IT_MARC_MARD-LABST.
    ENDAT.
    ENDLOOP.
    WHEN OTHERS.
    WINDOW STARTING AT 1 20 ENDING AT 20 50.
    WRITE:/40 'SORRY'.
    ENDCASE.
    TOP-OF-PAGE.
    WRITE:/ 'XYZ LIMITED' COLOR 2, 90 'DATE:' COLOR 2, SY-DATUM.
    ULINE.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    WRITE:/ 'XYZ LIMITED' COLOR 2, 90 'DATE:' COLOR 2, SY-DATUM.
    ULINE.
    interactive ALV code
    ALV-INTERACTIVE.
    Interactive ALV
    http://www.sap-img.com/abap/an-interactive-alv-report.htm
    http://www.sapgenie.com/abap/drill_down_reports.htm
    Pls. reward if useful

  • Reporting an audio/video issue with a TV show from a Season Pass? How?

    I would like to report some audio/video issues with the latest The Unit and The Seeker episodes but I can't find them in my Purchase History??? I own a Season Pass for both. Any idea how to do it? I'm lost. Thanks!

    Is this the lack of audio on "Shadow Riders"? I've just got to that episode, and I tried to report the problem, but the whole series of hoops you have to jump through seems to have changed. Rather than get to the page where you add comments for the problems, it merely sends you to an internet link on apple that has no bearing on the problem.
    If you open your account information (store > View my account) you can click your purchase history there. The theory is that you find your program, click the arrow next to it, then click "report a problem" and it should allow you to enter a comment, or the problem... Anyone else having this troubvle?

  • Change SQL report To Intractive Report

    Dear All Friend,
    i have created SQL Report .
    Could you tell me please there is any way to change SQL report To Intractive Report .
    How can i do this.
    Thanks

    Under the Region Definition of the report; look over to the right-hand margin and you will see Migrate to Interactive Report under Tasks .
    Jeff

  • Green Screen Youtube issue on FireFox

    Have a new Toshiba Satellite with Windows 8 and downloaded FireFox but noticed every time I watched a video on FF the video is green I tried the suggestions I've read on-line but nothing works. Problem was also on IE but was able to fix that.
    Thanks,
    DOC

    Please work through the video troubleshooting guide.
    https://helpx.adobe.com/flash-player/kb/video-playback-issues.html
    If you're still stuck, please follow the directions in the guide on providing the dxdiag report and additional information about what you tested and saw.

  • A single report has db connectivity issues

    Hello,
    I have several reports connecting to our Informix db by logging on to the Informix online server.  All except one of these reports work fine.  We view all the reports using the .Net viewer in the browser.  This one report is able to open fine with the preview function of CR 2008, and when I navigate to the .aspx page that prompts for the parameter that page loads fine.
    When I select the parameter and attempt to load the report I am immediatly greeted with one of four errors:
    Database Connector Error: 'Error -1213: Character to numeric conversion error ' Error in File open_so_duedate {250A85C0-AF79-480D-B960-29598C0A3EAE}.rpt: Database Connector Error: 'Error -1213: Character to numeric conversion error '
    Database Connector Error: 'Error -404: The cursor or statement is not available. ' Failed to retrieve data from the database. Error in File open_so_duedate {E15923B9-D213-4723-8013-C79BB196C7ED}.rpt: Database Connector Error: 'Error -404: The cursor or statement is not available. '
    Database Connector Error: 'Error -400: Fetch attempted on unopen cursor. ' Failed to retrieve data from the database. Error in File open_so_duedate {250A85C0-AF79-480D-B960-29598C0A3EAE}.rpt: Database Connector Error: 'Error -400: Fetch attempted on unopen cursor. '
    Database Connector Error: 'Error -349: Database not selected yet. ' Failed to retrieve data from the database. Error in File open_so_duedate {4161FB9D-1F8C-4EC8-9447-B015ADA29199}.rpt: Database Connector Error: 'Error -349: Database not selected yet. '
    Yet if I leave the page there for a few minutes and then hit refresh the report occasionally opens.
    I am not sure if this is the cause or effect or possibly irrevelant, but when this report fails to open we also get an error on the db side:
    Sess  SQL            Current            Iso Lock       SQL  ISAM F.E.
    Id    Stmt type      Database           Lvl Mode       ERR  ERR  Vers
    137838 -              -                  -   Not Wait   -349 0    9.35
    Last parsed SQL statement :
      SELECT * FROM bill_cust WHERE 0 = 1;
    It should know the database, yet it is blank in that error.  This happens only on this report while others use the same datasource.  I have checked the .aspx page we use and it looks like it should.
    Thanks

    had to break into two posts for formatting issues
    And when opened in CR 2011 and then saved in that format, the query becomes:
    SELECT so_delivery.od_prom_date, so_delivery.od_ordr_item,
            so_delivery.od_wo, ship_cust.st_name, so_delivery.od_qty,
            so_delivery.od_qstat, so_header.oh_status, so_item.oi_qstat,
            part.it_part_rev, part.it_desc, part.it_base_part, part.it_status,
            part.it_um_stk, so_delivery.od_ent_date, wo.wo_class,
            wo_view.so_header_stat, wo.wo_status, vw_prod_grp.grp_item,
            wo_view.qty_in_stk, wo_view.qty_compl_first_op, wo_view.od_qty_due,
            so_item.oi_cust_pn, part.it_bmrt_stat, part.it_qc_stat,
            wo_view.sch_to_run_on, ship_cust.st_scust, vw_part.mfg_std_avg_pph,
            wo_view.wip_ship_hold, wo_view.inv_ship_hold, wo_view.sch_start_date,
            so_delivery.od_cur_prom_date, wo.wo_text1, wo.wo_text2, wo.wo_text3,
            wo.wo_text4, wo.wo_text5, wo.wo_text6, so_header.oh_ship_via,
            bill_cust.bt_stat, wo_view.sch_hrs_4_wo, part.it_need_validation,
            so_delivery.od_want_date, part.it_pish_or_pmd, part.it_pish,
            part.it_pish_date, part.it_pmd_rev_nbr, part.it_russ_stat, part.it_class,
            vw_prod_grp.grp_desc FROM   ssfnew@prod_on:informix.bill_cust bill_cust,
            ssfnew@prod_on:informix.ship_cust ship_cust,
            ssfnew@prod_on:informix.so_header so_header,
            ssfnew@prod_on:informix.so_item so_item,
            ssfnew@prod_on:informix.so_delivery so_delivery,
            ssfnew@prod_on:informix.part part,  OUTER ssfnew@prod_on:informix.wo wo,
            ssfnew@prod_on:public.wo_view wo_view, ssfnew@prod_on:public.vw_prod_grp
            vw_prod_grp, ssfnew@prod_on:public.vw_part vw_part WHERE
            (bill_cust.bt_bcust=ship_cust.st_bcust) AND
            (ship_cust.st_scust=so_header.oh_scust) AND
            (so_header.oh_ordr_nbr=so_item.oi_ordr) AND
            (so_item.oi_ordr_item=so_delivery.od_ordr_item) AND
            ((so_item.oi_part_nbr=part.it_part_nbr) AND
            (so_item.oi_part_rev=part.it_rev)) AND (so_delivery.od_wo=wo.wo_nbr) AND
            (wo.wo_nbr=wo_view.wo_nbr) AND (part.it_part_rev=vw_prod_grp.part_rev) AND
            (vw_prod_grp.part_rev=vw_part.part_rev) AND so_header.oh_status>-1 AND
            so_delivery.od_qstat='O' AND so_item.oi_qstat='O' AND
            vw_prod_grp.grp_item='ca_ext' AND so_delivery.od_prom_date<=DATETIME
        (2011-10-24 00:00:00.) YEAR TO SECOND ORDER BY vw_prod_grp.grp_item
    The issue is in the OUTER.  For some reason CR 2008 does not put parens around ssfnew:informix.wo wo,
        ssfnew@prod_on:public.wo_view wo_view.  If we run the 2008 query with the parens in place the query finishes in 23 seconds as opposed to not finishing.  Why the report sometimes loads is still a mystery.
    We are tearing apart the report to see if rebuilding it will generate the correct SQL query, but this is not reasonable if we have several reports with this issue.

  • Crystal Reports 10 Enterprise Server Issue - Exporting Large Reports to PDF

    Weu2019re implementing a Crystal Reports 10 Server for a customer but weu2019re having an issue with exporting large reports to PDF.  The report size that starts to show this issue is roughly 300 pages with 20 records per page.  We use the default Crystal ActiveX viewer. 
    Basically what happens is that the user will launch the report in the ActiveX viewer and the large report will take a while to load, as much as 3 to 4 minutes.  The user may then wish to export to PDF.  Once they attempt it with these large reports the viewer will basically hang and possibly be processing but will then time-out after roughly 5 minutes with this error:
    u201CProxy Error
    The proxy server received an invalid response from an upstream server.
    The proxy server could not handle the request POST /thinqreports/THINQCrystalInterface.asp.
    Reason: Error reading from remote server
    IBM_HTTP_Server/6.1.0.9 Apache/2.0.47 (Unix) Server at lmsproxy.aurora.org Port 443u201D
    We believe this error is coming from a server on our network.  We have a proxy server between users and the Crystal Server that has a 5 minute time-out for connections.  What we want to know is:
    - Is there a way to speed up this export to PDF process?
    - Should the Crystal Viewer be keeping an http connection alive to the Crystal Report Server while its doing this export process?
    - If not, what port does Crystal Viewer use to communicate with the Crystal Report Server? 
    - Is there something we can set in Crystal to keep an http connection open? 
    - What is actually occurring during this export process? 
    Occasionally, we may get the above error when simply launching a report, not just attempting to export to PDF.  We presume that is because loading the report into the Crystal Viewer from the Crystal Report Server is taking longer than 5 min.
    Anyone have any thoughts?  Thanks.
    Scott

    Scott,
    As this is happening within Enteprise (and I am assuming the report does not time out in the Crystal Reports Designer) I would suggest posting this to the BusinessObjects Enterprise Administration
    forum.
    My limited Enterprise knowledge would be to suggest scheduling the report as PDF but I don't know if that is a viable option for you.

  • Content Tracker Reports Query file modification issue - Custom Report

    Hi All,
    I was trying to generate a custom report using Content Tracker. I was successful in doing so. However, I found that sometimes it does not pick up the updated query file of Content Tracker reports.
    I made a change in my query:
    from SELECT * FROM Users to
    SELECT dname FROM Users
    the change is written on the file but when i generated the report from C.T. UI, it's still showing me the old results having all the columns. Tried bouncing the server as well, but no use.
    I also added a new query 24 hrs back (as SELECT count(*) As UsersNum FROM Users), it's still not recognizing it and giving error as Failure of server APACHE bridge: No backend server available for
    connection: timed out after 10 seconds or idempotent set to OFF;
    and the log says,
    Unable to execute service SCT_GET_DOCUMENT_INFO_ADMIN and function sctExecuteQuery.
    Unable to create the result set for query '(null)'. SQL statement to execute cannot be empty or null
    What could be the resolution of this issue?
    I am using UCM 11g + SSXA.

    Server bounce.
    Issue is not file update but some other issue, ongoing in another thread by Me.

  • Reporting Agent - Print Layout - Issue in Displaying Key Figures in Rows

    Hi,
    We have issue while printing reports using Reporting Agent. As part of Query Definition we have Structure of key figures in Rows. But while creating Reporting Agent , in Print Layout option – Under Table – Rows – we are not able to drag Structure of key fig.
    What could be the solution to this issue. How can we use key figures in rows?
    Thanks in advance.
    Samir

    Hi,
    putting product in the rows will slove the issues as the unit cost  depends upon the  prdoduct and therefore it will uniquely identify each of the material and then it will get multiplies with the qty and therefore you will get the correct result.
    this kind of issue you will always face when you are going to multiply cost with the Qty and as the cost differ with the individual material.
    Also putting material into the rows will cause the no. of rows to increase as all the materials will show up in the individual rows for the particular month.
    Also you can make a claculated key fgure for the multiplication and use before aggregation.
    But for that your both the key figures should be in the same cube i.e. in the same rows or the before aggregation will not work you will not even get an option of before aggregation in the CKF if the key figures belong to two different cubes.
    Since your qty and cost are coming from two different cubes before aggreagtion will not work here.
    And if you do before aggregation then you report will become quite slow as it will do all the multiplication anf then will bring the result.
    So it depends on your requirement and your design how to proceed.
    Hope it helps
    Thanks

  • Report of 351 goods issue

    Hi
    how to take report of sto withou delivery,i created po doc type ub for 6 qty .goods issue given 351 mvt type 1 qty
    balance 5qty avl,in me2m i tried select enter  material scope of list alv,doc type ub,selection parameters wa351 execute report shows that  issue 1qty in 351 mvt type poh/release document as a graphical view. if i double that graphical view then only com issue qty comes, all other things comes good,users to take report in excel sheet,that time showing in excel  poh/release document qty not comes,plz suggest,
    Regards
    Sam

    Hi,
    You can tell the user to run ME23N AND go to the header and select the status tab and the system will show the history as far as open,delivered and closed.
    Or you can run ME2N for the material or MMBE for the material to see the entire history of the material.
    Silas

  • Report generation toolkit upgrade issues

    I have created multiple vi's in that utilize the previous report generation toolkits specifically using the Generate Report Get Data to Modify.vi and the Generate Report Set Modified Data.vi.  Obviously the report reference has now changed in 8.6's version of the report generation toolkit and these vi's do not exist in the 8.6 library anymore.  What vi's do I need to replace these functions with to make this code work.  Can anyone tell me what the work around is to solving this problem.  This is a picture of the code.
    BJD1613
    Lead Test Tools Development Engineer
    Philips Respironics
    Certified LV Architect / Instructor
    Attachments:
    code.JPG ‏92 KB

    Hi BJD1613,
    The Report Generation VIs on the LabVIEW Palettes mutate properly. However, you may run into upgrade issues if VIs distributed with LabVIEW, but not available in the Palettes are used in the code. Hence, I would caution against using them for the same reason.
    In this case, the specific references do exist in the report generation classes; however, since they are private, they cannot be accessed by VIs outside the respective classes. A temporary workaround for now is mentioned in the following KB 4OOCSJ4M Getting References in Report Generation Toolkit 1.1.3 with LabVIEW 8.6.  
    This was reported to R&D (CAR# 123064) for further investigation

  • Report Builder - Last page issue and Report Footer issue

    I am using ColdFusion 9 Report Builder, am new to this product and encountering 2 issues.
    Issue 1 - I have a field that I would like to print on the last page of my report.  How can I determine the last page?  I initially tried using a calculated field set to the 'highest' calc.Page_Number.  Then I could compare the current page to the last page in the 'Print When' property.  But calc.Page_Number can not be used in a definition of a calculated field.
    Issue 2 - Depending on the amount of report detail, sometimes my report footer prints alone, without a page header and page footer.  The report includes this page in the total number of pages.  For example, if it is a 2 page report, the page header on page 1 will display Page 1 of 2.  Then the only data on Page 2 is the Report Footer.  No page header or page footer prints. 
    Any assistance on these issues would be most appreciated.  To date, using the Report Builder has not been easy.

    To issue 1: The report contains a report band called report footer. thsi is always at the last page. The report footer band initially is collapsed, so you have to expand it by dragging the last band divider.
    To issue 2: I guess this is a page break calculating error when detail data reaches really near the page footer area.
    Try some experiments with different setting of the following properties/issues:
    - in elements, e.g. calculating fields in the bands between report detail and page footer: In Properties / Print Control / Printing Options: Activate the option "Remove line when blank". This will remove the whole report band area if this field is blank. May save some empty space.
    - try to remove unused empty space between detail rows.
    - try to resize and reposition all detail fields so that they snap to the grid.
    Best regards

Maybe you are looking for

  • 'Abnormal program termination.An internal error has occured.'

    Hi all... i have a problem when i'm in the middle of infra installation (74%) and then this popup message appears and stop my installation 'Abnormal program termination. An internal error has occured. Pls provide the following files to Oracle support

  • Apple TV Isn't Connected To The Internet In iTunes

    I rented a movie and after it download I couldn't transfer it to the Apple T.V. it kept saying that I wasn't connected to the internet but I am connected. For obvious reasons I am pretty confused. Could it be that even though on my MacBook the iTunes

  • Org.xml.sax.SAXParseException in sessions.xml

    Hello, Recently I migrated a 10.1.3.4 project to 11.1.1.3 and than to 11.1.2.4. When I deploy the project to the IntegratedWeblogicServer org.xml.sax.SAXParseException exceptions are thrown regarding elements in the sessions.xml. session.xml <?xml ve

  • Is C30 quiet???

    Hi all, I decide to get a new PC and decide to get the Thinkstation C30 or P300 to replace my 58p! The 58p was a bit high pitch for my liking; and I had the cover open while operation with a Radeon 6570 graphic card to reduce both the noise and make

  • RBS Third Party Provider with Sharepoint

    Our SharePoint content database size is increasing day by day...we are assuming it will reach upto 1 TB. currenty the size is 136 GB. We are launching the application in different location. My company plans to use RBS for this. In technet website, fo