Add a Column to a Report

Hello,
How do I add a column to a Report after it has been created? I cannot find a way to do it readily in the "Report Column Attributes" as I thought it might be the more rational place to put such a time. Nor is there any information in the PDF Manuals.
Thank you for your kind clarification and assistance.

Colin,
If this is a report on a SQL query, simply augment your query with the additional column in your select clause.
Joel

Similar Messages

  • How to add two columns in OBIEE report?

    Hi to All,
    Can anyone tell me how to add two columns in OBIEE report and get that result in a new column?
    Thanks in Advance,
    Thenmozhi

    Assume you already have two columns SalesAmt1 and SalesAmt2, and you want to derive 3rd column say SalesAmt3 which would be the sum of SalesAmt1 and SalesAmt2.
    For this, as I mentioned above pull SalesAmt1 and SalesAmt2 columns in Report. Now pull another column (say SalesAmt1) and open the fx. Clear the contents of fx. Now locate the columns button in the bottom of the fx. From Here, first select SalesAmt1 and + sign and the select SalesAmt2.
    Now in this new column, the fx should look like SalesAmt1 + SalesAmt2.
    Let me know if you are looking for something else.
    Thanks

  • Add New Column in ALV Report of Standard SAP ME28.

    Hi anybody,
    I want add new column in alv report of standard SAP Program ME28 Screen.
    Add Last PO Price column inside ALV Report ME28 Screen.
    Can u please anybody tell me how to add new column in ME28 Screen.
    Thanks
    S.Muthu.

    Try to find any BADI for the same
    Follow the below steps to find out what all BADI's are called when you press any button in any transaction.
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    Now
    4) Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction.
    OR
    Also one more option is to copy ME28 and, make modifications to the copied program.

  • Add new column to System report

    Hi experts!
    Can i add new column  to System Report ( Ex: Inventory Status, Agent Report which new Column as "Test") by SDK.)
    Please give me ideas.
    Thanks!

    Tien,
    Using SDK its not possible to add a new column to the existing system reports. As a work around what u can do is use the PLD to design a layout with the new column.
    Hope it helps,
    Vasu Natari.

  • How to add a column in a report?

    Hi,
    I have 2 columns from my tables, now i want to add a column in the middle, is there any way i can type this column for each row? or do a conditional format for this new column. see below:
    case description # of items
    01 desc_1 5
    02 desc_2 10
    03 desc_3 25
    the "description" column is the one i want to add, that is not from any table, is there any way i can add this column, and do
    if case='01', display "desc_1"
    if case='02', display "desc_2"
    if case='03', display "desc_3"
    thanx.

    If this is what you are trying to achieve...
    for example:
    select col_1, 'dec_'||rownum txtfield, col_2
    from (
          select '01' col_1, '10' col_2 from dual union all
          select '02' col_1, '15' col_2 from dual union all
          select '03' col_1, '20' col_2 from dual union all
          select '04' col_1, '25' col_2 from dual union all
          select '05' col_1, '30' col_2 from dual union all
          select '06' col_1, '35' col_2 from dual union all
          select '07' col_1, '40' col_2 from dual union all
          select '08' col_1, '45' col_2 from dual
         ) test
    result:
    COL_1 TXTFIELD   COL_2
    01    dec_1      10
    02    dec_2      15
    03    dec_3      20
    04    dec_4      25
    05    dec_5      30
    06    dec_6      35
    07    dec_7      40
    08    dec_8      45Add the txtfield column in your select statement as follows:
    select <columnName1>, 
           <columnName2>,
           'dec_'||rownum txtfield
    from   <tablename>Then in your report layout, add a new field column between the two existing field colunms and have the source in the property palette = txtfield.
    Hope this helps.
    -Marilyn

  • Add new column to the report

    how can I add a new column to a report ?

    this the code for the trigger
    function BeforePForm return boolean is
    begin
    --     insert into test_java values(:p_order_by);
    --      commit;     
    --return true;
    IF Check_Access_For_Token(:p_Token, :p_Appmod_Code) THEN
         return (TRUE);
    ELSE
         srw.message(1, 'You do not have access to the report!');
         return (FALSE);
    END IF;
    end;
    please help I need this for today

  • Add Two Column in report ,Download and Delete

    Hi Friends,
    i have one item File Browser to use browse :P1_file_browser and i have create a Report
    My Table Is
    CREATE TABLE  "ARM_DOC_CER"
       (     "ID" NUMBER,
         "NAME" VARCHAR2(500),
         "MIME_TYPE" CLOB,
         "BLOB_CONTENT" BLOB,
         "SUBJECT" VARCHAR2(500)
    i jus want to add two column in my report
    1--Download
    2--Delete
    When i click on download then download file and when i click on delete then delete corresponding file.
    How can i do this.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    You can use concat function or also '||' to combine two columns.
    1. with concat-
    concat("D4 Product"."P01 Product","D4 Product"."P02 Product Type")
    2. With '||' operator
    "D4 Product"."P01 Product" || '-'||"D4 Product"."P02 Product Type"
    (Remove '-' if not required)
    This should resolve. Hope this helps
    Regards
    MuRam

  • How to add a column in report painter

    Hello
    i have a profit centre report where i have the profit centre group name in the header and i want to move it to column.
    could you please let me know how to do this?
    Thanks

    HI  Pradeep,
    Goto the transaction code (Change Report) GR32.
    Give you library name and report name
    And click on the column (application tool bar or F7) button then place the curser on the screen where you want column (please note you have to keep curser on the header section u2013Red column text) right click and insert element. Then you select formula as selection element  and enter. You will get the enter formula box. Then you can type your formula and continue. This will add new column to the report.
    How to enter formula: you can see the formula components in that id and description.
    Id is columns that are present and description indicates explanation of that column.
    Enter formula according your requirement.
    Examples:
    Enter formula screen:
    ID :    des
    X001  amount
    X002  pt000
    X003  test
    1. Enter formula as: ( X001 u2013 X002)
    The above formula is for fist column u2013 second column.
    2. ( ( X001 u2013 X002) / X003) * 100
    First column u2013 second column and devide by third column after that multiple with 100.
    Hope this will help you
    Regards
    Manohar

  • How to add new column in Report ME2L

    Dear Sir,
    We are using ME2L for various purposes . In the ME2L report we need to add 2 new columns i.e Item Delivery Date and WBS Element .
    Although in the standard ME2L report , after the basic list generation , there have been provided 2 icons for getting the report displayed  with either WBS Element or with Delivery Date .  It means we can not get both the column Delivery Date and WBS Element  available simultaneously in the standard ME2L report .
    We request you to kindly guide us as how can we add these column in the ME2L report pl .  We are on ECC-6.0 and not having enhancement package 4.0 .
    Kindly help us pl .
    Regards
    Sonia Agarwal

    HI  Pradeep,
    Goto the transaction code (Change Report) GR32.
    Give you library name and report name
    And click on the column (application tool bar or F7) button then place the curser on the screen where you want column (please note you have to keep curser on the header section u2013Red column text) right click and insert element. Then you select formula as selection element  and enter. You will get the enter formula box. Then you can type your formula and continue. This will add new column to the report.
    How to enter formula: you can see the formula components in that id and description.
    Id is columns that are present and description indicates explanation of that column.
    Enter formula according your requirement.
    Examples:
    Enter formula screen:
    ID :    des
    X001  amount
    X002  pt000
    X003  test
    1. Enter formula as: ( X001 u2013 X002)
    The above formula is for fist column u2013 second column.
    2. ( ( X001 u2013 X002) / X003) * 100
    First column u2013 second column and devide by third column after that multiple with 100.
    Hope this will help you
    Regards
    Manohar

  • How to add new column in report painter

    Hi Experts,
    I want to add new column in report painter which as to calculate the previous column . value in the new column should be the precentage of previous column existing on left side...

    HI  Pradeep,
    Goto the transaction code (Change Report) GR32.
    Give you library name and report name
    And click on the column (application tool bar or F7) button then place the curser on the screen where you want column (please note you have to keep curser on the header section u2013Red column text) right click and insert element. Then you select formula as selection element  and enter. You will get the enter formula box. Then you can type your formula and continue. This will add new column to the report.
    How to enter formula: you can see the formula components in that id and description.
    Id is columns that are present and description indicates explanation of that column.
    Enter formula according your requirement.
    Examples:
    Enter formula screen:
    ID :    des
    X001  amount
    X002  pt000
    X003  test
    1. Enter formula as: ( X001 u2013 X002)
    The above formula is for fist column u2013 second column.
    2. ( ( X001 u2013 X002) / X003) * 100
    First column u2013 second column and devide by third column after that multiple with 100.
    Hope this will help you
    Regards
    Manohar

  • Trying to add new columns to Report painter Report

    Hi Experts,
    I created a report painter report by copying an already existing report. In addition I wanted to add extra columns to this report but after adding a few and coming to the last page of the existing report when i try to add a new column the system gives me an error message
    Insufficient space on current page -> moving not possible
        Message no. KH581
    As this is the last page, I am not able to add extra columns to this report. How can I go to the next page and add columns to this existing report. Your responses are highly appreciated.
    Regards
    ASLV

    Hello,
    This is a constraint in the system.
    The solution maybe is to define narrower columns        
    because there is a hard restriction in ABAP to have at least 255 digits            
    on one page.                                                                               
    The message KH581 is processed because there is not enough space left              
    on the first horizontal page. So if you first add a new horizontal page            
    you can add the new column on the second page. Also if you decrease the            
    column width of the columns to get more space left on the first page you           
    can add the new columns.
    I hope it helps.
    REgards,
    REnan

  • Report Painter: Add a column

    Hi Gurus,
    I would like to add a column to my report. Any ideas as to how to go about it in Report Painter ?
    Regards

    Hi,
    Go to the report (GRR2) and add the column. Please, try to explain your problem/issue in more constructive way; otherwise, it would be impossible to give a proper answer.
    Regards,
    Eli

  • Creating a new column in SAP reports

    Hi All,
    I need to add a new column in, Financials -->  Financial Reports --> Accounting --> General Ledger.  When I try to create a column, it says Column already exists.
    Kindly advise me if it is possible to add new columns in SAP reports.
    TIA,
    Satish. B.

    Hi Satish,
    you can't add a column to a system matrix using UIAPI - the only way is to add a userdefined field
    And check this thread..
    New column in Standard Report
    Hope it helps,
    Vasu Natari.
    Edited by: vasu natari on Jul 22, 2009 7:38 AM

  • Add new column in RFUMSV00 program

    Hi,
    I am new in abap. I have requirment to add new column in VAT report. I have copy RFUMSV00 program to  'Z'  program and want to add new column in 'Z' program. The column is BSEG-ZNUOR(Assignment).How can i add a column in report and how to retrive data from BSEG table, If any one have code like this requirment , please give me some idea about this.
    Thanks in advance.
    Regards,
    Sourav

    you need to read program carefully first possible than do debug.than find the exact location where system ALV generates here you need to add your field.
    May be i it helps you.
    search with term in mention prg ASSIGN gt_alv TO <gt_alv>.    you will get idea where you need to add your own field
    Edited by: Amit Gujargoud on Aug 27, 2008 9:44 AM

  • FBL1N - How I add a column in FBL1N

    Hello Everybody,
    I need add a column in the report of transaction FBL1N.
    This new column need to be with option in layout.
    Can someone help me.
    Thanks.

    hello Rogério Mayer de Lima  ,
    To Solve your purpose you need to extend standard structure RFPOSX.
    and impliment BTE 1650
    and the when you impliment the BTE for the above even you will get the line item and the blank fields as a passing parameter inthe fm to populate your required Data
    Just Check in for how to impliment a Business Transaction Event.
    hope this helps...!
    Thanks and regards
    Edited by: Anup Deshmukh on Jul 10, 2010 8:09 AM

Maybe you are looking for

  • How to prevent inline bullets from falling at the end of a line?

    Okay, I am SURE the subject of my question is difficult to understand, so I will try to explain a little better below I am working on a catalog where the bullet points for items are all 'inline' and not each on their own line. Here is an example belo

  • Network shares off line

    When I'm offline, the network shares advisor appear two times to tell me that I'm off line. whi two times?

  • VALUATION TYPE AND STOCK MANAGEMENT

    When trying to do a Good Receipt on a subcontract PO against a line item with non-valuated material (UNBW) and Account Assignment "K" (cost center), the system is asking for a Storage Location and is putting the non-valuated material into stock.  We

  • HT1766 Is it possible to have/make several Backups of iDevice (some history, but not the last one only)?

    There are two types of Backups that I can make for iDevice (for a example for iPhone - backup to iCloud or/and to the local PC/Mac. Both are the current Backup, so my question is - Is it possible to save a several Backups of an exact iDevice, for exa

  • Does XMLSQL Utility support JDBC-ODBC brideg?

    Dear Sir, I want to use your XMLSQL Utility to exchange data between XML and database( Access database ) through sun's jdbc-odbc bridge, but got the following run time error: oracle.xml.sql.OracleXMLSQLException: java.lang.ClassCastException: sun.jdb