Many Tables & Group Summaries

I've been away from CR for a while and need some help with a report. The database I'm reporting from has many tables and the ones I'm using are:
Units
Workorders
Activity Detail
Activity Master
Labor Details
Parts
The report is based on a unit with Workorder then all the activity listed in ascending order (group #1) reporting subsequent activity information all of which is reporting correctly. I now need to pull from the Labor table listing the activity's total hours and amount, total parts cost, total contract labor hours and amount, total of all costs per activity (group subtotals). Then at the end of the entire report a totals of all hours, amount, part costs, contract hours, contract amount, grand total of all costs.
I was thinking I'd need to do a group subreport, but can't get it to work. Thank you in advance for your help.
I'm also getting an error message when I try to view the report or export it to Excel.  It shows it's 42 pages long.  The error message is:
crw32.exe has encounter a problem and needs to close.  We are sorry for the inconvenience.  Then CR crashes.

What Operating system are you using?  Win XP Pro
Any Service packs for CR and the OS installed? I've selected updates and it says it's up to date.  (I'm using the downloaded trial version.)
Issue is with all the report or single report?  The entire report
I think my real issue is needing to better understand their database and how to properly link the tables within the report.  I'm quite certain I'll need to do subreports, but when I've tried that, nothing shows up on the report.  I know this is all quite vague, but if there's anything that can at least get me pointed in the right direction, I'd be very appreciative.
Thanks much!

Similar Messages

  • One-to-many table linking

    Hi all,
    I'm trying to write a report with multiple one-to-many table links.  The issue is I only want a single record from the linked tables.  The main table is an item table and the linked tables are issue and receipt.  I want to display information from the last issue record and the last receipt record along with the item information.  Not sure how to restrict the joins to just a single record (also need to sort desc on dates in the linked tables).  Does this require the use of a view? or a custom sp?
    Thanks for taking your time to help.
    Kevin

    To bring back a single record then you will probably need to use a View , command or SP.
    However, in Crystal you can bring back multiple records and only display the record you want. The easiest way will be to group
    Data on Date and then Item code.
    Place the data you want to see in in Item group footer and suppress details and all other Group headers and footers.
    To get receipt date just use a maximum summary of receipt date in item group footer
    Ian

  • How many tables are in my database

    I wanted to check how many tables I have so I ran the following query to list all of the tables in all of the tablespaces.
    select t.table_name, df_name from dba_tables t, v$tablespace df
    where t.tablespace_name = df.name;
    I got back 34377 tables or records.
    but if I wanted to count the number of tables I have I could run the following command.
    SQL> select count(*) from dba_tables;
    I got back 34700 tables.
    Can anyone tell me why these numbers don't match or what I am missing here?

    Also you can try to count them regarding to your tablespace which is better
    SELECT COUNT(*),tablespace_name  FROM USER_TABLES group by tablespace_name;also Laurent Schnieder provide with way that you count your tables in specific schema like the following :
    SQL> select
      2    table_name,
      3    to_number(
      4      extractvalue(
      5        xmltype(
      6     dbms_xmlgen.getxml('select count(*) c from '||table_name))
      7        ,'/ROWSET/ROW/C')) count
      8  from user_tables;http://www.dba-oracle.com/t_count_tables_schema.htm

  • Crystal Reports Group Summaries

    I've been away from CR for a while and need some help with a report.  The database I'm reporting from has many tables and the ones I'm using are:
    Workorders
    Activity Detail
    Activity Master
    Labor Details
    Parts
    The report is based on a given Workorder with all the activity listed in ascending order (group #1) reporting subsequent activity information all of which is reporting correctly.  I now need to pull from the Labor table listing the activity's total hours and amount, total parts cost, total contract labor hours and amount, total of all costs per activity (group subtotals).  Then at the end of the entire report a totals of all hours, amount, part costs, contract hours, contract amount, grand total of all costs.
    I was thinking I'd need to do a group subreport, but can't get it to work.  Thank you in advance for your help.

    did you try inserting the summary in a specific group footer?
    regards,
    Raghavendra

  • How to handle Multile Table Group in InDesign

    my XML file having multiple table group tables content but InDesign not supporting while importing xml files?.. could please help and suggest any buddy how to handle multiple table group in InDesign.... because i received many jobs xml workflow with multiple table group.

    its urgent

  • Bex Query: Too many table names in the query The maximum allowable is 256

    Hi Experts,
    I need your help, Im working on a Query using a multiprovider of 2 datastores, I need to work with cells to assign specific acconts values to specific rows and columns, so I was creating a Structure with elements from a Hierarchy, but I get this error when I'm half way of the structure:
    "Too many table names in the query. The maximum allowable is 256.Incorrect syntax near ')'.Incorrect syntax near 'O1'."
    Any idea what is happening? is ti possible to fix it? do I need to ask for a modification of my Infoproviders? Some one told me is possible to combine 2 querys, is it true?
    Thanks a lot for your time and pacience.

    Hi,
    The maximum allowable limit is 256 holds true. It is the max no. of characteristics and key figures that can be used in the column side. While creating a structure, you create key figures (restricted or calculated) and formulas etc.. The objects that you use to create these should not be more than 256.
    http://help.sap.com/saphelp_nw70/helpdata/EN/4d/e2bebb41da1d42917100471b364efa/frameset.htm
    Not sure if combination of 2 query's is possible.  You can use RRI. Or have a woorkbook with 2 queries.
    Hope it helps.

  • Uploading many text file into many table

    hi there,
    my problem is that i have lots of text files (about 360 files), what i need is to upload them to many tables already created in oracle, as far as i know, i can upload only one file per command using the SQL loader, any help would be appreciated.
    thanks in advance.
    i am using oracle 10G and Windows XP SP3
    Edited by: user5724824 on Nov 20, 2009 4:36 AM

    Hello user5724824.
    Besides what drop.any and Toni Lazarin have provided, the only thing I could add would be the option to load one file to multiple tables, reading the file only once. Using Toni's example from another thread and a slight revision
    LOAD DATA
      INFILE mon200601.dat
      INFILE mon200602.dat
      INFILE mon200603.dat
      APPEND
      INTO TABLE emp1
      ( empno  POSITION(1:4)   INTEGER EXTERNAL,
        ename  POSITION(6:15)  CHAR,
        deptno POSITION(17:18) CHAR,
        mgr    POSITION(20:23) INTEGER EXTERNAL
      INTO TABLE emp2
      ( empno  POSITION(1:4)   INTEGER EXTERNAL,
        ename  POSITION(6:15)  CHAR,
        deptno POSITION(17:18) CHAR,
        mgr    POSITION(20:23) INTEGER EXTERNAL
      )If you want specific code to dynamically create all of your control files and execution of sqlldr for each created control file, a small example of table names and file names and their relationships that you'd like to be used would get me started. Include a three line sample example control file, that way we know whether you are using fixed or delimited data (this is significant).
    Hope this helps,
    Luke

  • Report Writer for ICR process (table group FBICRC002)

    Hello Gurus,
    I have implemented the new ICR process 002. It is working fine and I now want to create reports based on tables FBICRC002A & FBICRC002T.
    When I try to create a library based on table FBICRC002T the system block me saying that "Table FBICRC002T is not installed in Report Writer" (message GR493).
    Should I install the table group FBICRC002 to be able to use these data into report writer?
    Do you know why this table group already exists and cannot be displayed?
    Thank you in advance,
    Regards,
    Pascal.
    Edited by: Sylvie EHM on Aug 13, 2008 5:24 PM

    Hello Pascal,
    Note 1162287 should help you with that issue: https://service.sap.com/sap/support/notes/1162287
    Best regards,
    Ralph

  • Securing table group SS / transaction SCC1 and table CCCFLOW

    Hello all,
    I'm relatively new to this forum, please be kind.
    Situation sketch:
    In an SAP landscape, in Development environment, I have 3 clients, in which 500 is the ECC golden client, 510 is for sandboxing and 520 is for testing.
    Problem:
    Developers use tcode SCC1 to transport customizations to another client to be tested again and put on transports eventually.
    For changes they make using SCC1 they require Change (02) authorization on table CCCFLOW (client-copy report logs).
    However this CCCFLOW table is classed under the SS table group, in which all my other important security tables are as well
    (AGR_* etc).
    Question:
    How have you guys secured the SS table group when you still want to provide developers the use of SCC1?
    Regards,

    How about this idea?  Your thoughts and suggestions are appreciated.
    1.  Clone SCC1 to ZSCC1 (SE93)
    2.  For ZSCC1 Remove S_TABU_DIS Auth Check on ACTVT 02(SU24)
    3.  For ZSCC1 Insert S_TABU_NAM Auth Check on CCCFLOW  ACTVT 02(SU24)
    4.  test with a role that allows S_TABU_NAM to CCCFLOW and does not allow S_TABU_DIS to auth grp SS
    This should separate out CCCFLOW from the rest of the SS Auth Group tables.
    Has anyone tried this approach?
    Optionally, Do steps 2 and 3 directly on SCC1, depending on your SAP shop's policy for modifying auth checks on SAP-delivered tcodes.
    BSnow

  • Select from (too many) tables

    Hi all,
    I'm a proud Oracle Apex developer. We have developed an Interactive Report that is generated from many joined tables in a remote system. I've read that to improve performances we can do the following:
    1) Create a temporary table on our system that stores the app_user id and the colmun as a result of the query
    2) Create a procedure that does:
    declare
    param1:= :PXX_item
    param2:= :PXY_item.
    param3:= :V('APP_USER')
    insert into <our_table>
    (select param3, <query from remore system>)
    commit;
    3) Rediresct to a query page where IR reads from this temp table
    On "Exit" button there's a procedure that purge table data of that user (delete from temp where user=V('app_user'), so the temp table is only filled with necessary data.
    Do you see any inconvenience? Application will be used from about 500 users, about 50 concurrent users at a time.
    Thank you!

    1) We don't have a control on source syste, we can only perform query on itI was referring to a materialized view on the system where Apex is installed, not on the source database.
    2) There are many tables involvedI don't understand why this is a problem. Too much data I can see, but too many tables... not so much.
    3) Data has to be in real time, with no delayThis would a problem for MV or collections. The collections would store the data as of the initial query. Any IRs using the collection after the fact would be using stale data. If you absolutely have to have the data as of right now every time, then the full query must run on the remote system every time. Tuning that query is the only option to make it faster.
    4) There are many transactions on the source tables (they are the core of the source system) and so MV could not be refreshed so fastProbably could be with fast refresh enabled, but not necessarily practical to do so. As I indicated in 3, you have painted yourself into a corner here. You have indicated a need for a real-time query and that eliminates a number of possibilities for query-once use-many performance solutions.

  • Assign as many sales groups as desired to the sales offices in CRM

    Dear guru!
    Can I assign as many sales groups as desired to the sales offices in CRM? Any one sales group can belong to several sales offices in ERPu2026
    In this moment I have next error:
    Attribute R3_SA_GRP with value 337already assigned to O 50000935.
    Please help me!
    Best regards,
    Andrey.
    Edited by: Andrey Kachko on Aug 27, 2008 11:19 AM

    CRM has the possibility to change the std. assignment which is limiting you right now into a multiple assignment. You can find this functionality in spro->crm->master data->organisational management->data transfer->(the first one) something like Change Orgmodel to multiple assignment.
    Be aware that there are some limitations with each setting and this change cannot be made undone. So please read the documentation on this IMG activity carefully. If you execute the report and re-load the buffer via SE38 - Report HRBCI_ATTRIBUTES_BUFFER_UPDATE you should be able to assign the office the way you want to.
    Regards, Kai

  • How to check how many tables used in one particular program

    Hi Gurus,
          I am wondering how to check for how many tables are used for one particular  program whether its a custom (Y* or Z* program) or
    a sap program (R*) .I have tried ST05 .But its not satisfactory .Could u help me plz in this  regard .
    Thanks in Advance !!!!!!!!

    hi,
    Go with the transaction se80
    select type as the Progarm
    in the below block provide your program name.....
    there u can find the drop down of your object related tables, types, fields, etc.....go with the tables u can find the respective information of the tables....
    or
    go with the se30
    and enter the program name...
    and go with the trips and tricks....
    u can find the drop down of the
    abap objects performanceexamples....
    and go with the required thing.....
    then u can find the required....
    Cheers,
    Brahma

  • Oracle Instanc has too many tables, way to subset?

    <p>Hello,</p><p> </p><p>When i try to bring up an Oracle instance and do a query, thereare so many tables that it takes 10 minutes for H. to bring up thelist of tables.</p><p> </p><p>Is there a way to subset by Owner like TOAD does, so that i'mnot trying to bit off the whole thing at once?</p><p> </p><p>Thanks very much!</p><p> </p><p>BobK</p>

    Thanks for the idea. I use the filters all of the time to find tables of interest. Like if I'm looking for tables with product info, I'll put "%prod%", or something like that. But as you suggest, I guess there's no reason why I couldn't key in every one of my 100+ tables of interest so I don't see 300+ tables that are empty and unused.
    One thing that worries me is that I would make this huge investment in time (keying into the filter) and I'd hit "clear filter" by accident one day.
    I think I'll write a macro in AutoIt and enter the interesting tables in the filter using the (reusable) macro. Thanks again.
    -- Dale --

  • How many tables can i create in Oracle 10g ?

    hi every body !
    how many tables can create in oracle 10g ?
    thank you !

    Unlimited
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14237/limits003.htm

  • Change Tracking many tables

    Hi,
    I have a number of tables that are all related in some way or another. Lets say there are 20 tables in total here. I need to track changes as they all ultimately will need their changes sending to some other remote database.
    Is it ok for me to use just a single change version, obtained at the beginning of my synchronisation code, within a SNAPSHOT transaction for every table I'm concerned about?
    I would also need to validate the change version used before getting changes for each table using CHANGE_TRACKING_MIN_VALID_VERSION wouldn't I?
    Once I have obtained all the changes for the 20 tables, then I would commit my transaction.
    Regards

    The thing is, there is a LOT of overhead to tracking many tables.  It is a seductive idea, but you may not realize the full cost in complexity and overhead.
    Have you looked at using replication instead?  It's not that much cheaper, but it may at least be easier.
    I think you are confusing Change Tracking with Change Data Capture. SDA is talking about the former.
    I am not sure that I fully understand SDA's question, but, yes, a single snapshot transaction sounds right. (For Josh: Change Tracking is best used with snapshot isolation.) Particularly, if you want to retrieve changes that are consistent with each
    other.
    I am a little worrried abotu "single change version", since the version number for each table will be different. (Or at least they can be.)
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • How to find out the differences in minor builds for components?

    Hello, We use crystal 10 included in a vb6 application for reports design and viewing. When we changed our installshield version, for a reason I haven't understood yet, our versions of all the crystal components changed with it. This got identified a

  • Creation of Group for Order type

    Dear All, I have created the stage wise order types ,now I am trying to create a group for each order type, while doing this I maintained  text & no.range for the same, but system is not creating new group, it replaced the existing group.(OPJH ) plea

  • How to save new edits and text to photo without creating a new file

    I am a new user of PSE 7.  I am able to enhance and add text to my photos but can't save the edits without creating a new PSD PSE file in addition to the original unedited photo.  How do I save the phto itself as edited?

  • Phillips 1080 TV

    I just got a Phillips 1080 TV and when I hook it up to my MacBook Pro with a DVI>HDMI adapter the highest resolution I get is 1920x1080. With overscan turned off I get black around all the edges. With overscan turned off I get cropped video on the to

  • 16X SATA DVD-RW CD-RW SH-216 Supermulti Optical Drive 575781-801

    Is the 16X SATA DVD-RW CD-RW SH-216 Supermulti Optical Drive (575781-801) usable in a xw6600 workstation? Thanks!