Changes to Report Painter Program 12KST1G

Hi all,
I have created a copy of the program 12KST1G to Z12KST1G.  I have a requirement of adding two new columns to the end of the report.  I have done that.  Now, my problem is I need to restrict what is shown in those columns.  One requirement is that only show information from 2015 and forward.  That is done.  BUT, I need to only show certain cost elements in these columns.  I am editing the form in CJE5 and I created a copy of the report in CJE3.
I've searched around, but have not been able to find an answer.
Is this possible?
Cheers,
Kevin

Hi Kevin,
Those key figures are not assigned to Value Categories. Those key figures define in what currency you want the report to show the figures.
The cost elements that you want to use are not assigned using tcode CJVC. They are done using OPI2. CJVC is used to do a consistency check of these assignments.
Anyway, you may try creating a new value category and assign the cost elements that you want to consider for your report. Maybe the CJVC traffic light for the "Assigned" subtree might turn from green to yellow. But you can give it a shot.
Make sure you also test the other standard reports to check if you get the correct values in the output.
Alternatively, you can check the exit " EXIT_SAPLPS01_002" that lets you add additional characteristics which you can later choose while defining the logic in the new columns that you create. In your case the additional characteristic could be "Cost Element".
Try it and let us know.
Regards,
Gokul

Similar Messages

  • Creating Tcode for report painter program in 4.0B version?

    hi all,
    How to create a tcode for report painter program in 4.0 B?
    I searched the forums. but i couldn't find the same for 4.0 B?
    Please helo me to solve this?
    Thanks,
    Vamshi

    I am closing as no one answered and worked in alaternative way for the requirement.

  • Replicating Report Painter programs in BW system

    Hi,
    We are trying to replicate Programs developed using Report painter tool into BW system. However BW system doesn't have many  transactions and tables corresponding to Report Painter tool. Is there any way to easily replicate these programs instead of developing BW reports from scratch.
    regards,
    satya

    Hi Satya,
    There are no programs for directly Replicating the Report Painter Report from ECC/R/3 to BW.You have to create all the required objects in the BW and then either you have to use the standard Data Source and Enhance it for the required Custom fields or Create a generic Extractor and extract the data from the Source.
    Thanks & Regards,
    Ram Jakki.

  • Report Painter Program.. URGENT

    Hi All,
    Can you guys send me a sample program on Report Painter??? Its very urgent..
    Regards,
    Parvez.

    Hi,
    Check this -
    http://searchsap.techtarget.com/searchSAP/downloads/Teach_yourself_SAP_C20.pdf#search=%22CREATE%20REPORT%20USING%20SQVI%20%2C%20SAP%22
    Re: Interactive ALV
    Check Kishan's Reply.
    Cheers,
    Simha.
    Reward all the helpful answers..

  • Fetch output from Sumbittted Report Painter Program

    Hi All,
    My requirement is as below,
    I have to fetch the data from transaction --> KE30( AE00-0000000) -( Program GP3U541QI0A8T1INIRH8IJPKU2T ) and use the same for further calculation in my custom report.
    Hence in my custom report i have written SUBMIT GP3U541QI0A8T1INIRH8IJPKU2T                                                                               
    EXPORTING LIST TO MEMORY
                                                                                    WITH the required selection screen parameters                                                                               
    AND RETURN
    After that, I have used the function modules  'LIST_FROM_MEMORY' and 'LIST_TO_ASCI' as well, in order to fetch the data.
    However I am not getting the data into the LIST_FROM_MEMORY function module.
    Please suggest me the approach or please correct me in the above approach.
    Thanks a lot in advance for your replies.
    Regards
    Anuja.

    Hi Anuju ,
    try this way
    TYPE-POOLS : abap.
    DATA:lt_listobject TYPE TABLE OF abaplist,
         l_tab_lines TYPE i.
    DATA: txtlines(3000) TYPE c OCCURS 0 WITH HEADER LINE.
    * Submit you r progam......
      SUBMIT <report>
                       EXPORTING LIST TO MEMORY AND RETURN.
    * read list from memory into table
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = lt_listobject.
    *Spool content in Ascii format
      CALL FUNCTION 'LIST_TO_ASCI'
        TABLES
          listobject         = lt_listobject
          listasci           = txtlines.
    *  write Spool data as an output
       CALL FUNCTION 'WRITE_LIST'
        TABLES
          listobject = lt_listobject..
    * clear memeory
      CALL FUNCTION 'LIST_FREE_MEMORY'
        TABLES
          listobject = lt_listobject.
    Prabhudas

  • Can we change or edit the report generated by Report Painter?

    hi,
    can i add a field in select- option in the report which was generated by report painter?

    Hi Poonam,
    Yes you can change a Report Painter Report.
    Hope the below threads help you:
    https://forums.sdn.sap.com/click.jspa?searchID=14947520&messageID=5778256
    https://forums.sdn.sap.com/click.jspa?searchID=14947520&messageID=5726896
    Have A Good Day
    Chaitanya.

  • While doing changes in GRR2 no transport request is generated( report paint

    Hi Gurus,
            when i am changing the report painter (GRR2), no transport request is generated.Actually when i am changing the following........
                  Trial balance......... liabilities          from               to
                                                                 100000           199999 (allready existing)
                                                                  600000           690000 (new range while doing this,not generated transport request)
    please do needful,
    Regards,
    Rmesh.

    Hi,
    Changes in report painter do not generate change request. You can either create a transport automatically by going to GCTR transaction or you can simply export/import the changes by going to GR37/GR38 transactions.
    Regards,
    Eli

  • Error in running Report painter

    Hi,
        when we try to execute a Report painter program it is giving a error
    Library 6O1: Key figure Z_JSWKG in set 0000CO_D_ACPLCO2.CCSS is not allowed
    any one have idear about this error.
    Thanks ,
    senthil

    Hi,
    You have define key figure Z-JSWKG wrongly.Go to transaction code GS32 & give the table name as CCSS & Go to the bottom where you will find the z catagory key figures .Double click on this above mention key figure & change the set name. It will serve your purpose.
    Regards,
    Abhijit

  • Report Painter Spool

    Hi,
    We are facing problem with Report Painter program. we developed one report in report painter program in CO. we are taking the report painter date into customised program and we are doing some calculations. From KE30 Transcation we can execute the report painter program. We are doing the BDC for that transaction, storing the final data into flat file and downloading that file into our customised program. But for KE30 Transaction dependency is there.
    whenever we are executing that transction for the first time we have to enter some details. To remove that Dependecy we are trying with spool. When we execute the report painter program through SE38 output is going to spool. In spool the page width for that program is 85. We want it upto 100 characters width. We changed settings in spool  but we are not getting the solution. Is there any other way to <b>increase the spool width for</b> <b>report painter program</b>? <b>is Page width for report painter program fixed?</b>
    Please help me in this regard?
    Ur quick response is appreciated
    Thanks in advance
    Ganga Bhavani. B

    Hi All,
    1.The page width is set with KE30 -> report -> print setup ->
    drill down + detail -> maintain header -> edit -> page width
    This will be saved with the report structure.
    2. Variants and variant groups let you execute and save or print reports
    in the background at pre-specified times.
    Please see transaction code KE3R/Application Help for additional details
    here.
    If you have further queries, you may reach me over
    Dr. Ravi Surya Subrahmanyam, PhD Finance,
    SAP FICO Consultant,
    Answerthink (India) Limited
    Global Delivery Center
    Hyderabad, India
    Phone :91 9848550024
    Email : [email protected]

  • How to create t.code for report painter report created using CJE5

    Hi All,
    I'm trying to create T.code for a report painter program created using CJE5.
    I using the D_SREPOVARI-REPORTTYPE as "RE" and
    D_SREPOVARI-EXTDREPORT as KP 01RPSCO_X <report name>
    If I provide spaces between KP 01RPSCO_X <report name>, its not allowing spaces.
    If I didn't provide the space then its saying that "report does not exists"
    Please let me know how to overcome this issue?.
    What this KP  & 01RPSCO_X stands for? Is this always constant?
    There is a similar kind of transaction in other system which Looks like this " KP 01RPSCO_X <report name>" spaces in between
    I dont understand why its not allowing spaces in this system. As its in different system i cant make a copy of this transaction and change the parameters.
    Edited by: Mr A on Feb 18, 2010 5:28 PM
    Edited by: Mr A on Feb 18, 2010 5:54 PM

    thanks for giving me the link.
    I searched for all these link in SDN before posting itself.
    my issue is how to give the value for the parameater EXTDREPORT.
    If i give spaces for the value KP  01RPSCO_X <report name>, its throwing error, T,code its self is inconsistent.
    if i didnt give spaces its i'm able to create the t.code, but when i execute it, its giving error message saying "report does not exists"
    but if i go to CJE5, that report is there.
    thanks

  • T.Code for Report painter report

    Hi,
    Is there a way to assign a T.Code to the Report painter report, so that users do not have to go to GR53.
    thanks & Regards
    Rose

    thanks Eli, I tried this in Sandbox and it looks good.
    You seem to know a lot about Report Painter, I hope you would be able to certainly help me understand this :
    My predecessor here, created a report painter report and then asked the ABAP team to copy the report painter program (its like a query name) to a Z Prpgram and assign a transaction code. As I hear this was done to avoid the authorization issues.. (???) when this was moved to Testing Dev client, all this worked But when we moved this to QA, the error "program doesnot exist" made us to change the zprogram to remove the logic that the program had to check for the Client, in which the report was created. We removed that but then it then includes started giving the same error. so this will surely not work.
    So, my question is : when this simple way of giving a report painter report a t.code with the defaults, would there be any auth issues that you can think of ???
    thanks in advance.
    Regards
    Rose

  • Quesiton on Report painter

    Hi ,
    I have a requirement to copy a generated report painter program and modify it..
    can any on show help in this regard..
    Thanks,
    Krishna

    Hi Krishnakumar Ramadoss,
    Report writer / Report painter reports are reports which are created with zero percent coding.
    The SAP generated program (E.g: GP3ICYT39FHJLOYBA2025DBAE1V213) cannot be changed or modified.
    The only coding that you can do in a report writer are the formula's and logic that you can write in variables of the report writer / painter
    Regards,
    Subin John

  • Copying Report Painter report to new report

    Hi all,
    We are having a report painter program. I have to enhance that report. I want to add one more output column to that report.
    So, I'm trying to copy the existing one and trying to make changes. I'm new to this report painter concept.
    Can anybody let me know how to Insert a new filed and where to change the logic to retrieve the data for this new field.
    Thanks in advance

    hi,
    you will have to debug the code.
    and then find the appropriate place where you can code acc to your requirement.

  • Error in starting transaction using report painter

    Hi,
    We have a problem when starting a z-transaction:
    Transaction: START_REPORT
    D_SREPOVARI-REPORTTYPE = RE
    D_SREPOVARI-EXTDREPORT = FBR 01RFRRS02                       ZDE-PL01
    The error message says there's a problem in the generated report GPCDBE7ZKBGDJXRP5IAE2BOUBDM
    When I go to se38 and click on syntax chec, the result is this:
              IF RFRRS02-ERGSL EQ '88' "
              AND RFRRS02-GJAHR EQ VAR001 AND
               VAR001"
              AND RFRRS02-VERSN EQ 'EKDE'.
                CLEAR: Z. SP = C00001.
    Looks to me like the " is not properly placed.
    Maybe it should look like this:
              IF RFRRS02-ERGSL EQ '88'
    "AND RFRRS02-GJAHR EQ VAR001 AND VAR001"
              AND RFRRS02-VERSN EQ 'EKDE'.
                CLEAR: Z. SP = C00001.
    Then it would be okay.
    Or something is missing here. Is there something wrong in the report painter report definition ?
    Any hints ?
    Thank you
    Edited by: Joachim Nerreter on Feb 17, 2012 12:48 PM

    You can get the details from SREPOVARI table.
    Give report type as RE ( drilldown reporting ) and extended name as your fbr* and execute.
    You can find the tree and based on tree the program.
    You can find the report painter program from GRR3 transaction.
    Regards,
    Vijay V

  • Selection Field in Report Painter Report

    Dear All,
    Could any one tell me the procedure to add new field at selection screen for the report painter report ? To change the report painter selection screen i have to change the Report group or Report of the report group?
    Thank in stack

    In general data selection, i have already cost center, but it is not apprearing at selection screen. Only three field are appearing (Year + Period + Forecast),  and i want to add cost center at the selection screen. How to make cost center field at selection field from General data selection option. Please guide me
    Thank in stack
    Nilesh Shete

Maybe you are looking for