Two half report in one A4 size.

I have a report. the preview of that report is half of A4 size. so i want to show two reports in one A4 size.
How to do this?
Thanks and regards,
Skud.

You have to combine your two reports to one report, sharing the same layout.

Similar Messages

  • Is it possible to combine two pivot report into one ?..

    Is it possible to combine two pivot report into one ?..
    Then trying to display a chart or table result.

    Thanks for the reply.
    Let me explain it briefly. I am creating a Report 1 based on one fitler condition and second report is created based on second filter condition.
    I have similar column (time periods) in the both report. Then measure column has to combine and show as single report.
    This is my requirement.

  • Two tabular reports on one page

    Hello,
    I've a page with master an two different detail regions.
    For both detail regions I need a tabular form.
    The first is no problem. Because the second one cannot be created automatically by ApEx I created the region with the buttons (other names) and the processes manually.
    When I press the button "add" in the second tabular report region the empty column is added to the first tabular report region. The same problem I have with the "Delete" button.
    Is there generally no possibility to place two tabular reports on one page?
    Thanks in advance
    Regards
    Ulrike

    I have a similar need, where I would like to display two reports within different regions on the same page. Both reports would be linked to a Form, such that the desired row could be edited. If the user clicks on a row within region A then it would go to one form for editing that row, and if the user clicks on a row within region B then it would go to a seperate Form for editing.
    I wondered if I could use two "Forms with Reports" and then create a third page that references these to pages through an I-Frame. Hopefully, when I clicked on a row within the I-FRAME everything would navigate to the proper form with the proper row. Is this feasible, or is there a better approach that I should consider?

  • Display two main reports in one

    Post Author: BSong
    CA Forum: Crystal Reports
    I am try to display both Customer Invoice and Payment reports in one report for a chosen Customer.  Since neither Invoice nor Payment should be sub report, how do I combine them together in one report two sections? Is this possible? I am pretty new working with Crystal Report. Could anyone help me on this?
    Thanks,Bill

    Post Author: BSong
    CA Forum: Crystal Reports
    Thanks for your replay.
    But how do I link the two if they use two separate datasource? and each has its own prompt. Could you explain.
    Thanks,Bill

  • Combine Two Crystal Report In One Report

    Hi
    I made a two crystal report in that two report i used subreport
    I want to combine this two report.
    that is i have to make multilevel crystal report.
    when i Combine this two report
    the subreport which is contain in that two report is not import.
    so how can i import this two reports in one.

    Hi,
    When you combine two reports, you can only have one subreport working directly. Then other subreport has to be recreated in the new report.
    Thanks,
    Gordon

  • How to merge two crystal reports into one in Delphi using TCrpe?

    I am absolutely new to Delphi and Crystal Reports. I figured that I can export a crystal report to pdf like this:
          crpe.Clear;
        crpe.ReportName := 'BasicInfo.rpt';
        crpe.ParamFields[0].CurrentValue := '0';
        crpe.Output := toExport;
        crpe.ExportOptions.Destination := toApplication;
        crpe.ExportOptions.FileName:='C:\CoverSheet.pdf';
        crpe.ExportOptions.FileType:=AdobeAcrobatPDF;
        crpe.Export;
    (Although this is working, please let me know if I am doing it wrong )
    My main problem here is: I have two .rpts "BasicInfo.rpt" and "Details.rpt" and I need to create one pdf out of them in Delphi.
    Is there any way to merge two .rpts and export it into one pdf in Delphi?

    You cannot merge two reports into one PDF - not in any CR SDK. There are 3rd party utilities that will let you do this, but no APIs for this in CR.
    BTW.; What version of CR are you using?
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Two Updateable Reports On One Page

    I have 2 updateable reports on one page and two update procedures (one for each report)
    Each procedure is linked to a different button and calls a different procedure in the database
    My question is how to tell the page procedure, which report it should look at ?
    Gus

    My twp page processes are
    Process 1
    DECLARE
       v_Row number;
    v_upd number;
      v_count_failed     number := 0;
      v_count_updated    number := 0;
      v_count_failed2    number := 0;
      v_count_updated2   number := 0;
      v_count_total      number := 0;
    BEGIN
       FOR i IN 1 .. apex_application.g_f02.COUNT
       LOOP
         p_vrpapx.pr_p_upd_correlation (
            apex_application.g_f04 (i), --p_geokey
            apex_application.g_f08 (i), --p_PRIMARYMATKEY
            apex_application.g_f03 (i), --p_DEPMATKEY
            apex_application.g_f16 (i), --p_PROMOKEY
            --to_date(apex_application.g_f11 (i),'DD.MM.YYYY'), --p_STATCALCDAY
            apex_application.g_f11 (i),
            apex_application.g_f06 (i), --p_DOBJECTID
            apex_application.g_f05 (i), --p_POBJECTID
            apex_application.g_f17 (i), --p_USERCORFACTOR
            apex_application.g_fcs (i), --checksum
            v_count_failed,
            v_count_updated
        v_count_total := v_count_total + 1;
        v_count_failed2 := v_count_failed2 + v_count_failed;
        v_count_updated2 := v_count_updated2 + v_count_updated;
        if not apex_application.g_f16 (i) ='ALL'
          then
          v_upd:=p_vrpapx.fn_3_p_update_conv
          apex_application.g_f16 (i), --p_PROMOKEY
          apex_application.g_f08 (i), --p_PRIMARYMATKEY
          apex_application.g_f03 (i), --p_DEPMATKEY :P3_OM,
          apex_application.g_f04 (i), --p_geokey :F140_GEOKEY,
          nvl(apex_application.g_f17 (i),to_number(apex_application.g_f12 (i))), --p_USERCORFACTOR --corfactor
          :F140_PLNO, --pi_plno
          apex_application.g_f15 (i) --primaryscale
        end if;
        --reset variables
        v_count_failed  := 0;
        v_count_updated   := 0;
      end loop;
      :P3_COUNT_FAILED := v_count_failed2;
      :P3_COUNT_UPDATED := v_count_updated2;
    END;Process 2
    DECLARE
      v_count_failed     number := 0;
      v_count_updated    number := 0;
      v_count_failed2    number := 0;
      v_count_updated2   number := 0;
      v_count_total      number := 0;
    BEGIN
       FOR i IN 1 .. apex_application.g_f02.COUNT
       LOOP
         p_vrpapx.pr_3_p_upd_forcast(
            apex_application.g_f04 (i), --p_clocid
            apex_application.g_f05 (i), --p_siid
            apex_application.g_f06 (i), --p_clocfcstversionid
            apex_application.g_f07 (i), --p_clocfcstcalid
            --to_number(apex_application.g_f12 (i)), --p_qtyuser
           -- nvl(apex_application.g_f12 (i), 0), --p_qtyuser
            apex_application.g_f12 (i), --p_qtyuser
           apex_application.g_fcs (i), --p_checksum
            v_count_failed,
            v_count_updated     
        v_count_total := v_count_total + 1;
        v_count_failed2 := v_count_failed2 + v_count_failed;
        v_count_updated2 := v_count_updated2 + v_count_updated;
        --reset variables
        v_count_failed  := 0;
        v_count_updated   := 0;
      end loop;
      :P3_COUNT_FAILED_FORECAST  := v_count_failed2;
      :P3_COUNT_UPDATED_FORECAST := v_count_updated2;
    END;What I mean is that if I update a column in my first report and click update (button linked to process 1).
    How to link the code from process 1 so it uses report 1.
    Gus

  • Two BI Reports in one WEBI Report ?

    Hi Guys
    i have 2 BI sales reports in BEX Query Designer. One shows the Summary of Sales in a month and the Other shows the Details of the Sales. The USers want to see both the Reports in WEBI on one page as one report. they want the summary report to show on the top part of the page and the Detail part on the bottom of the same page.
    is this possible ?
    if so what will happen to the two selection menus for each report in WEBI. both BI reports have a selection menu. will they show up as one selections menu in the WEBI report?

    if you have the same text for the prompts into the selection lists for your Bex queries, i think Webi will merge them into one promots, im not sure, but i think it will be merged
    but make sure that they have the same prompt text
    good luck

  • Two Interactive Report in the same page

    I created two interactive report following the suggestion this link
    http://roelhartman.blogspot.com/2009/03/two-interactive-reports-on-one-page.html
    using an IFRAME
    <IFRAME src="f?p=&APP_ID.:24:&SESSION."
    style="width:600px;height:600px"
    name="details"
    scrolling="no" marginwidth="0" marginheight="0"
    frameborder="0" vspace="0" hspace="0" />
    I am facing two problems.
    a. I could see the logo attached to the application in the IFRAME window
    b. I could not see the lower bound of the region where the IFRAME is assigned to.
    Any suggestion would be of great help.
    Thanks in advance
    Deb

    Hi,
    For your first issue.
    Use page template to iFrame page that do not contain substitution string LOGO.
    E.g. popup page template might not have that.
    Or create your own page template with minimal set of substitution strings and regions and use that for iFrame page
    Regards,
    Jari

  • 2 BI Reports in one Crystal Report

    Hi Guys
    Can i have a crystal report that shows result of 2 BI Queries.. side by side or maybe one on top and other at bottom. can the users refresh both reports at the same time ?
    If Crystal reports cant do this what about WEBI ?
    thanks

    You can take advantage of 'sub report' functions in CR. Return one of the query in main report and another one in subreport or you can create two sub reports under one main report.
    In WebI, you can create many reports with different queries when you design the report, just right click the first report at the bottom of the design panel, each report displayed as a tab.
    Thx, Hao

  • Can we add more than one interative report in one page

    Hi all,
    Can i add two interactive reports in one report region.
    Regards

    Hi Raoul,
    I want it because of this thread of mine
    Changing report dynamically
    If i get solution for the above mentioned thread of mine then i wont have to use two interactive report
    well my Apex version is Application Express 3.1.2.00.02
    can i use two interactive report in this? I want the condional only. I mean one at one time.
    Regards

  • HT1689 I purchased two songs and each one, half of it is silent and cuts off. I want my money back or I'd like to re-download for free

    I purchased two songs and each one, half of it is silent and cuts off. I want my money back or I'd like to re-download for free

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Display Two Report IN ONE

    hi Expert,
    how to display two report in one please help me .
    Regards,
    Hamad

    Hi,
    Refer the sample code:
    CLEAR w_event.
    w_event-name = slis_ev_top_of_page.
    w_event-form = 'TOP_OF_PAGE'.
    APPEND w_event TO i_events1.
    CLEAR w_event.
    w_event-name = slis_ev_top_of_page.
    w_event-form = 'XTOP_OF_PAGE'.
    APPEND w_event TO i_events2.
    DATA: lv_repid LIKE sy-repid.
    lv_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    i_callback_program = lv_repid
    i_callback_user_command = 'USER_COMMAND'
    i_callback_pf_status_set = 'PF_STATUS'.
    *-- Vendor Schedule List
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    it_fieldcat = i_field_cat1
    is_layout = w_lay_out1
    i_tabname = '<I_TABLE>'
    it_events = i_events1
    TABLES
    t_outtab =<b> <i_table>.</b>  Data for Report 1
    *-- Error Lsit display
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    it_fieldcat = i_field_cat2
    is_layout = w_lay_out2
    i_tabname ='I_ERROR' 
    it_events = i_events2
    TABLES
    t_outtab = <b>i_error[].</b> -  Data for report 2
    w_print-reserve_lines = 2.
    w_print-no_print_listinfos = c_x.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
    is_print = w_print.
    ENDFORM. " f0504_create_list
    *-- Top of Page
    FORM top_of_page.
      WRITE: sy-title.
    ENDFORM.
          FORM xtop_of_page                                             *
    FORM xtop_of_page.
      WRITE: 'Error Records'.
    ENDFORM.
    Reward points if this Helps.
    Manish

  • Getting two selection screen in one report

    Hello Friends,
    I am Making report, In my report on first screen i have given two pushbutton, like this :
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001.
    PARAMETERS : p1_but RADIOBUTTON GROUP g1,
                             p2_but RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END OF BLOCK b2.
    now i want when user click on any one pushbutton it shows another selection screen, whose select options are:
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
    SELECT-OPTIONS: so_erdat FOR lf_date,
                    so_vbeln FOR lf_vbeln MATCHCODE OBJECT zvbeln..
    SELECTION-SCREEN END OF  BLOCK b1.
    Please guide me can i use two selection screen in one report?, If yes then how can I use? Please revert back me as soon as possible.........

    Hi,
    you can achieve it only by using two USER_DEFINE_SELECTION SCREEN.
    For detail check the link
    http://help.sap.com/saphelp_nw04/helpdata/EN/9f/dba83d35c111d1829f0000e829fbfe/content.htm
    Regards,
    anirban

  • Run two report in one Excel sheet1 and sheet2

    Hi all;
    I want to have my one report in sheet1 and another one in sheet2 when I opened my excel sheet. How can I perform this two report in one excel sheet. I can copy the report and paste but then there would be no drill down or other functionality.
    thank. you.

    Hi Krishma,
    You can save this workbook to your PC and email it to your user. They need to open the workbook (with Bex running in Excel). When they click the refresh button they system will prompt them to log on (if they are already not logged in) and then the queries will be executed.
    Hope this helps...

Maybe you are looking for

  • Mac OS 9 AFP file sharing volume not visible under Mac OS 10.5

    An old blue-white PowerMac G3 running Mac OS 9.2.2 with file sharing on is not visible on the network for a MacBook Pro running Mac OS X 10.5.5. – However, a PowerBook G4 with Mac OS X 10.4.11 perfectly shows the G3. Connecting to the G3 works on the

  • Newbie Help

    Hi guys hope I am in teh correct place!!!! I have (I think) a small problem...... I am a PHP developer (that is NOT my problem!!) and have been given a little project to complete. I have a jar file which I have been able to extract the classes from a

  • How do I downgrade my Emac?

    I have a G3 that I no longer use but has files on the HD I need. Until I upgraded to Leopard I was able to see the OS9 files. Now I want to downgrade to Tiger use an enclosure for the G3 HD and run both OS. Since I am not the brightest star out their

  • Purchase a T400 with different language

    Hi, When purchasing a T400 can I have it preloaded with Windows in Spanish or dutch? Thank you, Vinny P

  • Lost RAW format for Panasonic DMC-LX1 with new version 1.5.3 !!!

    Hi, Aperture 1.5.3 tells me it doesn't understand the RAW format of my Panasonic DMC-LX1, when it used to in 1.5.2. Anybody has any idea how to restore this ??? Thanks, Richard MacBook Pro 15.4"   Mac OS X (10.4.9)   1 GB RAM, iPod 60