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

Similar Messages

  • 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.

  • StackOverflowError when creating a new column in jdev TopLink JSF

    Hello everybody,
    Please if you know, share your knowledge about the below aspect from JSF Toplink.
    I created tables in db. Table is called DCF. In that table there are many columns, so many that by accident I forgot to put one. So I created Application in jdeveloper, then
    1)     I created projects Datamodel and UserInterface
    2)     In DataModel I created “java objects from tables”
    3)     Then I created session bean “PublicFacadeBean.java”
    4)     From that I created Data Control
    5)     Than I created DCF.jspx page and dragged all the info from Data Control to the jspx page.
    6)     Than I realized that I need one column which is not in DB, so I went to DB and created that column, and committed all the changes.
    7)     I went to jdeveloper again, in the Application Navigator in the DataModel project under realopt.oracle package I double clicked the DCF.java and created instance variable that I need, added set and get methods manually.
    8) then again i went to PublicFacadeBean.java and created again DataControl, I saw the column i need,
    Made compilation and no errors were found. But when running the page in the explorer, I got error :
    Fatal error: Cannot find class java/lang/StackOverflowError
    Process exited with exit code -1.
    I restarted the computer again, but still could not view the page. Do you have any idea how I can solve this problem?
    I’m very grateful in advance.

    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

  • New column in Standard Report

    HI all!
    Can i create new column in standard report of B1.
    Thanks!

    Hi Tien,
    What do you mean by standard report? such as the aging report?
    Kindly be noted that it is not possible to change System Matrix.
    If you mean the print layout of report, you can modify the report template with PLD
    Regards, Yatsea

  • Error while creating a new layout in a report.

    I am getting this error message:
    Failed to save data.
    Error occurred when creating xml data.
    when I try to save after I create a new layout in my report.
    Is there some common problem with templates that could cause this to happen?
    I'll continue to look around for an answer but if anyone would like to see the template and a sample set of XML data so they can help me figure out what the problem is, that would be swell.
    -Nevermind. The problem seems to have dissapeared. Apparently the appropriate order of operations is
    1: Create new layout.
    2: Upload RTF Template
    Please feel free to delete this post -.-

    i am also getting the same error here and i have followed what you laid out, i am still getting the same error.
    Thanks

  • Getting Error while creating a new column in a list or library in a site collection - Sharepoint 2013

    Hi,
    I am getting below error when i create a new column in a library or list,
    "Save Conflict
    Your changes conflict with those made concurrently by  another user. IF you want your changes to be applied, click back in your browser, refresh the page, and resubmit your changes"
    Any help please.
    Smile Always

    Hi,
    I have done a test in my SharePoint 2013. And I can re-appear your issue.
    Per my test, I found that If  there are more than one user create a new column in
    a library or list at the same time, when we
    click ok after the other users, we will get the error.
    Or if we open a library or list in two windows with the same user, when we
    create a new column in a library or list in two windows
    at the same time, we will get the error.
    To resolve your issue, refresh your page and
    create a new column again.
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • How to Create a new column from two different result sets

    How to Create a new column from two different result sets, both the result set uses the different date dimensions.

    i got solutions for this is apply filters in column formula it self, based on the requirement.

  • How to create an new column from ordered pairs

    Hi,
    Wondering if anyone can help this problem. I am analyzing network traffic between a PC and a Server. I can easily get a count of packets in each direction, PC1 to Server1 and the return path, Server 1 to PC1. But want I really want is a count
    of PC1 to OR from Server1, basically a count of packets by IP conversation.
    Each row is a packet with fields like: Time, Source, Destination.
    For example
    2:01:01, PC1, Server1
    2:01:01, Server1,  PC1 
    I would like to create a new column that represents a conversation. So new have columns: Time, Source, Destination, Conv. To get something like this:
    2:01:01, PC1, Server1, Conv1
    2:01:01, Server1,  PC1, Conv1
    2:01:01, PC2, Server1, Conv2
    2:01:01, Server1,  PC2, Conv2
    Thanks,
    Wes

    Wes, I just got around to revisiting your problem. The solution I came up with is twofold. The first part is the creation of a custom function that generates a conversation ID in the form PC1_Server1, PC2_Server1 etc. The second part uses a lookup table
    for each unique combination of PC and server to return a conversation number (Conv1, Conv2...).
    First of all, the "NetTraffic" table (your original table) generates the following script
    let
        Source = Excel.CurrentWorkbook(){[Name="Table8"]}[Content],
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"Time", type time}}),
    in
        #"Changed Type"
    In the above, the type of the timestamp column is changed to time, but you can alternatively fix it as text.
    I've called the custom function "ConversationIdentifier." It takes four parameters, as described by the parameter names.
    (sourceList as list, sourceValue as text, destinationList as list, destinationValue as text) as text=>
    let
        SourceConversationList = List.Sort(List.Select(sourceList,each (_ = sourceValue or _ = destinationValue))),
        DestinationConversationList = List.Sort(List.Select(destinationList,each (_ = sourceValue or _ = destinationValue)),Order.Descending),
        ConversationID = SourceConversationList{0}&"_"&DestinationConversationList{0}
    in
        ConversationID
    Usage:
    As an added custom column in Power Query, the formula, based on the "NetTraffic" table would be:
    =ConversationIdentifier(#"Changed Type"[Source],[Source],#"Changed Type"[Destination],[Destination])
    As previously mentioned, the custom function generates combinations of PC and server, such that each combination represents a conversation.
    Next, I created a two-column "ConversationLookup" table in a worksheet, with entries like PC1_Server1|Conv1, PC2_Server1|Conv2, and so on.
    In the NetTraffic table, I did a merge with the ConversationLookup table, ensuring that the "Only Include Matching Rows" option is left unchecked (left join).
    Finally, I removed unwanted columns. Note: You don't need to use the lookup step if PC1_Server1, PC2_Server1 etc. serves your need for identifying a conversation.

  • 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.

  • 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

  • Addition of new column into SAP query program

    Hi freinds,
    There is a query program(joins EKKO,EKPO) which contains columns like vendor,purchase doc,item,material and material description etc..
    I need to insert a new column 'Supplying plant' in 2nd position after vendor column...When I try to add a field into internal table,am getting short dump error...
    Kindly suggest on this problem...
    Thanks in advance...
    Bharat.

    Hi,
    the program you got is it a copy from a SAP QUERY created on TCode SQ01 ?
    If yes got to Tcode SQ01 draw a new one and see the report generated
    Best Regards
    Jaime

  • Creating a new Column for my list Versus adding it from existing site columns, when to use each approach

    I have created a new issue tracking list inside SharePoint 2013 team site. And it comes with predefined columns, some of them are useful while the other are not . Can anyone help me in figuring out the following:-
    The list come with a field named “Assigned To”, while in my case I want a column named “Approver”. So what is preferred , to re-name the “Assumed to ”column to “Approver”, or create new field name “Approver”.?.
    If I rename an existing column, could this be overridden in any future updates for my SharePoint server?
    Now we want to add a column named “Office location”.so I need to create a new field for this. But seems there are two ways to do so either to add a new Site Column at the site level and then assign it to the list as follow :- 
    , or to directly adding a column to the list, even if it is not available in the site columns , as follow:-
    So what are the differences between the two approaches ? .if I am not wrong defining a site column will allow me to re-use it in another list , but defining the column at the list level, will allow me to add a column even if it is already defined as site
    column.
    So can anyone advice on my three questions please? Thanks

    1) 'Assigned to' has a different meaning then 'Approver' , it will be better if you create a new field for 'Approver'. Assigned to is a Site Column which has managed property for search, so it will be confusing type of data it will return from search in
    future. 
    2) Any rename of fields should not / and will not get modified in SharePoint updates. So, you can rename is without any issue since the internal name will remain the same. But its always better to create your own custom column for business use.
    3) Creating a site column or not depends upon your need, If you create a Site Column - in whole site collection you will be able to add this field in any list - It will be crawled, SharePoint will automatically provide managed property for site column and
    you will be able to get this value via search. These things will not be present in list column, you will need to do specific settings in case its required.
    If these things are needed then you can go for Site Column, usually its good to create a Site Column and use it.
    For Site Columns you can check following links 
    Introduction to Columns
    From site column to managed property - What's up with that?
    Create a site column
    get2pallav
    Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.
    thanks a lot for your reply it is really helpful. so as i understand that using site columns will be better in most cases, and there is not any specific reason for not using it? is this right ?
    Second question, do u mean that if i have a list column named "Serial number", then this column will not be searched ? For example if i have serial number such as "12345" and i try searching this text "12345" i will not get
    the item in my search ?
    Thanks

  • Problem with rule file ,not able to create  a new column

    I am trying to create a text temp in column 53 and trying to join with another column54.A new column temp is created but some filelds are blank instead of temp.I donot understand why it is happening like this ,what is the reason behingd this .
    Thanks

    Check out the following thread..
    Re: SLD forbidden access
    Your user id has to be assigned to the group JDI.develeopers
    Regards
    Krupa
    Message was edited by: Krupakar Oleti

  • Creating a new Structure in SAP

    Dear all,
    I am patching a BAPI and need to create a new structure BAIPKOMFKTX as instructed by SAP Note 581263.
    The instructions are clear except that it does not indicate what delivery class to use for this new structure. Could anybody please advice what delivery class to use? Should I use delivery class 'S' - System Table, Maint only by SAP, change = modification
    Best Regards,
    Junwen

    Hello Klaus,
    Thank you for pointing this out. This was my first attempt at creating a structure. After exploring with the various options in SE11, it seems i should create a 'structure' by selecting the radio button 'DataType'.
    Best Regards,
    Junwen

  • Problems creating a new user in SAP EP 6.0

    Good mornig for all.
    We have a problem when in SAP EP 6.0 I try to create a new user.
    I am connected how superuser and this one has all authorities.
    When I input all fields to create a new user system response with "could not create user".
    I see logs fields in support frame and not found nothing.
    Can anyone help us please?.
    Thanks and best regards.
    Julián.

    Hi,
    If you configured portal with ABAP, just follow below steps, issue will be resolve
    In case of ABAP+ Java stack; you should follow below steps:
    1. Open Config tool:
    C:\usr\sap\<SYSTEM ID>\JCxx\j2ee\configtool --> configtool.bat
    Example: C:\usr\sap\Y76\JC03\j2ee\configtool --> configtool.bat
    2. In Config tool: cluster-data>Global Server configuration>services--> com.sap.security.core.ume.service
    3. set the values for below ume properties:
    ume.persistance.data_source_configuration = dataSourceConfiguration_abap.xml
    r3.connection.master.ashost = <backend system hostname>(ex: ls4079.wdf.sap.corp)
    r3.connection.master.client = <enter clint number> (ex: 000)
    r3.connection.master.sysnr = <system number>(ex: 09)
    r3.connection.master.user = <comuser>(the sapjsf or communication user which we created in backend system)
    r3.connection.master.password = <enter comuser password> ((it is the password of the comuser which is in the backend system)
    ume.login.guest_user.uniqueids = <J2EE_GUEST>
    login.ticket_portalid = yes (If administrator id length is more than 12 charcters ex: administrator)
    : No (If administrator id length is less than 12 charcters ex: j2ee_admin)
    Notes:
    Creating users
    J2EE_ADMIN,J2EE_GUEST and communication user(called as comuser).
    User Name: -
    User Type:
    J2EE_ADMIN -
    Diallog user
    J2EE_GUEST -
    Diallog user
    COMUSER -
    Communication user
    NOTE 2:
    User Name: -
    Roles
    J2EE_ADMIN -
    SAP_BC_AI_ADMIN
    J2EE_GUEST -
    SAP_J2EE_GUEST
    COMUSER -
    SAP_BC_JSF_COMMUNICATION;SAP_BC_JSF_COMMUNICATION_RO
    I think it is more helpfull for you; Please let me know if you have any doubts on this.
    Thansk,
    Nagaraju Parlapalli

Maybe you are looking for