Report formatting in my way

I want to make a report which will show my DB table data the way I want.Most report tools just fetch the data and format it in a typical row. But I want to display my row data in a way that I want.For example, I want to show each cell data of a row in a particular place in a report. like- id, top-left, name,top-right
and so on. I use Jasper report and QBEspress but can they format data this way.if so, can anybody give me a link for the tutorial.

Hi Meenu
  I'm using the EPM report formatting and excel.
I tried to make a macro run too.
But when updating loses the reference.
Following code:
Private Sub Worksheet_Change (ByVal Target As Range)
'Validates that was enacted i4 cell
If Target.Address = "$ I $ 4" Then
     'Colours range from white
     'Record a macro with its original formatting and replace this snippet
     Range ("I11: T11"). Select
     with Selection.Interior
         . = Pattern xlSolid
         . PatternColorIndex = xlAutomatic
         . ThemeColor = xlThemeColorDark1
         . TintAndShade = 0
         . PatternTintAndShade = 0
     end With
     Range ("I12: T20"). Select
     with Selection.Interior
         . = Pattern xlSolid
         . PatternColorIndex = xlAutomatic
         . ThemeColor = xlThemeColorAccent2
         . TintAndShade = 0.799981688894314
         . PatternTintAndShade = 0
     end With
     'Sets the last column to be colored
     Order = Replace (Format (Target, ">"), "V", "") + 8
     'Tests whether the final column is greater than 8
     End If> 8 Then
         'Colours range.
         'In this case the first line is 11 and the last line is the 20, but can be changed according to the need
         For Each C In Range (Cells (11, 9), Cells (20, End))
             C.Select
             with Selection.Interior
                 . = Pattern xlSolid
                 . PatternColorIndex = xlAutomatic
                 . ThemeColor = xlThemeColorAccent1
                 . TintAndShade = 0.399975585192419
                 . PatternTintAndShade = 0
             end With
         Next
     end If
end If
Range ("$ I $ 4"). Select
end Sub
Regards
Thaís

Similar Messages

  • Difference between pdf and html report format

    Why HTML report printouts truncate from the right-end side, compare to the pdf report format ?, do i need to change anything
    while running report through HTML format

    The printing from html output is majorly affected by browser settings. Once you try to change the left and right margins in page setup before printing, I solved this problem in this way , it may work for you. Let me know if it works or if you overcome it by other ways.
    with regards
    wara

  • 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

  • Report Format like HFM

    Hello All,
    I am trying to replicate a report format that is identical to HFM Reporting and Excel add in in Essbase. Here is the Format how it looks like
    Column-1 Column 2(Sales)
    Prod Level 1     
    Prod Level 2a     
    Prod A 100
    Prod B          200     
    Prod C          300
    Prod Level 2a Total                  600
    Prod Level 2b
         Prod D     300
         Prod E      200
    Prod Level 2b Total                  500
    Prod Level 1 Total                     1100
    This is a 3 level hierarchy Prod dimension(Prod level1 - prod level 2(prod level 2a, prod level 2b)- prod level 3(prod A, B, C, D, E)). so when we try to implement this in OBIEE we end up having 3 columns one for each level of the Prod hierarchy.
    But the business wants this in one single column which has all the children from all the subsequent levels idisplayed in ths same column. So this is like more or less replicating P&L reports in HFM or replicating the essbase excel add in reports.
    is there any way to get the desired format? i am thinking about Publisher but I dont know if that can be done or not
    Any suggestions would be appreciated
    thanks in advance
    Prash

    Thanks for your suggestion and that approach will just give me all the levels of children in one row. But i need them in multiple rows but just under one single column
    I want them like
    Column 1
    Prod Level 1
    Prod level 2
    Prodl level 3
    and also grand totals at each subsequent levels. but concatenating or string operations gives me in one single row as below(which i dont need) and also i will not be able to group them total wise.
    Column 1
    Prod level prod level2 prod level 3
    Thanks
    Prash

  • 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

  • XML message in report format

    Hi all,
    Is there a way i can present the XML messages in a report format?
    I have the table SXMSPMAST to get the message ID and using class CL_XMS_PERSIST we can get the entire message.
    But, i need to collate the different messages in different nodes from the XML message into a report format.
    Please advice.
    Thanks & Regards,
    Akshay

    Hi.
    u can use the function module 'TEXT_CONVERT_XML_TO_SAP' to get the XML data present in a file to an Internal Table in ABAP.
    also read this
    Upload XML to internal table and vice versa in SAP 4.6C
    Salil ....

  • Different Report formats to be generated

    Hi All,
    I have a requirement where I need to generate Invoive Statements (AR) and send them to customers. For different customers we need to send in different formats like PDF,EDI,RTF or send by mail or publish in a site as a PDF etc.
    I was thinking of using BI(XML) publisher.
    Is it possible to achive this by XML Publisher. I mean generating the XML file by running the concurrent program and then using that to create different kind of documents.
    Also is there is any tool available, which will generate a PDF/RTF template if I pass the RDF.
    Please let me know ur inputs.
    Thanks in advance.
    Balaraj

    Hi,
    You can achieve different different format via two ways.
    First is to register different different template as per your format and second is to write a fnd_submit.request_submit in after report trigger and call your template with different format.
    For your second requirement you can use new template manager.
    Regards.
    Rahul Kaushik.

  • XML Messages in report format

    Hi all,
    Is there a way i can present the XML messages in a report format?
    I have the table SXMSPMAST to get the message ID and using class CL_XMS_PERSIST we can get the entire message.
    But, i need to collate the different messages in different nodes from the XML message into a report format.
    Please advice.
    Thanks & Regards,
    Akshay

    Hi Akshay,
    check this thread.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60bec074-941e-2b10-bc9b-a155e8f54f9a
    Regards,
    Syed

  • Reporting format Issue .. Result  row Count Display...URGENT!!!!

    Hello All,
    Need solution for my issue in reporting,
    This is my Report format
    Date              A/c number   Kf1   Kf2 Kf3
    01.06.07            123         10    20   0
                       234          20    30   30
                       456          50    0  25
                       789           0   25   0
                       Result       80   75  55  
    01.07.07            124         10    0  10
                        134         30   30  30
                        457         40    0   0
                        788         0   25  10
                       Result       80   55  50
    Now my requirement is to display Count in the result row as
    Date             A/c number    Kf1  Kf2 Kf3
    01.06.07        123            10   20   0
                    234            20   30  30
                    456            50    0  25
                    789             0   25   0
                    Result          3    3   2  
    01.07.07        124            10    0  10
                    134            30   30  30
                    457            40    0   0
                    788             0   25  10
                   Result           3    2   3
    and to be more precise this is my requirement
    Date        Kf1  Kf2 Kf3
    01.06.07     3    3   2
    01.07.07     3    2   3    
    I made key figure Calculate Result as Count <> 0 and Calculate single value as Supress Result for each key Figure and A/c Number No display I got result like this showing all data as blank, however the rows will exist.
    Date          Kf1  Kf2 Kf3
    01.06.07                                                                               
    3    3   2  
    01.07.07                                                                               
    3    2   3
    But I need my result should be like this
    Date        Kf1  Kf2 Kf3
    01.06.07     3    3   2
    01.07.07     3    2   3   
    How can I Acheive this either by work Book Or  by Query ,
    Please help me
    Thanks for all ur support in advance
    Sai.

    Hello Boujema,
    I Created formula variable replacement path  in the same way you mentioned but this is irrespective to KF giving the Characteristic Account Number count...
    Hello All,
    please go through my requirement
    this is my report
    Date        AC no  Kf1 Kf2
    01.06.07     XXX   10  12
                 yyy   15  10
                 zzz    5   0
               result  30  22
    If I remove Ac no from this it gives me a result as summation
    Date        Kf1 Kf2
    01.06.07    30  22
    In the same way the KF should give me count of the accounts
    Date        Kf1 Kf2
    01.06.07    3    2
    But I am getting now as If I mention Count<> 0 in KF properties
    Date        Kf1 Kf2
    01.06.07     1    1
    If I place Account Number in report which I dont want to Then i will get count
    Date        AC no  Kf1 Kf2
    01.06.07     XXX   10  12
                 yyy   15  10
                 zzz    5   0
                Result  3   2
    Hope you understand my requirement and come up with any solution.
    Thanks for your help,
    Sai.

  • Remove ATML Report Format from TestStand

    Hi!
    It is possible to remove the ATML Report Format from TestStand (or TestExecutive) ?
    I already tried to remove the folder <teststand>/Components/Models/TestStandModels/ATML
    and then restarted the TestExecutive, but the option from the checkBox was still there...
    Is there any way arround without changing the source code?
    Solved!
    Go to Solution.

    You can’t remove the ATM from the report options pop up easily, but you can ignore it easily and reset it to something else. 
    Add the ReportOptions callback to your sequence file.
    Then check Parameters.ReportOptions.ReportStyle for the string “ATML” and over ride it to what you wish.
    There may to one or two other settings you may have to check, but I would have to set up a trial to test them out.You should be able to find any others by single stepping through the report generation seq. 
    I do this all the time for just about all the report and data logging options making sure they are set to the format we want and have not been set to something we do not want.  The operator can play around with the settings but they have no effect on the report file because I force them to be what I want them to be.
    Jim Dailey
    Test Engineer
    Sanmina-SCI
    13000 S. Memorial Parkway
    Huntsville, AL 35803(256)
    Omar

Maybe you are looking for

  • Using an existing iTunes library on a removable disk

    My laptop died recently and I'm still waiting for it to be repaired. While I'm waiting I've removed the hard disk and put it in an external USB-IDE case so I can access my files. My question is: can I use the iTunes library on my laptop hard disk wit

  • Looking for laptop - running Win version of CS3 on Macbook Pro?

    I've been wanting to finally get a laptop for a long time now, and my first choice has always been a Macbook Pro. My main computer now is a self-built PC, and I do all my video work within CS3; my production company also runs CS3, so it made sense to

  • Acrobat X Pro editable PDF feature

    When a document is conveted to PDF using Acrobat X Pro, certain editable fields in some documents, while in some, all editable fields on all pages of the PDF document contains the shadow effect. This shadow effect in a way provides the output in the

  • A great iTunes idea!!

    With all the Apple keynotes (MacWorld confrences and such) that exist, wouldn't it be nice if Apple offered them on the iTunes store to purchase? This would be great because, 1.) Every conference video is historical and would be great for people to l

  • Int into string?

    I know this is possible, but how do you do it?  I'm making a game, and I want a score on the screen at all times.  How do I tell the game to take an int value of the score, and make it possible to turn it into a string, in order to represent it on th