Acronym Issue due to IR column headings in  InitCap

Hello ,
I am using an IR report with around 140 columns.
Some of the column heading are acronyms .However the IR automatically generates them in InitCap.
How can I override this ?
I can go to column attributes and change the heading but then since my report has more than 100 columns; all the columns are not displayed in report attributes for editing.
Appreciate any pointers/suggestions in this regard.
Thanks,
Deepa

Hi,
you can get this done in 2 ways:
1 - Change the query to add another column and the re-generate the report
2 - If changing query is not possible, you can change the report it self for adding extra field. If you look at the code, it will be more like normal ABAP code. you can easily modify it (If you are ABAPer) for your additional requirements.
thnx,
ags.
Edited by: Agasti Kale on Jun 12, 2008 6:26 PM

Similar Messages

  • SSRS 2008 Header height issues due to merged columns

    When working on a report today we ran into an issue which took us quite some testing to figure out. At some point we decided to switch some of the headers of columns around and when rendering the report again it for some reason created a header which was
    way heigher then the biggest text there, showing a huge empty space in the header underneath the text.
    My first guess was that there had to be some extra spaces in some column or something alike, which made the cells grow so much. This however was not the case. As a next step I cleared the cells in the headerrow one by one to figure out which field was making
    the header grow this much. It turned out to be the header in the 10th column. When I replaced the text in this cell, it did not make the header grow anymore. When I put the original text back, it started growing again. As a next step I removed the text in
    this cell, pasted it in another cell (column 11) and rendered the report, with the same huge header again. Out of frustration I tried a desperate last move, copied it to column 1 and rendered the report, the effect was a small header without some weird height.
    So the conclusion was that this text was making the header grow hugely in the columns 10 and 11, but not in column 1? What is the difference between column 10/11 and column 1?
    Then I noticed that column 7, 8 and 9 were pretty small columns, only holding integer values. The header above this, however, was one word, so the 3 cells in the header for these columns were MERGED. So basicly, only looking at the cells in the header, my
    huge text was in the 8th cell from the left, not the 10th (10th column, but due to merging the 8th cell). As a test I editted the width of the 8th column (the middle one of the merged cells) to be as wide as all the other columns holding text. The rendering
    of the report, with the huge text in the original headercolumn, now did not grow my header to be extremely big. This combined with the way "hiding" works in SSRS 2008 oppose to SSRS 2005 (ie, in 2008 a hidden cell disappears completly, moving all next cells
    up to the left, where as in 2005 a hidden cell just shows as empty in the report), leads me to believe that there is a bug in SSRS 2008 considering cell widths and merged cells? It is like the 10th column header now thinks it is part of the 8th column (being
    the 8th cell in its row due to merging) and therefor works with the width of this 8th column to judge how much increased height it needs. In fact it is the width of the 10th column and therefor doesnt need the height it creates, resulting in a huge empty space
    underneath the text.
    Is this a known issue by Microsoft? Any ETA on this for a fix?

    This combined with the way "hiding" works in SSRS 2008 oppose to SSRS 2005 (ie, in 2008 a hidden cell disappears completly, moving all next cells up to the left, where as in 2005 a hidden cell just shows as empty in the report), leads me to believe that
    there is a bug in SSRS 2008 considering cell widths and merged cells?
    Hi Joel_i,
    I was a little confused with the paragraph above. Could you please elaborate it?
    Based on the information posted, I tried to reproduce the scenario, but it works fine. During my test, the header cells grow
    only when the text in the head column is too long which will caused newline, or there is some extra space in some columns. So, you might need to check the properties of the 8<sup>th</sup> column cell, such asSpaceAfer,
    SpaceBefore, to make sure all properties are set rightly.
    To provide you further assistance, could you please post the report and dataset with sample data to our data collection E-mail
    address?
    E-mail: sqltnsp AT microsoft.com (Please replace the AT with @, and remove additional spaces).
    Thanks,
    Lola Wang
    Please remember to mark the replies as answers if they help.

  • Dynamic crystal report generation - issues with column headings

    Hi All,<br>
    I'm trying to generate a crystal report dynamically based on a "result set" data(Query: select REPORT_ID, REPORT_NAME, REPORT_DESC, RPT_FILE_NAME, LOCATION from IRS_REPORT_DETAILS). I'm able to generate the report run time, But the report is without columns heads. I would like to include the column headings as well. <br><br>
    I searched the API(RAS) and found that there is a 'add(java.lang.String fieldName, java.lang.String headingText) " method present in "ReportObjectController" using which we can add the headings.<br><br>
    ReportDefController reportDefController = clientDoc.getReportDefController();
    ReportObjectController reportObjectController = reportDefController.getReportObjectController();
    reportObjectController.add( "{Table.Field}", "FieldName" );
    <br><br>
    I'm facing problems in using this code. When trying to use this function for my fields(Ex: reportObjectController.add( "{ IRS_REPORT_DETAILS.REPORT_ID}", "Report ID" );) it is giving me the following error:<br><br>"com.crystaldecisions.sdk.occa.report.lib.ReportSDKGroupException: The field was not found.---- Error code:-2147213310 Error code name:fieldNotFound"<br><br>
    <b>The following is my dynamic crystal report generation code:</b><br><br>
    public ReportClientDocument execute(String repName, String query) {
              ReportClientDocument boReportClientDocument = null;
              try {
                   boReportClientDocument = new ReportClientDocument();
                   boReportClientDocument.newDocument();
                      // Add a table based on the given Resultset to the report.
                   dbConnResultSet mySampleResultSet = new dbConnResultSet();
                   //mySampleResultSet.execute(query);
                   boReportClientDocument.getDatabaseController().addDataSource(
                             mySampleResultSet.execute(query));
                   IReportSource test = boReportClientDocument.getReportSource();
                   // Access all the database fields
                   DatabaseController databaseController = boReportClientDocument
                             .getDatabaseController();
                   IDatabase database = databaseController.getDatabase();
                   Tables tables = database.getTables();
                   ITable table = (Table) tables.getTable(0);
                   int NO_OF_FIELDS = table.getDataFields().size();
                   int LEFT_POSITION = 200;
                   // Add all the database fields to the report document
                   for (int i = 0; i < NO_OF_FIELDS; i++) {
                        IField field = table.getDataFields().getField(i);
                        FieldObject fieldObject = new FieldObject();
                        fieldObject.setFieldValueType(field.getType());
                        fieldObject.setDataSource(field.getFormulaForm());
                        IReportObject rep = (IReportObject) fieldObject;
                        IObjectFormat objformat = rep.getFormat();
                        objformat.setEnableCanGrow(true);
                        objformat.setHorizontalAlignment(Alignment.from_int(1));
                        rep.setFormat(objformat);
                        rep.setLeft(LEFT_POSITION);
                        rep.setWidth(1000);
                        LEFT_POSITION = LEFT_POSITION + 1000 + 50;
                        ISection section = boReportClientDocument
                                  .getReportDefController().getReportDefinition()
                                  .getDetailArea().getSections().getSection(0);
                                   //***************** Data being added to the report here, But headings are not added*****************
                        boReportClientDocument.getReportDefController()
                                  .getReportObjectController().add(rep, section, i);
                   boReportClientDocument.createReport();
                   /*Some report saving code is present down*/
              } catch (ReportSDKException ex) {
                   ex.printStackTrace();
              } catch (Exception ex) {
                   ex.printStackTrace();
              return boReportClientDocument;
    <br><br>
    appreciate your help.

    IField field = table.getDataFields().getField(i);
    Here you are getting the first field in the array.  This may not be the field you want to add since we aren't sure how the arrays are ordered when retrieving fields from the report.  It is better to retrieve the fields with the findObjectByName method, thus ensuring you are retrieving the field you want to add to your heading.

  • Using Excel 2008 for a Mac in my laptop and part of toolbar has disappeared (windows, help, view, etc) and Need to to freeze column headings

    Using Excel 2008 for a Mac on my laptop
    Part of toolbar has disappeared (windows, help, view, etc) --- want to restore
    Need to freeze column headings but freezing option was not working prior to disappearance of tool bar

    Hi Alveretta,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing developing issues on Windows platform. I suggest to get more effective response from
    Office for mac forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or
    learn from your interaction with us.
    Thanks for your understanding.
    Best regards
    Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Row and column headings-how to print without them

    Currently Epson C64 and appleworks 6.2
    How can I print the spreadsheet without the row and column headings as there doesnt seem to be a place to choose whether to how or not
    Thanks for replies
    Whilst writing, too many instances of the coloured wheel rotating, nothoing showing on screen, suddenly whole sentences appear. Very irritating, so how can I stop this ?

    I'm glad the AppleWorks info was helpful.
    About the colored wheel issue: does this happen in all applications in which you are typing? Are you doing other things in that app at the same time. For instance, if Safari is one of the problematic apps, are you also downloading at the same time? I have seen this issue a few times - very rarely - and have found that a restart usually gets things back to normal. I'm not sure if this will be a helpful workaround for you, but it has had some success.

  • Does anyone have a report using cfdocument that produces a ledger type report with column headings?

    I need to see some sample source code of a report with column headings and detail data.  I can't get my column titles in the header to line up with the detail no matter what I do.  Can anyone spare me a good sample?
    I have tried to use tables to specify both col headings and detail, but no chance to get them to line up.  There has to be a way.  I can't use the report builder because I need more control of when page breaks print, what data is on each line, etc.  Hopefully some kind soul out there has a good sample.
    Thanks!
    Dave

    Your MBP is actually a mid-2010, not a 2008. That's what the 6,2 model indicates.There's an issue with the graphics module on that machine. There was a program in place to replace the motherboard within 3 years of purchase, but you're probably outside of that. Some folks have supposedly gotten theirs changed outside of that period, so you can try.
    http://support.apple.com/kb/TS4088?viewlocale=en_US&locale=en_US
    What you can do to use it is download gfxstatus from http:gfx.io and force the graphics to Intel. That would affect your work with Final Cut, but at least you might be able to use the machine.

  • Controlling location of Window Split Pane in Excel export of SSRS report to include column headings in frozen/split pane at top

    With a SSRS 2008R2 report consisting of a page header and a tablix in the body with columnar information, how can you control which rows are in the Frozen Pane at the top of the workbook when exporting the report to Excel.  Currently the top
    pane is just the Page Header.  I want to include the column headings from the tablix as well.

    Hi G,
    Based on my test, I can reproduce the issue in my local environment. The report only display page header as the fixed data when export it to Excel. Even the tablix header with fixed date repeats on every page when we render the report in Report Designer,
    but it cannot display as fixed data in Excel. This is by design.
    To work around this issue, we can add the same content in page header, then adjust the space between page header and report body to make them like a whole tablix.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Column Headings in the report and adding an extra field to the report

    Hi All.
    I had an issue like i need to put column headings for a report and I want to add an extra field to the report.
    The problem here is that the report was actually cloned from a Query.At the time of cloning,they forgot to add the column headings.
    Now we need to add the column headings for the same.How can we proceed for this and where we need to add our code?
    How to add an extra field  to the existing report?
    Any pointers will be very much helpful.
    Regards,
    SSR.

    Hi,
    you can get this done in 2 ways:
    1 - Change the query to add another column and the re-generate the report
    2 - If changing query is not possible, you can change the report it self for adding extra field. If you look at the code, it will be more like normal ABAP code. you can easily modify it (If you are ABAPer) for your additional requirements.
    thnx,
    ags.
    Edited by: Agasti Kale on Jun 12, 2008 6:26 PM

  • Column headings in Hierachical-Sequential ALV

    Hi Friends,
    I'm trying to display a Hierarchical-Sequential by:
    1. Using the class 'cl_salv_hierseq_table' and method 'factory' to create the binding.
    2. Using the method 'display' to display the report.
    The issue I'm facing is that the column headings being displayed in the report output are the 'Field Label' maintained in the dictionary. I would like to change the same.
    Could anyone please help me in this regard??
    Thanks,
    Anju

    check this :
    data: v_xfield_st type slis_t_fieldcat_alv.
    edit the field catalog table.. by reading it...
    read table v_xfield_st where FIELDNAME = 'WERKS' .
    if sy-subrc eq 0.
    v_xfield_st-SELTEXT_S = 'Rec. Plant'.
    v_xfield_st-SELTEXT_m = 'Recv. plant'.
    modify v_xfield_st index sy-index.
    endif.

  • Column headings missing in the ouput

    Hi All,
    the report is displaying more than 255 line size for that i have given in the program as shown below
    Report XXXXX LINE-SIZE 323.
    Actually i had ran the report in the background there i have selected print settings as shown below
    format :Z_65_1023 Expanding the spool size for more than columns 255
    but iam not getting column headings after 255 line size.
    Please help me to resolve this issue.
    Regards
    Suni

    Hi shiva,
    Thanks for your reply...
    iam executed the report in background and selected as z_65_1023 format but in the ouput three columns are not getting which is after >255 characters .kindly help me how to get the column headings,data is coming >255 characters but column headings is not coming .
    Regards
    Suni

  • Received and Issued quantity in same column in PLD.

    Hello All,
    I've created PLD for Inventory Valuation method, the problem is both the received quantity and issued quantity are display in the same column.
    But I want it in different columns, that is received quantity in one column and issued quantity in another column. Please suggest how to rectify it in the PLd.
    Thanks,
    Pratheeviraj

    Hi Pratheeviraj,
    In the PLD, create 2 formula field in the repetitive area -
    1. Field_141 > 0
    2. Field_141 < 0
    where Field_141 refers to the Quantity field.
    3. Link the Quantity field to formula field 1 above. This way, the quantity field will show only the >0 quantity
    4. Duplicate the quantity field. Set it as a separate column and link it to the <0 formula field.
    Now this column will show qty > 0
    Rename the column headings acc.
    Hope this helps.
    Regards,
    Hamsa

  • Action Item web part has no column headings

    Any idea why my Action Item web part does not display the column headings?
    TIA!
    David L. Crooks

    Hi,
    Is it a list being inserted into a page? Cause there seems no such OOTB web part provided in SharePoint 2010:
    http://www.c-sharpcorner.com/UploadFile/720a73/list-of-sharepoint-2010-out-of-the-box-web-parts2/
    If it is a list view whose column headings are missing, a possible reason is that the headings are hidden by some CSS style, I suggest you insert this list in other
    pages or other sites to see if it is an issue of custom CSS style.
    Thanks 
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to manipulate Webi column headings?

    I am achieving the webi output result as shown in First picture in attachment
    Fiscal Quarter  Sales Doc  Item   Total revenue  revenue1  revenue2  revenue3  revenue4
    2010-Q1         75465476    12         5000       1000      1000       1500    1500
    2010-Q1         76545765    22         8000       3000      2000       1500    1500
    2010-Q1         78344644    17         9000       2500      1500       4000    1000
    2010-Q2         97656744    20         7000       2000      2000       1500    1500
    2010-Q2         86467453    19         6000       1500      1500       1500    1500
    2010-Q3         84545633    18         4000       1000      1000       1000    1000
    2010-Q3         97664333    14         6000       2000      1000       1500    1500
    2010-Q4         97865080    25         5000       1000      1000       1500    1500
    2010-Q4         95786785    29         8000       2000      2000       2500    1500
    2010-Q4         86785446    28         8000       1500      1500       2500    2500
    2010-Q4         97789675    10         9000       1000      1000       1500    5500
    The column Headings are
    Fiscal Quarter; Sales Document; Item; Total revenue; revenue1; revenue2; revenue3; revenue4
    Now I am placing 'Prompt Variable' for Fiscal quarter.
    So when I enter 2010-Q1 in the prompt,the row with Fiscal quarter 2010-Q1 will be filtered and also I should be able to change the heading of columns (revenue1; revenue2; revenue3; revenue4) as 2010-Q1;2010-Q2, 2010-Q3; 2010-Q4 respectively.
    The revenue1 column should contain the prompt value entered and the subsequent columns revenue2; revenue3; revenue4 should increase by a quarter each.
    Fiscal Quarter  Sales Doc  Item   Total revenue  2010-Q1   2010-Q2   2010-Q3   2010-Q4
    2010-Q1         75465476    12         5000       1000      1000       1500    1500
    2010-Q1         76545765    22         8000       3000      2000       1500    1500
    2010-Q1         78344644    17         9000       2500      1500       4000    1000
    Similarly when I enter 2010-Q3 in the prompt,the row with Fiscal quarter 2010-Q3 will be filtered and also I should be able to change the heading of columns (revenue1; revenue2; revenue3; revenue4) as 2010-Q3;2010-Q4, 2011-Q1; 2011-Q2 respectively.
    Fiscal Quarter  Sales Doc  Item   Total revenue  2010-Q3  2010-Q4    2011-Q1   2011-Q2
    2010-Q3         84545633    18         4000       1000      1000       1000    1000
    2010-Q3         97664333    14         6000       2000      1000       1500    1500
    How can the desired results be achieved?

    For the first quarter column create a formula for column heading
    =UserResponse("Enter Fiscal Quarter:")
    Next-> create a variable for this formula suppose var1 and use this as input formula for second column which is as follows
    =If(ToNumber(Substr([Var1];7;1))+1)=5 Then (FormatNumber((ToNumber(Substr([Var1];1;4))+1);"####")+"-Q"+"1") Else ((FormatNumber(ToNumber(Substr([Var1];1;4));"####"))
    now again create variable from this craeted formula as var2 and use this varible in the input for formula for third column
    =If(ToNumber(Substr([Var2];7;1))+1)=5 Then (FormatNumber((ToNumber(Substr([Var2];1;4))+1);"####")+"-Q"+"1") Else ((FormatNumber(ToNumber(Substr([Var2];1;4));"####"))+"-Q"+(ToNumber(Substr([Var2];7;1))+1))
    and so on..
    there is no need to display variables as columns. Since only the headings of the columns are manipulated, there is not performance issue.

  • Trying to get different column headings for folders in Apple Mail - Help!

    Hi there
    I really hope someone can help here.
    I have a few different email accounts coming into my Apple Mail program. For each account I am using a 'Saved' folder (for the incoming email i have read) and a 'Sent' folder (for the emails I have sent).
    In my 'Saved' folder, I want my column headings to be:
    a. Who the email is from
    b. The subject line
    c. The date and time received
    In my 'Sent' folder, I want my column headings to be:
    a. The address I have sent to
    b. The subject line
    c. The date and time received
    The problem is that when I changed the column headings for one folder, it changes them for all of them. So I can display who my incoming emails are from, but in the sent folder, it only tells me who my sent emails are from....me!! This is no use at all. Is there anyway to apply different column headings to different folders? In Entourage this is easy, but Im at a loss of what to do in mail.
    Please help if you can
    Many thanks
    Dan

    as i said, Sent mailbox is special and can have custom columns separate from other mailboxes. ALL other mailboxes have the same columns and you can only customize them simultaneously. if you want to change that leave Apple feedback on the issue
    http://www.apple.com/feedback/macosx.html

  • Tooltips for report column headings

    Hello,
    I have a normal report, and I wanted to have either a tooltip or a cluetip for the report column headings. Can anyone please help me with this issue.
    thanks,
    orton

    Hi!
    One way would be to adjust the report template. But this is quite difficult if you haven't done this before.
    Maybe this forum post helps: Re: oracle apex and extjs grid table
    Hmm on the other side why don't you just add some html tags inside the report column headers? I would suggest this example: http://apex.oracle.com/pls/otn/f?p=25110:5
    &lt;span TITLE="header=[Help] body=[Helptext]";>YOUR COLUMN HEADER&lt;/span>Best regards,
    Tobias

Maybe you are looking for