Table used in report painter

Hi,
How to check what table is really used in a certain report painter.
For my case, I want to a report 1KSL-001 under 1VK library, and I can see this 1VK library is using table "CCSS", but CCSS acctually is not a table, its just a structure.
So, how to use what tables are used while running report 1KSL-001?
Thanks.
Cheers,
Bernard Gunawan

Yes, but how do you know and where to check that this report is a collection of fields of those tables?
Could you please tell me what transaction code to check, and guide to what table behind a report painter?
Bernard

Similar Messages

  • Need Help Using the Report Painter

    Hi experts,
    i'm using report painter GRR1, how can i resize the Lead Column? i need it to increase its length, i had already maintained the texts(short middle and long texts).
    Thanks for the help,
    zryxel

    Go to FORMATTING > COLUMNS > Select the Format Group and Edit Column Width.
    Reward points if useful.
    Salamat!
    AJ

  • Creating reports for user tables using XL reporter

    Hi all
    i wish to create  a report based on user tables using the XL reporter.
    question is: is it possible? and if so how can it be done?
    appreciate the help
    Yoav

    Hi Yoav,
    XL Reporter cannot pull data from UDTs. However, you can use an Excel template when creating your XL Reporter report and then embed VBA code in the template to pull the UDT data in to the report after the XL Reporter has finished generating the report. It all depends on how you need to combine the UDT data with other SBO data. If you are interested in a report based entirely on UDT data then it would be simpler just to write the report using VBA in Excel (or Crystal).
    Kind Regards,
    Owen

  • Writing to a table using Crystal Reports

    I know there must be a way to write to a table after Crystal Reports collects the data.
    Can someone kindly go over the steps in doing so?  I'm using SQL Server.  Let's assume the data returned is one row.
    Thanks in advance,
    Zack H.

    Hi Zack,
    Use the export option and then chose ODBC. CR will create the table based on the fields in the report.
    Thank you
    Don

  • PL/SQL Table use in report region query

    Hello,
    I have a package function which return pl/sql table. I want to create a report region based on this pl/sql table. Is it possible to do this kind of report in HTMLDB?
    Please guide me in this area.
    Thanks
    HA

    The htmldb_collections API (apec_collections in 2.2) is a very useful method for rendering reports and one I have used extensivly in the past.
    Once created and populated you can reference your collection as if it were a SQL table i.e.
    Select c001, c002, c003
    from htmldb_collections
    where collection_name = 'MY_COLLECTION';
    You can absolutly base an Apex Report region on collections. Just treat them as another table that you can select from, join to others etc.
    In order to utilise this you must do the following:
    1) Create your collection:
    note that collections only persist for the duration of your session and you can only see the data you inserted into the collection. Also I would create this collection as the Database user who owns the Apex Workspace
    htmldb_collection.create_or_truncate_collection ('MY_COLLECTION');
    2) Populate your collection:
    In your case I would set a loop construct that parses through your pl/sql table and assign all values as described below. I assumed that my_plsql_tab has 3 columns called Val1, Val2, Val3
    FOR x IN 1..my_plsql_tab.count
    LOOP
    htmldb_collection.add_member (p_collection_name => 'MY_COLLECTION',
    p_c001 => my_plsql_tab(x).val1,
    p_c002 => my_plsql_tab(x).val2,
    p_c003 => my_plsql_tab(x).val3
    END LOOP;
    Note that you can have upto 60 elements in your collection.
    3) Access your collection:
    Select c001, c002, c003
    from htmldb_collections
    where collection_name = 'MY_COLLECTION';
    This quesry can then form the source of your sql report region.
    Hope all that helps
    Duncan

  • Report output list to internal table using submit report

    Hello,
    I have a report that generates the output in the form of an abap list. I want this data in an internal table for further processing. the report internally does not do a export data to memory so i cannot use import later on to get the data.
    i did the following
    SUBMIT <report name> exportING LIST TO MEMORY and return.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = itab_list
      EXCEPTIONS
        not_found  = 4
        OTHERS     = 8.
    CALL FUNCTION 'LIST_TO_ASCI'
      EXPORTING
        list_index         = -1
      TABLES
        listasci           = ascitab
        listobject         = itab_list
      EXCEPTIONS
        empty_list         = 1
        list_index_invalid = 2
        OTHERS             = 3.
    This returns the data in the ascitab, but the data contains additional unwanted info like lines and hyphens etc. Also the data is in a table with a single column, so pulling out individuals fields is again an issue. Is there a way to get this data into an internal table directly?
    best regards,
    Suraj

    hi suraj
    export the internal table  of report
    DATA: BEGIN OF SR_VBAK ,
          VBELN LIKE VBAK-VBELN,
          END OF SR_VBAK.
    DATA: IR_VBAK LIKE STANDARD TABLE OF SR_VBAK WITH HEADER LINE.
    EXPORT IR_VBAK TO MEMORY ID 'SALES'.
           SUBMIT <program name in which u want internal table records > AND RETURN.
    now import that data in submit program  .
    here u have to creat a internal table with same structure as the internal table from which u r trying to export the data
    DATA: BEGIN OF SR_VBAK,
          VBELN LIKE VBAK-VBELN,
          END OF SR_VBAK.
    DATA : IR_VBAK LIKE STANDARD TABLE OF SR_VBAK WITH HEADER LINE.
    IMPORT IR_VBAK FROM MEMORY ID 'SALES'.
    regards
    ANIL CHAUDHaRY

  • How can i insert character data in a table using the report trigger

    well here is my query
    do_sql ('insert into report_trigger_details values(po report,before parameter)');
    i need to to insert data from within the report using the before parameter form trigger.Error is as follows:
    error: rep-1425,cant parse the statement,missing comma
    This error got removed by removing the space in ''po report" and before parameter"
    Now the error that i get is :ora-00984:column not allowed here
    Also i need to keep the spaces between the values while inserting data
    Please help!!!
    Thanks
    Edited by: 924271 on Mar 29, 2012 7:02 AM
    Edited by: 924271 on Mar 29, 2012 7:07 AM
    Edited by: 924271 on Mar 29, 2012 7:08 AM

    I know this isnt a great way of using query but its part of the assignment ,so any help will be greatly appreciated.
    Here it is again......
    function BeforePForm return boolean is
    segment2 varchar2(10);
    begin
         srw.message(001,'I just got executed first');
    srw.do_sql('select segment1 into :segment2 from xxmssl_po_headers_all');
    srw.do_sql('insert into report_trigger_details values(seq2.nextval,:segment2,''po report'',''before parameter form'',''po number is'')');
    srw.do_sql('commit');
    return (TRUE);
    end;
    the that i was getting earlier was resolved by using two single quotes....Now the error is....
    Error: error putting value in column....
    column 'segment2' may not be referenced by parameter triggers..
    The insert ran fine until I changed the above function as follows:
    function BeforePForm return boolean is
    segment2 varchar2(10);
    type_code varchar2(10);
    org_no number(4);
    begin
         srw.message(001,'I just got executed first');
    srw.do_sql('select segment1,type_lookup_code,org_id into :segment2,:type_code,:org_no from xxmssl_po_headers_all');
    srw.do_sql('insert into report_trigger_details values(seq2.nextval,:segment2,''po report'',''before parameter form'',''po number is'':segment2 '',type_code is'':type_code '',org_no is'':org_no )');
    srw.do_sql('commit');
    return (TRUE);
    end;
    When i ran it ,it started giving the above mentioned error.I reverted the changes back and recompiled my report but still getting the same error....
    Thanks in advance
    Edited by: 924271 on Mar 29, 2012 11:59 PM
    Edited by: 924271 on Mar 30, 2012 12:11 AM

  • How to add / Change  accounts to GR55 using a report painter

    Hi Gurus,
    Can you  tell how the gl account s should be added for GR55 report,is there any procedure to follw for that ?
    Can any one of you please list all the points for addition OR  changing  account no. in GR55 report
    Thanks You
    VSK

    Hi santosh,
    For change the report go to GR52 or GRR2 - select your report - double click on double click on Row items where your added the GL accounts - assign the gl accounts from to to, if its continius GL number, If its not continues give gl account no. in from account column, if want to assign more accounts just press more button and give your gl account.
    please assign the points if its useful
    reagrds
    sai krishna

  • Modify Set for Use in Report Painter

    Dear All,
    I wanted to select cost center postings for a group of cost elements, and wish to see only the debit entries, so I have created a Multi Set (from table CCSS) which consists of 2 Basic sets e.g.:
    1. KSTAR - Cost Element = 7000000 to 8000000
    2. BEKNZ - Dr/Cr Indicator = D
    However when I run a report which is calling the Multi Set, I would still see the Cost Elements with Credit amounts.
    Am I doing this correctly? Or is there any other method to get the desired result?
    Thank you.
    DV44

    Hi MadMac,
    I did try that option, setting '+' in the P/M field.. But the results still show the negative line items.
    Any other way?
    Cheers,
    DV

  • BSEG table in Report painter

    Hi All,
    I want to create a report using a report painter. For this while creating library, i want to use the table BSEG.
    But i am getting an error message "Table BSEG is not installed in report painter".
    Then i used transaction MC27 and created Z structure from table BSEG. This solved my problem.
    All this i was doing in ECC6.0 version.
    Then i tried in 4.7 version, there table BSEG was already available to create a library.
    Is it a version difference or we can can directly map standard tables also using transaction MC27 ?
    But in ECC6.0, it was not allowing me map table BSEG using transaction MC27. I was getting message that "Evaluation structure name must be started with ZF"!!
    Please help me in solving this puzzle!
    Thanks
    Puneet Aggarwal

    Hi
    This is version difference.  In 4.7 Table BSEG not updated.  In ECC 6 this problem solved.
    Shammi
    assign points if it is helpful

  • Can we combine the two tables for Report Painter

    Hi,
    For making the report in Report Painter, I am not getting all the required characteristics and Key figures all in one table / Library.
    The required ones are in Table KKBC, GLT0 and CCSS.
    Is it possible to combine these tables and make a new one so that I can create the Library and can use that Library while making the report in Report Painter.
    Or is there any other work around to get the my required charcateristics and Key Figures so that I can make the report easily?
    I dont want to go through ABAP route.
    Kindly help.
    Regards
    Kami

    Thanks Bulut for your reply,
    But by going through View creation involves ABAP help, that I dont want.
    However, is it poosible to use View while creating the reports in Report Painter? I am not sure.
    I want to know whether can we create a table which is used for report painter, so that I can use for creating the Library and then the reports.
    I hope you understand my point.
    Regards
    Kami

  • Report Painter and use

    Hi Experts,
    I have requirement wherein I want to use Report Painter to derive output for a company code.I have got 2 Company Codes which are used in Report Painter but I want to do the configuration for the 3rd Company Code as well.
    Can someone please guide me what are the prerequisites required to do the same.
    I also observed that when a Financial Document is getting posted in SAP system 3 other docs like
    Profit Center Doc.
    Controlling Doc &
    Spl Purpose Ledger Doc is also getting posted.But for my 3rd Co Code No Profit Center Document is getting posted.
    Can someone please advice a solution for the same.
    Regards
    Rahul

    Hi,
    Thanks a lot for the prompt reply but can you please advice what exactly do i need to do in Transaction GB02 and GCBA since i checked the settings for both the Co Codes and in 1 CO Code No Ranges defined are as follows and nothing is defined in Second Co Code.
    Year         From No                    To No
    1992     0000100000     0000199999
    9999     0000300000     0000999999
    1992     0000200000     0000299999
    9999     0001000000     0009999999
    I do not know how but the 1st CO Code has Profit Center Doc generated as 0016897961 which does not fall in the No range defined.
    I copied No range from Co Code 1 to Co Code 2 still no Profit Center Doc is generated
    Request you to please look into the same.
    Regards
    Rahul

  • Add Characteristics in Report Painter

    Hi,
    I'm creating a Financial Report using the Report Painter and I would like to add in the row the field Group Account Number; but is not available in the characteristic that I've by choose.
    Is possible to add this field as a characteristic? How can I do it?
    Thanks in advance,
    Regards,
    Jorge

    Finally I got to add this characteristic in GLFUNCT table usin an append but when I execute the report the system is giving following mistake:
    "Characteristic ZZGRACC cannot be combined with key figures"
    Anybody knows which is the process that I've to follow to obtain this data on the report.
    Kr

  • Report painter issue

    Hi All,
    I need to create a report using report painter.
    Requirement goes like this:
    1) A report of quantities on a cost center against a cost element.
    2)The quantities should be for each month from jan to Dec
    I have used SMEG (QUANTITY) as the Basic Key figure.
    General Selection:
    Version     0                                            
    Fiscal year     1GJAHR     Fiscal Year
    Value type     4                                            
    CO area     0002                                            
    Cost center     1KOSET     Cost center group
    I am trying to get the quantity (MENGE) booked using F-02 on a cost center.
    But my problem is that, against a cost center there are many other quantities booked.
    I am not getting the output as my report painter query is not using COEP table and my data is available on COEP table.It queries COSS & COSP
    Is there is a way that i can use my report painter queiry this table.
    Regards
    Rahman

    reolved

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

Maybe you are looking for

  • Hp psc 1350 won't scan

    My hp psc 1350 all in one will not scan.  I have windows Vista 32 bit.  I tried for hours looking on here.  i can't scan from the scan button or the other ways some posts said to go to windows photo gallery and even paint.   On windows photo gallery

  • Solaris 10 patch clusters

    I'm sorry if this is in the wrong forum, but I didn't see a better/more relevant spot for it. Is there a way to download the Solaris 10 without having a SunSolve account? When I tried to download it I get redirected to a login/register page which req

  • Hierarchical keywords in iPhoto

    I really appreciate the ability to open my Aperture library in iPhoto. I moved from iPhoto to Aperture a couple of years ago and upgraded all my keywords to hierarchical ones. Now when I open my library in iPhoto though, none of my keywords are visib

  • How to recover sony ARW files deleted by Aperture after importing?

    I imported some Sony RAW photos (in .ARW format, shot by Sony Nex 6) from a SDXC card into Aperture library with my MacBook Pro, and as usual I let Aperture deleted the files on the SDXC card (i.e. I did not deleted the files using Finder).  Unfortun

  • I messed up in boot camp.

    Okay, admittedly this one is probably my fault, but I was trying to fix boot camp, which was loading slowly, and now it doesn't work at all. So I try to delete that partition and start over again, but it comes up with a message of "The startup disk c