Help on report formatting

Hi all,
Ok dumb question but I am going to ask anyway.....
I have a report that I want to break on emp supv so that each supv gets a separate page of their emps....
is there a way to make my report break to a new page or a new block so that when I export to excel I can break.
The report currenlty lists the supv then emp details then a new supv then emp details but there are no gaps in the report ( i.e. separation to a new page, line break etc)
Currently we do not have printing setup in Apex to use pdf, etc and I have asked Dba to set it up. If I export the report to excel, while supv is grouped with their list of emps, there are no breaks and in excel I will have to manipulate to provide each supv their list.
...I am trying to provide an easy way for user to print each supv to their own page prior to print server config being installed inside of apex - is this even possible?
I have been to the column breaks portion on report formatting of my report app and all I can see is to break by columns 1, 2 ,3 or all three but no way to tell it to separate.
Regards
Danny
Edited by: DSULLIVAN on Feb 9, 2010 12:20 PM

You can't really do a page break in an excel file download. You would have to go into Excel and do the formatting to do that..
Thank you,
Tony Miller
Webster, TX

Similar Messages

  • Need help in report format

    DAILY GENERATION REPORT
    Date
    PARTICULARS UNIT FREQUENCY UNIT#1 Value UNIT#2 Value PLANT#1 Value
    GENERATION MUs Daily
    GENERATION MUs MTD
    GENERATION MUs YTD
    PLANT LOAD FACTOR % Daily
    PLANT LOAD FACTOR % MTD
    PLANT LOAD FACTOR % YTD

    Hi there,
    first, in object navigator, under system parameters, in DESFORMAT you have to put a DELIMITEDDATA for the output type of the file,
    next, in the data model you have to create a query like:
    SELECT 'Title 1' ||
    chr(13) ||
    'Title 2' ||
    chr(13) ||
    'Date: ' || to_char(sysdate,'YYYY-MM-DD') ||
    chr(13) ||
    'Hour: ' || to_char(sysdate,'HH24:MI:SS') || CHR(13) ||
    :PARAMETER1 ||
    CHR(13) Q0_HEADER_XLS
    FROM DUAL;
    And in the proprety panel for Q0_HEADER_XLS you to put NO, or discard from XML output.
    may help.

  • Help In Report Format like MCBA POP UP  Information

    Hi,
               Please help me  for the Function module or sample report like MCBA report like if we click the amount displays a pop up and another report content is displayed please help and suggest
    Regards
    ASHOK K

    In the example mentioned above the are using window command and passing the values to it.
    FOllow the same procedure.
    WINDOW  STARTING AT AA_START_COL AA_START_ROW
                    ENDING AT AA_END_COL   AA_END_ROW.
          NEW-PAGE LINE-SIZE AA_POPUP_WIDTH.
    Regards,
    Lalit Mohan Gupta.

  • Please help with report format

    Hi,
    When i am queryiing my table the result is like
    select * from general;
    MONTH    REGISTERD   ACCEPTED   REJECTED
    2012-04        120             80               40
    2012-05          80             40               40
    2012-05         60             40               20
    2012-04         90             40               50
    How i can display my result like below :
                     2012-04    2012-05
    registered       210          170
    accepted        120           80
    rejected           90           60Thanks
    Chandran.
    Edited by: Chandran on Oct 3, 2012 9:02 AM

    Hi,
    Thanks for your reply Frank, I have tried your solution but but can't seem to find a way to make this work.
    My base table data like :
    select * from general;
    ID     TYPE              MONTH               REGISTERED      ACCEPTED         REJECTED
    1       A            2012-04                 50                          40           10
    2       B            2012-05                 60                          40           20
    3       A            2012-04                 70                          40           30
    4       C            2012-05                 80                      40           40
    4       B            2012-04                 90                      40           50when i am applying the below query :
    select
    month,
    sum(registered) Registered,
    sum(accepted)Accepted,
    sum(rejected)rejected from general group by month;
    MONTH     REGISTERED     ACCEPTED       REJECTED
    2012-05        140                         80         60
    2012-04        210                        120         90i should get the below format :
                              2012-04                   2012-05
    REGISTERED           210                         140
    ACCEPTED             120                           80
    REJECTED               90                           60below are SQL commands :
    CREATE TABLE  GENERAL
       (     ID NUMBER,
         TYPE VARCHAR2(20),
         MONTH VARCHAR2(20),
         REGISTERED NUMBER,
         ACCEPTED NUMBER,
         REJECTED NUMBER
    insert into general values (1,'A','2012-04',50,40,10);
    insert into general values (2,'B','2012-05',60,40,20);
    insert into general values (3,'A','2012-04',70,40,30);
    insert into general values (4,'C','2012-05',80,40,40);
    insert into general values (5,'B','2012-04',90,40,50);Thanks
    Chandran
    Edited by: Chandran on Oct 4, 2012 9:55 AM
    Edited by: Chandran on Oct 4, 2012 9:56 AM

  • Report Format... plz help

    Hi All,
    I am facing a problem in getting the report in proper format. Can anyone help?
    Scenario:
    ODS 1 gives the following Data for Jan, 2010:
    Material--total Sale--
    % of total sale
    M1--4000.00--
    40%
    M2--6000.00--
    60%
    ODS2 has the transaction performed for each GL for Jan,2010 but we have to pick up only expense account GL1:
    GL Account----
    Total Dr/Cr posting
    GL1----
    350.00
    Now the requirement is to make a report where the expense is divided by contribution of each Material in total sale.
    e.g.
    350 *40% = 140.00 will go to M1
    350 * 60% = 210.00 will go to M2.
    So final report for Jan 2010 will look like:
    Material-Total Sale-% of total Sale---Expense
    M1 --- 4000.00 --- 40% --- 140.00
    M2 --- 6000.00 --- 60% --- 210.00
    I tried few things with by creating multiproviders, but did not help.
    I need your help to find out how to make the final report in the above mention format where data is lying into two unrelated ODS.
    Note: There is no common link between ODS1 and ODS2. The only logic is to divide GL1 Balance based on the percentage contribution of each material into total sale.
    Regards,
    Mayank

    HI Mayank,
    You can also just create a virtual key figures - the ABAP code behind the virtual key figure will do the allocation process for you - it will look at the % of total sales information from DSO1 and calculate the total expense from the one GL1 account - then execute an allocation process to generate the result for the virtual key figure. i've created virtual key figures to generate results of a standard deviation (2nd power) on the fly so, it can definitely help support this allocation process.
    You can also use BI-IP to do this for you with standard functionality - if you have both your ABAP and JAVA stacks installed then IP will work for you - you can then just create a formula via the formula editor in IP that will generate an allocation process based on information from both DSO's - this information would have to be in infocubes but that would help with reporting performance anyway.
    Thanks and hope this helps, Pete

  • Creation of report with the help of report painter

    Dear Experts,
                         I need report painter material, if any body have  pls  farward to me.
    my intension to create controlling report with the help of report painter.
    I am ready to award full points.
    Thanks in advance
    Regards
    avudaiappan
    Moderator - Please read this:
    /thread/931177 [original link is broken]
    Thread locked

    Hello Chinasammy,
    Report Painter allows you to create reports using data from SAP application components, which you can adapt to meet your individual requirements.
    Many of your reporting requirements can already be met by using the standard reports provided by various SAP application components. If these SAP standard reports do not meet your reporting needs, Report Painter enables you to define your specific reports quickly and easily.
    When executing a Report Painter report, it is displayed by the system in Report Writer format. You thus have access to the same functions as for Report Writer reports defined in the same way, and can combine Report Painter and Report Writer reports together in a report group.
    Report Painter uses a graphical report structure, which forms the basis for your report definition and displays the rows and columns as they appear in the final report output.
    To facilitate report definition, you can use many of the standard reporting objects provided by SAP (such as libraries, row/column models, and standard layouts) in your own specific reports. When you define a Report Painter report you can use groups (sets). You can also enter characteristic values directly.
    Advantages of Report Painter include:
    Flexible and simple report definition
    Report definition without using sets
    Direct layout control: The rows and columns are displayed in the report definition as they appear in the final report output, making test runs unnecessary.
    =============================================
    Below mentioned is the process for creating reports using Report Painter as a tool.
    Selecting and maintaining a library for your report: As the transfer structure to Report Painter you use a report table, which is defaulted by SAP and can not be maintained. This table contains characteristics, key figures and predefined columns. In a library, you collect the characteristics, key figures, and predefined columns from the report table, which you need for your Report Painter reports.
    When you define a Report Painter report, you assign it to a library. Reports assigned to one library can only use the characteristics, key figures, and predefined columns selected for that library.
    When you create or maintain a library, the Position field determines the sequence in which the characteristics, key figures or (predefined) key figures appear in the Report Painter selection lists when you define a report. This allows you to position the objects that you use regularly in your reports at the beginning of the selection lists. If you do not make an entry in the Position field, you will not be able to use this object in Report Painter reports.
    You can use either the standard SAP libraries for your reports or define your own.
    (ii) Selecting or maintaining a standard layout for your report: Standard layouts determine report layout features and the format of your report data.If the SAP standard layouts do not meet your reporting requirements, you can create a new  standard layout or change an existing one.
    (iii) Defining row and column models: A model is a one-dimensional, predefined reporting structure that you can insert in either the rows or columns of your report.If you often use the same or similar row or column definitions in your reports, it is recommended that you create row or column models.
    You must define the row and/or column models that you want to include in your report definition before you define the report.
    You can also use the standard column models supplied by SAP.
    (iv) Defining the report: Defining a Report Painter report involves the following steps.
    (a) Define the report columns: You define the report columns using the characteristics, key figures, and predefined columns selected for the library that the report uses. Alternatively, you can use a column model for column definition. Column models are predefined column structures which you insert into your entire column definition, instead of defining each individual column.
    (b) Define the report rows: You define the report rows using the characteristics selected for the library selected for the report.
    Alternatively, you can use a row model for your row definition. Row models serve the same purpose as column models, but are used to define a report row.
    Edit and format the report rows and columns in line with your requirements. (For example, you can hide rows or columns, define the column width or define colors for your report rows).
    (iii)Define general data selection criteria for the selection of your report data: Selection criteria are the characteristics used to select data for the entire report. You cannot enter characteristics as data selection criteria if they are already being used in the report rows or columns.
    (iv) Assigning the report to a report group: Once you have defined a report, you must assign it to a report group. A report group can contain one or more reports from the same library. However, reports that share the same data will select data more quickly and improve processing time.
    Hopw this helps you. Please let me know if you need anything more and assign points.
    Rgds
    Manish

  • Daily,weekly and monthly report format

    hi
       i  was asked to create a format for daily, weekly and monthly system performance report .. can anyone send me  sample report format..

    Hi Sandy,
    System Performance is always checked by a list of our lovely transactions in BASIS I generally had created one for my self and keep a track of performance..
    IT goes like this..
    Daily : DB12(Check Backup Logs);SM51(Check serv are UP);RZ20(Look for ALerts); SM13;SM21;SM37(check for cancelled jobs);SM12; st22 (dumps); ST02; SM35; SP01 (Spool jobs for more time); AL02; ST04; AL16.
    Weekly : DB12; DB02; SAPDBA checks ; DB drives and space;  EWA report of the past week.
    Monthly : More or less the same stuff of Weekly  with Archive files as well ...and SAPDBA cleanup logs... Monitor the DB growth and check for the backup logs...
    Hopefully this info shd help yoiu in this regard.
    Please award suitable points for the post.
    Br,
    Sri

  • The report format is:

    The report format is:
    <filename> <phase> <return code where appropriate>
    here what is phase and return code where appropriate?
    thanks
    with regards

    If you are talking about using the Report Generation Toolkit, the report format for Word reports is .doc format, and for Excel spreadsheets is .xls format.  These are binary files whose format is proprietary to Microsoft.  If you're talking about an HTML report, obviously the generated file is a .html file that is viewable in a standard text editor.  And for Standard Reports, there is no file generation (they get sent straight to the printer).
    Hope this helps,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Issue on How to mimic Deski document from CMS to local machine, pass parameter, execute and save in a mutiple report format then store in a network drive.

    Post Author: usaitconsultant
    CA Forum: JAVA
    Would you know if there's a way to mimic Deski
    document from BOXI server(CMS) to local machine, pass parameter, execute and
    save in a mutiple report format then store in a local drive or network
    drive? Most examples and tutorials in BO XI R2 I've seen are scheduling while drilling report is for web intelligence only and not desktop intelligence.  Please let me know your ideas. I would really appreciate your help. Thanks.

    Post Author: usaitconsultant
    CA Forum: JAVA
    Hi Ted,
    Thanks for the reply.The file is not available in the server. Though, I checked CMS and I found an instance in history tab and the status is failed with error below. 
                Error Message:
                A variable prevented the data provider Query 1 with BANRRD30 from being refreshed. (DMA0008).When I checked my codes, I found out that the object Im using is for web intelligence data provider. However, I cannot find any documentation and example for passing parameter values in desktop intelligence data provider. Any idea on this? You think this is not suported by Report Engine SDK?Thanks.    

  • How to get this report format out ?

    Hello all experts,
    Sample table creations like the following. Note checkno under xcheck table is not unique. Have tried pivotting the xcheck table then link pivoted xcechk with xcert using certno and invno but this willl end up getting duplicate records. Can u please help ? Basically I am stuck at how to get that vendor name out on the report
    create table xcert(
    certseq number primary key,
    certno varchar2(5) not null,
    vendor varchar2(25));
    create table xcheck(
    checkseq number primary key,
    checkno varchar2(8) not null,
    invno varchar2(100);
    Xcert Data
    certseq certno     vendor
    1     C1001     BP GAS
    2     C1002     BUG PEST CONTROL
    3     C1003     BP GAS
    4     C1004     BP GAS
    5     C1005     WILLIES BESTxcheck Data
    checkseq     checkno          invno
    1          EF500001     C1001,C1003,C1004
    2          EF500002     C1002
    3          EF500002     C1005Looking for a following report format
    checkno          invno               vendor
    EF500001     C1001,C1003,C1004     BP GAS
    EF500002     C1002               BUG PEST CONTROL
    EF500002     C1005               WILLIES BEST      Thank you
    Munshar

    Hi, Munshar,
    MunSharmi wrote:
    Frank,
    "I don't see why you would need another column. What would you need to store, or retrieve, that a table like this wouldn't allow?
    Notice my orignal xcheck table data plus a check date column
    {code}
    checkseq     checkno          invno               checkdate
    1          EF500001     C1001,C1003,C1004     11/01/2010
    2          EF500002     C1002               12/10/2010          
    3          EF500002     C1005               01/01/2011
    {code}Sure, if you have other data that you haven't mentioned yet, then you need other columns, and maybe even other tables, to store that data.
    Talking about this would be a lot easier if you described what you were trying to model in these tables, and what the different entities are.
    after nomalization
    {code}
    seq(PK)     checkseq     checkno          invno               checkdate
    1     1          EF500001     C1001               11/01/2010
    2     1          EF500001     C1003               11/01/2010
    3     1          EF500001     C1004               11/01/2010
    4     2          EF500002     C1002               12/10/2010          
    5     3          EF500002     C1005               01/01/2011
    {code}What do checkseq and checkdate represent? What is the realtionship between them? If there is another row with checkseq=3, will it necessarily have checkdate=01/01/2011? If there is another row with checkdate=01/01/2011, will it necessarily have checkseq=3?
    Shouldn't I need to have the extra seq(PK), then use check seq to group the data report to meet users' target format ? Please adviseIt depends on what your entities are. If you explain that, then perhaps I can give some advice about how to model them.
    In general, every type of entity requires a separate table. It looks like xcert represents one kind of entity, uniquely identified by certno. I assume there is some other kind of entity, uniquely identified by checkno, and that you have a table for that which you haven't needed to show in this thread.
    Are you saying that there's some other entity, that is uniquely identified by checkseq? If so, it probably needs a table of it's own.
    Every table should have a primary key. I had assumed that checkseq only served as the primary key of the xcheck table. If it serves some other purpose, then yes, you would need another column.
    Many-to-many relationships usually require a separate table. I was guessing that xcheck was intended to record a many-to-many realtionship between xcert and some other table. Guessing is not always the best way to solve problems. I think it would be better if you explained what you want to do, rather than have me guess at it.
    So far, what you've shown is analagous to an order entry system. One kind of entity is customer, another is supplier. Say you're running a company that sells products from many suppliers to many customers. There is a many-to-many relationship between customers and suppliers. Any customer may buy from many suppliers; any supllier may sell to many cutomers. You may have an orders table that keeps track of that many-to-many relationship. You may also have another entity, salesman, that also has many-to-many relationships with customers and suppliers. Depending on what exactly you consider an "order", there are lots of different ways to model this. Can a single order involve many customers? Can a single order involve many suppliers? Can a single order involve many salesmen? If an order always involves one customer buying from one supplier using one salesman, then you may only need four tables. If the situation is more complicated, then you may need more tables.

  • How to mimic Deski document from BOXI server to local machine, pass parameter, execute and save in a mutiple report format then store in a network drive.

    Post Author: usaitconsultant
    CA Forum: JAVA
    To Guru's, Would you know if there's a way to mimic Deski document from BOXI server to local machine, pass parameter, execute and save in a mutiple report format then store in a local drive or network drive? Most examples and tutorials in BO XI R2 I've seen are scheduling while drilling report is for web intelligence only.  Please let me know your ideas. I would really appreciate your help. Thanks. 

    Give Chronosync a go - have been using for over a year and it works great; if you like Syncback you'll like this app.

  • XI R2 To 3.1 Sp2 migration and report format issues

    Hello,
    is there a way to fix or troubleshoot report format issues after migrating to 3.1?
    We have a heavy report that the format (the way the report looks) is very important. In crytal Reports 2008 sp2 the format is OK.
    But from BOE CMC or from url reporting the report format have problems.
    Thank you
    Edited by: RUHVER BARENGI on May 18, 2010 9:47 AM
    Edited by: RUHVER BARENGI on May 18, 2010 9:48 AM

    Hi Ruhver,
    Crystal Report documents are heavily dependant on the printer driver for formatting.  If you design the report using a specific default driver than it will be dependant on that printer driver for formatting.  When you publish it to Enterprise, the same printer driver may not exist so the report will be re-formated to fit the default driver on the server, or if no driver exists, it will use an internal method to format the report. 
    Try this as a test.
    1) Open your report in the CR 2008 designer.
    2) Click on the File/Page Setup. 
    3) Select the "No Printer" option.  This tells the report to use this internal method to format the report
    4) Save this document as "Title - No Printer"
    5) Export it to Enterprise
    6) Test this report again.  Formatting should be identical in BOE vs CR.
    Keep in mind that when you change the driver in step 3, the report in the designer will re-format.  You may need to tweak the report again in order for the formatting to be as desired.
    Test this out and if you require further assistance with this, I would suggest opening a message.  This is a common issue and a support engineer could likely help you with this pretty easily.
    Hope this helps,
    Jb

  • 3.0 Shared Component - Report Format - all PDF

    Greetings,
    Details
    I have been working with the REPORTS - REPORT QUERIES section of APEX 3.0
    The testing I have been doing is very simple, but I am running into a bit of a stumper.
    I have created 4 report queries on the EMP table (SELECT * FROM EMP) that all use the same REPORT LAYOUT. The RTF file which is the template is a very simple - show all columns and rows for the EMP table (14 rows).
    I have set each of the 4 report layouts to a different format.
    1 - PDF
    1 - EXCEL
    1 - WORD
    1 - HTML
    I am NOT using the ITEM to dynamically set the format.
    I can TEST each of the reports in the shared component area, and they test OK with a success rate of 75%.
    The EXCEL format does not export correctly. (using Excel 2002 on the client) It is a bit of a mess. (Works in the XML publisher template builder on the client.. so the format is not the issue.)
    More curious is the behavior when I put this application. I have created a LIST of the 4 report formats. All 4 return the PDF format when used.
    To see the Application:
    http://apex.oracle.com/pls/otn/f?p=34096
    Question Summary:
    1 - Has anyone run with and tested the RTF style report layouts out to Excel?
    2 - The approach described usees 4 report queries against 1 layout. Is this a VALID use of the report functionality?
    3 - Why would all the reports try to use PDF when they test in the correct formats?
    Best Regards and Thank You.
    -- Tim

    Tim,
    The Excel output is not strictly XLS, it's actually HTML formatted in a way that Excel understands and through setting the MIME-types we make it open in Excel. I have to try reproducing your specific problem with Excel 2002. If you could send me your RTF layout and the end-result ([email protected]), I can take a look.
    Your approach using 4 different queries with the same layout is perfectly fine. Ideally of course, you would not have to replicate them same query four times, so we are considering a shared query concept for future version of Application Express.
    You specific problem with the output format being PDF at runtime appears to be a bug, I'll investigate further. Meanwhile one work-around would be to use a report region instead. If you're using the same SQL query as the source, you can associate the same report layout (on the report print attributes page). You could also create a "container" page for that report region, that's never actually called by the end user, and then have a button pointing to the URL below for printing. It would then work just like your report queries, only that you now would get the requested format:
    f?p=&APP_ID.:[REPORT PAGE ID]:&SESSION.:FLOW_XMLP_OUTPUT_R[REPORT REGION ID]
    so if your app ID is 34096 and your "container" page e.g. 99, and on page 99 your report region ID would be 1234567890, then use this URL as the button target:
    f?p=&APP_ID.:99:&SESSION.:FLOW_XMLP_OUTPUT_R1234567890
    Hope this helps,
    Marc

  • Change the HTML Report format the same as TestStand 2010 SP1 in TestStand 2012

    I have a lot of test steps (~10K)  that gets executed and the indentations on HTML report format in TestStand 2012 gets too deep.  I have to slide the horizontal bar to the right to see the report when l'm in the middle.  I did not have this issue in TestStand 2010 SP1.  
    Is ther a way to change the HTML Report format (style) the same as TestStand 2010 SP1 in TestStand 2012? 

    dexrays:
    We are currently investigating this issue. In order to help us with the investigation could you post a sequence file and configuration that reproduce the problem? The configuration file is located in C:\ProgramData\National Instruments\TestStand 2012\Cfg\ModelPlugins\ResultProcessing.cfg for Windows Vista / Windows 7 or you can use the Cfg link in the TestStand 2012 installation directory. 
    You can use the Legacy Model Switcher (included in TestStand 2012) to use the legacy models instead of the new models. The legacy models are more backward compatible, however, this also means that you will not be able to use the improvements in the new models (for example, the new plug-in architecture). If this is acceptable then you can use the legacy model switcher to switch to the legacy models. The Legacy Model Switcher is located in the Start Menu under Programs->National Instruments->TestStand 2012->Tools->Compatibility. For more information on Legacy Model Switcher please read the online help.
    Thanks for your report and for your help with diagnosing this issue. 
    - Francisco

  • Risk Analysis Reports Format

    Hello Experts,
    What is main difference between Risk Analysis Report Formats ....
    Summary
    Detail
    Management Summary
    Executive Summary
    Please explain in depth and which scenarios we are using these reports. Please give a one business example.
    Regards,
    Babu

    Dear Babu,
    trying to help you.
    Summary: gives you an overview of conflicts on action level. Can be used to discuss with business what is causing the risk.
    Detail: gives you an overview of conflicts on authorization level. Can be used to analyze how a conflict can be removed.
    Management summary: gives you an overview of risks on user level. Can be used to report how many risks are currently in the system on user level. E.g. userA has 3 risks, userB has 2 risks, etc.
    Executive Summary: gives you an overview of risks on risk level. Can be used to have a general overview of applicable risks in the system. E.g. riskA has no conflicts, riskB has 7 conflicts, etc.
    Best if you just analyze and you will see the differences. If you have a particular question do not hesitate to contact us.
    Regards,
    Alessandro

Maybe you are looking for