Creating a new report painter library

Hi all
I have created a z table for the verification of FI-CO values to use with report painter. This table is modeled like the GLT0, the only difference is that my program fill it with the values of secondary cost elements (for production direct costs). So in the table I have records of accounts defined in chart of account and records with only CO elements. I have created the library using GLT0 as template and created the user exit for take the definition of cost elements and FI account in the same process. All work well the only problem is that for the cost element the values aren't displayed also if present in the table.
I supposed in some point the extraction of values is linked to a control of presence of account in FI (SKA1 or SKB1), but I don't find the point.
Someone has some ideas?Thanks
Davide

First, you don't so much want to back up the library, you want to archive the unwanted items.  When archiving you should archive to two separate drives because there could come the day when you plug in the single archive copy and the drive doesn't start.
Why not just archive a copy of the library as it is now, then delete the items from the library on the computer?  Don't bother making a new, blank library.

Similar Messages

  • Table need to be added in report painter library

    HI,
    Can't we add any table in report painter library (GR21) like if i add <b>s032</b> it is accepted by library while <b>'MARD'</b> is not accepted it gives error <b>Table MARD is not installed in Report Writer.</b>
    what is the difference between s032 and MARD table, as both are transparent table. but one is accepted and other is not.
    Thanks

    Hi
    You can't use all tables.see the below lines for it:
    Both Report Painter and Report Writer can be used to report on the following tables and tables types:
    &#61500;     Evaluation structures set up in the Logistics Information System (LIS). These structures normally begin with an “S” or “ZF.” Several different tables and views within the R/3 System can be added as evaluation structures.
            Note: You cannot add cluster tables, such as BSEG.
    &#61500;CCSS is used for Cost Center Accounting (CO-CCA), Internal Orders (CO-OPA), Activity Based Costing (CO-ABC) and for cost element reports in Project Systems (PS).
    &#61500;GLFUNCT is used for functional area reporting in cost-of-sales accounting.
    &#61500;GLPCT and GLPCOP are used for Profit Center Accounting (CO-PCA/EC-PCA).
    &#61500;FILC is used for Legal Consolidations (FI-LC).
    &#61500;COFIT is used for the Controlling Reconciliation Ledger (CO-CEL).
    &#61500;ZZ tables are created for the Special Purpose Ledger (FI-SL).
    &#61500;FIMC is used for consolidations in the Enterprise Controlling module (EC-LC).
    &#61500;GLT0 is used for Financial Accounting (General Ledger) reports by account, company, and business area (FI-GL).
    &#61500;KKBC, KKBE, and KKBU are used for the Controlling Product Costing module (CO-Costing).
    reward points if useful
    regards
    Anji

  • Creating a new report in 11.5.9

    I am trying to create a new report for Oracle Sales Online. I don't want to just do a simple JSP, I want to use some of the existing functionality that the existing pages are using.
    Take the Organization Summary page for example. Its the page called asfOrgznSumryMain.jsp and its many included JSPs and java classes in the oracle.apps.asf.customer.organization package that it uses.
    I have created java classes that mimick the classes used by that page, such as my own EO (Entity Object), VO (View Object), and TD (table rows) objects. I've made them select from tables that I want to show as best I can.
    But all the calls in the JSPs using function values that resolve to JSP page filename values are just confusing. I am trying to create an advanced search page for my new summary where the user can save searches and pick columns like they can on other pages. How can this be done? Is there documentation anywhere? How do I create the functions needed to be able to have an advanced search page, save user queries, create a default query for the page for the first time a user views it, etc etc?
    Someone please help. I need to do this in 11.5.9...we will be moving to .10 someday, but until then, I need to create this new report that uses Oracle's application framework as much as possible.

    Ok, I was able to figure out the functions that were confusing me. For my own record and for those that do not know, I will list how to create the objects necessary to add a new report to a menu.
    1-Write JSP (should be written just how Oracle writes theirs)
    2-Creat function for the new JSP page as System Administrator responsibility
    3-Use Sys Admin to add the function to a menu somewhere
    4-Using AK Developer responsibility, create an attribute with the label of the attribute being the name of your function you created. Oracle's convention is the name of the attribute has FS in it.
    5-Using AK Developer, lookup the ASF_FUNC_SEC_REG region
    6-Drill down into that regions attributes
    7-Add a your newly created attribute to this region
    You would do all these steps for your advanced search page as well, so that in your main jsp, you can call asfPage.setAdvancedSearchPage() with the attribute name of your advanced page.
    What I Still do not know is:
    (1) My main page keeps coming up saying that there is no default query defined for it. How do you create a default query for a report?
    (2) How to get the personalization to work.
    Can anyone help?
    Thanks!

  • How to create a new report using MS Word add-ins?

    Hi, I am a newbie. I am using BI Publisher 10.1.3.4 and l want to create a simple report using BI Publisher from MS Word add-ins. I don't have a default template. What are the steps to create a new report from scratch. I want to create a simple report for one table contains 4 columns & 2 rows data, and then save the report under my folder.
    I am in an urgent need to learn this, any suggestions are highly appreciated.
    Thanks all.

    Thx Everyone, I figured that out. It's simple and clear to me.

  • Create a New Report Server in Oracle 10g AS(10.1.2.0.2) in IBM-AIX

    Hi Friends,
    I am using Oracle 10g AS(10.1.2.0.2)on IBM-AIX.
    I would like to create a new Report Server(standalone).Please suggest and give the Metalink Document Number as well.
    Regards,
    Arun

    Doc ID: 459177.1

  • Creating a new reports document

    Hi everyone,
    Iu2019m having an issue using In-Proc RAS when creating a new report document in .NET. The following code (C#) will fail (Saying that it requires a Loaded RPT file to do anything against that member)u2026
    CrystalDecisions.CrystalReports.Engine.ReportDocument myTest = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    myTest.ReportClientDocument.New()
    How are you suppose to create a new blank document using the CrystalReports engine? The only way I can do anything with the above object is to actually load a .RPT file. Itu2019s different then when using the RAS SDK which goes like:
    ReportClientDocument objClientDoc = new ReportClientDocument(); //this is a ReportAppServer object
    u2026Set The Report Server Nameu2026
    objClientDoc.New();
    Thanks for the help!
    Peter

    Hi Peter,
    If you are using ReportDocument object then you need to load the object with a report name.
    //define the object
    ReportDocument rdocument = new ReportDocument();
    //load the report
    rDocument.Load(path of the report);
    //View the report
    CrystalReportViewer1.ReportSource=rdoc;
    However if you use the RAS then you need to use the ReportClient document object for it.
    //define the object
    CrystalDecisions.CrystalReports.Engine.ReportDocument rdoc1 = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    // assign it to the reportclient object
    ISCDReportClientDocument rClient1 = rdoc1.ReportClientDocument;
    //Load the report
    rdoc1.Load(path of the report);
    //View the report.
    crystalReportViewer1.ReportSource = rdoc1;
    So I do not see any reason why we would need the New() method.
    Does that help?
    AG.

  • How to created a new report in content tracker report?

    Hi
    I need to created a new report that show who modified the document's metadata and when, but I have never used Content Tracker and I do not know how.
    Appreciate the help you can give me.
    Thanks.

    Hello,
    The content tracker and ContentTrackerReports components can be installed in UCM server by simple clickable options. Below are the steps to install the Content tacker and Content report.
    Steps:
    1. Open the UCM instance with admin
    2. Click Admin Server under Administration link.
    3. Click Content Tracker and ContentTrackerReports checkbox ( under Document Management)
    4. Now Click the update button at the bottom.
    5. Restart the UCM server instance to see the changes.
    Now you will see an option for Content Tracker Reporting. It has some default reports.
    Let me know how it goes. If you need.... will explain how you can create your custom reports.
    If its helpful then please mark correct or helpful answer.
    Thanks,
    MAK

  • Creating a new report with VS2010 freezes

    Hello,
    I repost  my first issue 'cos Don Asked me to attach to a thread but he closed it and there's no answer:
    I've just downloaded the release of CR for VS2010 and installed it correctly.
    But when i try to create a new report in a new solution (i use emty project ) and then try to add with the database expert databases it freeze the vs2010 with no timeout and no error message.
    I saw in te forums that it's a recuring question so i tried to build a Virtual machine with win7 x64 and VS2010 and install CR on this fresh installation and it works !
    I'm wondering if there is any relation with the way my developpement machine was installed:
    Installed VS2010
    Installed VS2008
    Installed CR for VS 2008 sp1
    then Installed CR for VS 2010
    Also when i try to make a new project with the Crystal Reports Project Template there's a reference missing in the project. Even if i correct the mis-reference the project hangs on the database expert ...
    Could you investigate ? i don't want to reinstall my dev computer and i need the CR2008 just time to upgrade the Projects to VS 2010...
    And i would like to attach to this Thread the extract of Process Monitor but i don't know how
    Kind regards

    An update on SxS, I jumped the gun a little warning about the posts various people are having... We are still looking at all of them and the build team are doing more testing with the info from forums. We are not convinced it is a side by side problem but more of a dependency and possibly a VS project update methodology but at this time we don't know for sure.... We and QA are building various platforms and are trying to duplicate all of the reported issues. So far they have not been able to but continuing to test...
    The only known potential issue so far is the GUID ID for crqe.dll but there are ways around it, order of install and unregistering the dll and then regsitering it back in. Various options and ways around it and they are based on the same code so it should not be a problem.
    Please be patience while we research the various upgrade issues.
    Stay tuned for updates....
    Thanks again
    Don

  • Creating a New Report Project Crashes

    Hello,
    I've just downloaded the release of CR for VS2010 and installed it correctly.
    But when i try to create a new report in a new solution (i use emty project ) and then try to add with the database expert databases it freeze the vs2010 with no timeout and no error message.
    I saw in te forums that it's a recuring question so i tried to build a Virtual machine with win7 x64 and VS2010 and install CR on this fresh installation and it works !
    I'm wondering if there is any relation with the way my developpement machine was installed:
    Installed VS2010
    Installed VS2008
    Installed CR for VS 2008 sp1
    then Installed CR for VS 2010
    Also when i try to make a new project with the Crystal Reports Project Template there's a reference missing in the project. Even if i correct the mis-reference the project hangs on the database expert ...
    Could you investigate ? i don't want to reinstall my dev computer and i need the CR2008 just time to upgrade the Projects to VS 2010...
    Kind regards

    Hello,
    We are still trying to figure out what is causing this. It only happens on a few users PC's.
    Can you download debugdiag from Microsoft, if you don't have it already, and run it to capture on devenv.exe. Analyze it and tell me what dll the crash is happening in?
    Thank you
    Don

  • Query Panel won't open when trying to create a new report

    When I am attempting to create a new report in Desktop Intelligence 11.5.0.0, and choose my universe, my query panel does not open - it appears to be "hidden" somewhere in the background because I cannot click on anything else in DeskI until I hit .  I have tried rebooting and closing and restarting Desktop Intelligence but it doesn't work..Even when I try and view it from an existing report it doesn't work either.

    Hi Alicia,
    Following solution might help you to resolve the issue.
    To resolve the behavior
    1.Click Start > Run. The Run dialog box appears.
    2.Type "regedit" in the Open field. Click OK. The Registry Editor dialog box appears.
    3.Navigate to HKEY_CURRENT_USER\Software\Business Objects\Suite 6.0\default\BusinessObjects\<username>User Prefs\Query Panel.
    4.Right-click Query Panel > click Delete.
    The folder will be recreated the next time the application is opened.
    5.Close the Registry Editor.
    6.Restart the computer.
    The Query Panel will now be available for creating new queries and editing existing queries
    Regards,
    Sarbhjeet Kaur

  • Report Painter Library: troubles with new field in the additional structure

    Hi, ALL!
    I'm  creating a new field in the Report Painter table  GLFUNCT. Do do it I created my field in the additional structure GLDBZ  for GLFUNCT and create an row in the T804C table for new field.
    Who has expirience in customizing using T804* tables? What tables should be used and how? I have the following troubles:
    - I do not see the new field as characteristic in the library - I don't know the customizing table to set fields from additional structure as characteristic
    - in the generated Report Painter program  my new field exists  but call of filler routine is always disabled
    Thanks
    Tatiana

    Hi Shabitha,
    just wondering if you ever found an answer to this, as i'm searching for info on same matter.
    Thanks, Regards,
    Okan Yarligan

  • Report Painter library for Classic GL for creating cost center report

    Hi,
    I am sure everyone knows what my query is.
    I have tried using library GLTO, GLT1, GLT2, CCSS, GLFUNCT but when i am trying to create/execute report using report painter for cost center but no records are selected. I have checked the settings they all are correct as i have run it for another company code, secondly for GL reports using report painter there is no such error.
    Regards,
    Mohammed Ali Khan.

    Hi Christian,
    So for the late reply... I already check the Scenario FIN_PCA in assigned to our Ledger...
    Are there other ways to generate my report on the report painter? ( Profit center as Column, And GL account and cost center on the row)
    Thanks,
    JM

  • Creating variables in Report Painter

    Hi ...
    I would like to know ... how do I create variable ? I know it is via T CODE GS11, but when run tht, in the next screen it pops up for variable ? What variable do I need to enter ? is this predelivered Eg : CE-PK, or can we create one ? Please advise
    Also, I would like to I have a requirement for a report whereby the format is like this .....
    SALES       CURR MONTH (06/2006)  LAST YEAR          
    - Sales IT
    - Sales 1
    - Sales 2
    COGS
    - cogs 1
    - cogs 2
    - cogs 3
    COS
    - cos 1
    - cos 2
    - cos 3
    GROSS PROFIT
    Whereby, SALES = sales it + sales 1 + sales 2, COGS = cogs 1+cogs 2 + cogs 3, COS = cos 1+ cos 2+ cos 3. also GROSS PROFIT = SALES + COGS + COS
    The abpve report is inclusive of Cost Centre and Profit Centre, how acn I utilize the libraray in Report Pianter to create such report, is this possible in Report Painter whereby including Cost center and Profit Centre in one single report
    Pls assist me
    Nathan

    When you create your variable first enter the variable name. Second enter the reporting "table" to use. Third enter the "field'. Press enter. Next enter a default value for your field. Save you variable. It is now ready to use in your report painter.
    Using the PCA reporting tables gives you the profit center but not the cost center. You can only use one reporting table per report. you will need a cctr report for that.
    First create your own libray from GLPCT. Next create your report using your new library. The report painter can do the calculations that you have shown.
    You create a formula in the row or column to calculate your sub totals.
    pls assign points if helpful as a way to say thanks.

  • Report painter: library 1VK does not exist

    Hi,
    for some reason one of the report painter libraries seems to be missing in the production system.
    I was asked to transport the library from our development system, anyone knows where to start and how to do this ?
    Thanks in advance !
    Rolf

    1VK is std.SAP library, U cannt do like that .If so try to create a new one Directly In PROD server.
    Regards
    Prabhu

  • Attachin Custom Table to Report Painter Library

    Hi,
    Im trying to create a new library in Report Painter (GR21) and attach it to a custom table.
    I am getting the error message (GR493)  that "the table is not installed in Report Writer - The Report Writer can only report on tables if the attributes of these tables that are relevant for reporting are defined in control tables"
    Does anyone know what this means and how to get around it?
    Thanks.

    Hi,
    You need to add the table as a report table in transaction GRCT "Report writer control tables".
    Hope it helps!
    Regards Rene

Maybe you are looking for

  • Report RFWT0010 to update withholding tax in open items

    Hi gurus! I'm facing a problem with report RFWT0010 after modifying withholding tax information in the vendor master record. If I delete a complete line (Withholding Tax Type, W/Tax Code, Liable and so on) when I run report RFWT0010 open items are pu

  • Line-in input not working correctly in Garageband

    Problem: Line-in input not working correctly with Garageband. Problem occurred AFTER installing and using Blue Yeti USB mic, purchased from the Apple store. System Details: '07 20" iMac 2.4GHz 4GB RAM, OSX 10.6.5, Garageband '11 v6.0, Logitech Z4 spe

  • JPanel help

    hey, I'm making a calculator program with a function graphing part using JFrame and JPanel. But these two have been causing problems because when I run the GraphMain class, only a portion of the graph shows up. I have tested the Main and Graph classe

  • F4 help and data flow

    Hi,              I created online sale order interactive form using ABAP. In web dynpro component I maintained Display type as native. In the form Layout type as ZCI layout. In form layout I drag and drop the Value help button and Submit button form

  • Jdeveloper Problem In Setting WhereClauseParam

    Hi All, I have a problem here i am not able to set values to ? Styled parameters of the view object. Even if i set it the the View object does not carry those parameters. Pls help me out.. Thanks, Ganesh R