Grouping Problem - Total doesnot match

Hi,
I am working on a requirement where I need to select records based on a specific date.  The report is generated from a software where initally I will specify the Begin and End date based on which originally the records are selected. 
Now the requirement needs to again select records with in a specific date range which falls between the Begin and End date I have already specified, I have did that too using a formula & using parameters like the following
{SAMPLETABLE.RELEASE_DATE} >= {?From} and {SAMPLETABLE.RELEASE_DATE} <= {?To}
Grouping is also carried about based on the original parameters (i.e., Begin & End date).
In the report footer we have three summary fields & the Total does not match with the sum in the details section after giving the Release date parameters.
To make more clear,
Let me say the From date as 01/01/1960 & the End date as 01/01/2009 & the number of records in this range is 4. 
Name     Release Date     Field 1     Field 2     Field 3
Test1     1/1/1960                          100        70       80
Test2     1/10/1990                            52        98       74
Test3     1/11/1999                          100        25       74
Test 4     1/1/2009                             47        75       85
Total                                299      268      313
If I give the release date between 1/10/1990 & 1/11/1999 it selects two records but the Total remains the same.
Name     Release Date     Field 1     Field 2     Field 3
Test2     1/10/1990                             52       98      74
Test3     1/11/1999                           100       25      74
Total                                299     268     313
Can any one point me in right direction? Where I need to make change to get the total based on the selected records?
Thanks in advance,
Regards,
Karthi

Hi Karthi,
Running total will help you.. You can reset the runninig total by group if needs.
Regards,
Salah

Similar Messages

  • "Literal Match Doesnot match format string" error

    Hi All,
    i created a view based on the querry below.
    The view runs fine and gives me correct result.
    but when i add the view to report it trows me oracle error ORA-01861 which is literal match doesnot match format string.
    did anyone face this problem before.
    Please Help
    SELECT q, source, a_string_name, day_f, clock_time_from, clock_time_to,
              ongoing, closed,
              rejection,done,notdone
         FROM (SELECT   DECODE (q_id,2, 'LEDGER_TYPE',
                                'N/A'
                               ) q,
                        DECODE (source_code, NULL, 'NO SOURCE', source_code) source,
                        a_string_name, day_f,
                        TRUNC (TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                    'DD-MON-YY'
                                        || ' '
                                        || hr.clock_time_from,
                                        'DD-MON-YY HH:MI:SS AM'
                               'HH'
                              ) clock_time_from,
                          TRUNC (TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                      'DD-MON-YY'
                                          || ' '
                                          || hr.clock_time_to,
                                          'DD-MON-YY HH:MI:SS AM'
                                 'HH'
                        + 3599 / 86400 clock_time_to,
                        SUM
                           (CASE
                               WHEN try_dt >=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_from,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND try_dt <=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_to,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND user_id <> 'Inbound'
                                  THEN 1
                               ELSE 0
                            END
                           ) ongoing,
                        SUM
                           (CASE
                               WHEN try_finish_dt >=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_from,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND try_finish_dt <=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_to,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND ai.quit_point_id IN (5, 6)
                               AND user_id NOT IN
                                               ('Inbound', 'Nightly Maintenance')
                                  THEN 1
                               ELSE 0
                            END
                           ) closed,
                        SUM
                           (CASE
                               WHEN try_finish_dt >=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_from,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND try_finish_dt <=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_to,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND ai.quit_point_id IN (2, 4)
                               AND user_id NOT IN
                                               ('Inbound', 'Nightly Maintenance')
                                  THEN 1
                               ELSE 0
                            END
                           ) rejection,
                        SUM
                           (CASE
                               WHEN try_finish_dt >=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_from,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND try_finish_dt <=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_to,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND user_id <> 'Inbound'
                                  THEN 1
                               ELSE 0
                            END
                           ) done,
                         SUM
                           (CASE
                               WHEN try_finish_dt >=
                                      TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                           'DD-MON-YY'
                                               || ' '
                                               || hr.clock_time_to,
                                               'DD-MON-YY HH:MI:SS AM'
                               AND user_id <> 'Inbound'
                                  THEN 1
                               ELSE 0
                            END
                           ) notdone
                         FROM report.attempts ai,
                        report.log_hour hr,
                        report.client ta
                  WHERE ai.source_code = ta.agency(+)
                    AND ai.user_id <> 'InActiveAttemptsUser'
                    AND try_dt >=
                           TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1), 'DD-MON-YY')
                                    || ' '
                                    || '05:00:00',
                                    'DD-MON-YY HH24:MI:SS'
                    AND try_dt <=
                           TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1), 'DD-MON-YY')
                                    || ' '
                                    || hr.clock_time_to,
                                    'DD-MON-YY HH:MI:SS AM'
                    AND try_finish_dt >= try_dt
                    AND q_id = 2
               GROUP BY DECODE (q_id,2, 'LEDGER_TYPE', 'N/A'),
                        DECODE (source_code, NULL, 'NO SOURCE', source_code),
                        a_string_name,
                        TRUNC (TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                    'DD-MON-YY'
                                        || ' '
                                        || hr.clock_time_from,
                                        'DD-MON-YY HH:MI:SS AM'
                               'HH'
                          TRUNC (TO_DATE (   TO_DATE (TRUNC (SYSDATE - 1),
                                                      'DD-MON-YY'
                                          || ' '
                                          || hr.clock_time_to,
                                          'DD-MON-YY HH:MI:SS AM'
                                 'HH'
                        + 3599 / 86400,
                        day_f)

    Please re-post if this is still an issue to the Data Connectivity - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Report design Grouping problem

    I'm currently designing a report, something like an invoice. The invoice number is usually on the page header. But now i want to create a report to list down all the invoice numbers in the 'details' but when i drag the 'invoice number' data to 'details'
    it only show 1 row of numbers, wheareas the data has few rows of it. How can i make it view all my numbers? 

    Hi Eugene,
    Thank you for posting in MSDN forum.
    Since this forum is discuss the VS test issue, so
    I’m afraid that it is not the correct forum for this issue.
    As you said that the report design grouping problem, I suggest you could try to consult this issue directly to the VS Report Controls forum:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=vsreportcontrols , maybe you will get better support.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problems with color matching when printing...

         Hi, I work for a small family business in the P.O.P. industry.  We currently have myself and one other designer, we both take illustrator files that have come from the graphic design firm that we contract with and get them ready to print on our Vutek QS3200.  However ever since acquiring the printer we have begun to run into problems with the colors when printing.  When the files are exported off of my computer, I use either .tif or .pdf files, they print as they should, the colors seem to match the proof and everything goes smoothly.  However when the other designer exports a file, he tends to do mainly pdfs, the colors tend to be extremely different from where we want them.  Also we will get very strange results, such as yesterday he kept getting a faint yellow 1/2" border around his prints.  After I believe 3+ hours of him trying, I was given the original CD and instructed to try.  After 15-20 minutes of making the changes that we needed to make (adding a new price point) and ripping, mine printed perfectly. 
         We both use Macs, both have CS3 Design standard, only differences between the computers are mine is newer and a bit faster, and I'm running OS 10.5.6 and he has 10.4.  He has also at some point loaded various color profiles, whereas my CS package is just whatever the default is when I loaded it.  When we were being trained he grabbed the color profile off of the Colorburst RIP server and loaded onto his computer, plus I believe he has a couple for freelancing purposes on there as well.  My thought is that these profiles are somehow corrupting the files that are going through that computer, but I honestly am lost with it at the moment.  He believes the problem lies within the fact that he does not have the newer OS, I honestly cannot see that as having any effect on this at all.  I was wondering if anyone has run into any similar problems, or if anyone might have any advice on this issue?  I would really like to be able to solve this, as I was hired to do mainly structural design for the P.O.P. and I'm having to put in a lot of overtime to get my work done along with the additional work that I'm having to do.
    Thanks for your time

    I've got a few years experience calibrating large format printers.  First, the Yellow sounds like a file problem.  I used to work with two workstations, one PC ( RIP station ), and one Mac ( file prep station ).  I tend to agree with you in that the OS is probably not the problem.  But, any Colorburst profiles should remain in the RIP, not in the originator application.  My workflow consisted of creating EPS files that were based on established color settings in their given applications ( i.e., Illustrator, Photoshop ) which were interpreted by the RIP which had it's own calibrated profile ( perhaps more than one based on how many different substrates were being used ).  Your partner may be complicating things by incorporating a RIP profile prematurely.  If there are deviations big enough to be noticed, there has to be something in the application color settings that is causing some type of corruption.  This could lead back to the operating system, but I would think it lies somewhere in Bridge or the application color settings.  Start there.  You should seriously consider implementing a calibration system if you do not have one already.  Another slight possibility is the driver's ability to interpret files coming out of Leopard vs. files coming out of Tiger.  It may benefit you both to be in the same operating system dynamics, using the same driver versions and RIP profiles.  At the very least, match everything that is currently working successfully and put them on both machines.  If there is still a noticeable problem in color matching, then something is seriously wrong and you should call in a prepress profiling expert.  Hope this helps.

  • Layout and file description doesnot match

    In Profit center planning,
    When I am press the overview button after entering the account numbers , version and all other details in the selection criteria,
    Then I get this error
    Layout and file description doesnot match. I went back and I deleted the file name in the file column and I am getting the same error.
    Thanks,
    YGB

    Hi GB,
    For Planning Data Upload if Excel Integrated Planning is activated, system will generate the File Description. and system will take you to Excel where in you will save the Generic File name. (at the time of config).
    Suppose if you have saved that Generic File to be "Planning1", the file name should be maintained in the same format when you upload the Planning Data. You can maintain your File Name to be Planning2 Planning3 etc (in text format).
    Srikanth Munnaluri

  • Error  : Unicode setting doesnot match source system in BW

    Hi All,
    While replication data in BW  im facing the following error :
    unicode setting doesnot match source system.
    Kindly suggest.
    Regards,
    Amit Miglani.

    Hi,
    We have installed a fresh BIW server on MSSQL database 2005. We have selected components like as ABAP.JAVA,EP,EP Core ,BI Java. While replicating the datasource using tcode RSA1 from R/3 Retail Server we are getting an error Error in module RSQL of the datasource inter face .
    Details of Support package level-:
    SAP_ABA 700 0016 SAPKA70016 Cross-Application Component
    SAP_BASIS 700 0016 SAPKB70016 SAP Basis Component
    PI_BASIS 2006_1_700 0007 SAPKIPYM07 Basis Plug-In (PI_BASIS) 2006_1_700
    SAP_BW 700 0018 SAPKW70018 SAP NetWeaver BI 7.0
    BI_CONT 703 0008 SAPKIBIIP8 Business Intelligence Content
    Please suggest us the solution.
    Note: we are not getting any dump in st22. we have already checked the note 1162821
    Regards,
    Amit Miglani.

  • UME Roles/Groups problem

    UME Roles/Groups problem
    I have installed an ABAP +J2EE instance with the view of using it for Adobe Document Services.
    While following the Adobe Document Services configuration guide, Step 3.2.1.1:
    I'm creating a role in the ABAP engine, creating a user (ADSUser); creating and assigning the role (ADSCallers) to it.
    When I start visual admin, i expect the user to be shown under the 'group': ADSCallers.
    While I can see the user in visual admin, I'm unable to see the group (role in ABAP instance)
    I'm on SP19 NW2004. Any views???

    There is a delay before roles show up as groups on the Java side. The delay runs about 30 minutes. See http://help.sap.com/saphelp_nw04s/helpdata/en/45/af3ac012d32e78e10000000a155369/frameset.htm
    -Michael

  • Problem in Workflow matching step

    Hi,
    I am facing a problem in Workflow matching step. I have user kaushikb assigned to it.
    Execution Type: Any Single, Assignee Type: User and Execution Type: Any Single.
    Match Record Scope: Records vs Records, Strategy: MDM_NAME.
    This Strategy: MDM_NAME is based on 3 rules: MDM_NAME1, MDM_NAME2 and MDM_NAME3.
    MDM_NAME1 is done based on transformations MDM_NAME1[XFM], MDM_NAME2[XFM] and MDM_NAME3[XFM].
    Now my problem is even after matching and merging a large number of records it is not going to
    the next step. Do I need to match and merge all duplicate records? If the Matching process is rerun
    the score becomes less as the same records are compared again. After this the link assume gets activated and then clicking it activates the next step.
    Regards
    Kaushik Banerjee

    Hi Kaushik,
    Match step is an Automated step in the MDM workflow.On selecting this step you need to mention the strategy that needs to run on the records to match them.When you reach the Match step you need to Perform the step to run the mentioned Strategy .
    When you Perform the Match step it will display the Matching result provided you select the Matching mode in MDM data manager.
    You can merge or not merge the matched records Once your Matching is performed by the system, You can move your Workflow to the Next step which is Process.
    When you are selecting Any single as your execution type it means you have more tahn one user for executing this task but you want any single one of them to perform it.
    So whenever you have selected Any single as the excution type for any process .The user accepting to perfrom the task needs to Accept the task .
    So when User1 wants to perform the task he will have to select Accept and then proceed with the task.
    When the owner of the workflow is testing the entire workflow he needs to Assume the task as he is not the Assigned user but the Assumed one.
    So if you have build your workflows correctly and moving in step as explained you should be able to select the next step
    You can follow the below link to understand the process better:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0be83e4-a1e6-2a10-c1be-8395ae948844
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • Download Problems with iTunes Match

    I'm having problems with iTunes Match, upload the songs are done and had great difficulty with the freezing of steps.
    I'm not able to make the songs appear in iTunes: http://pqp.me/7qr
    and when I get the songs come I can not download:http://pqp.me/7qq
    Can you help me?

    Vinny Bastos wrote:
    I'm not able to make the songs appear in iTunes: http://pqp.me/7qr
    I don't know what you mean by this. Do you mean you can't figure out how to get off that screen? Click the "done" button.
    This is just to say that I managed to sync with iTunes Match, in my other notebook I can not do the songs appear.
    Vinny Bastos wrote:
    and when I get the songs come I can not download:http://pqp.me/7qq
    You're connection the iTunes Match servers is offline. That's why the songs are greyed out and the cloud icon has the horozontal lines in it. Quit iTunes, wait a few seconds, re-launch the application and wait until the tracks are no longer greyed out and you will be able to download them.
    That part you answered, thanks.
    How often iTunes Match is off? Sometimes?

  • Problem with iTunes Match and the song "This will be (an everlasting love)" from Natalie Cole

    Hello,
    I'd like to report a problem with iTunes Match and Natalie Cole's song "This will be (an everlasting love)".
    When I stream it or download it on another device I don't get Natalie Cole's song but another one from Maxine Nightingale (Right back where we started from).
    Please tell me if you have the same problem or how I can report this problem to apple.
    Thank you.

    Hi,
    This is a user to user forum - not Apple. Contact them http://www.apple.com/support/itunes/contact/
    Alternatively if the song was purchased from iTunes, you may be able to report the problem by signing into you iTunes account on your computer. Report an problem with an item you bought from the iTunes Store, App Store, Mac App Store, or iBooks Store
    JIm

  • The key columns of the country measure group attribute do not match in either number or data types to the key columns of the source attribute

    I have a country dimension which is used in 5 cubes. Now I want to change 'key column' property of the country attribute. Whenever I do this, I get an error as "The key columns of the country measure group attribute do not match in either number or
    data types to the key columns of the source attribute". I dont understand what this error is about.
    Can someone please help? Thanks in advance.
    -Regards,
    Raj Patil

    sounds like you need to verify your dimensional usage tab to verify the relationships between dim and fact on the measure group. 
    Hi Talktorajpatil,
    As Jon said, you can verify the relationships between dim and fact on the measure group on the dimensional usage tab. Use this section to define how you "join" your measure groups to your dimensions.  There may be a Dimension-Measure Group relationship
    that is defined using the wrong attributes and you'll need to select the correct attributes to link the Dimensions to the measure groups. Here are some similar thread for your reference.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/74203b66-8a71-4681-8e47-8f99cce87b3d/error-on-the-measure-group-which-do-not-match-the-data-type-of-the-key-column?forum=sqlanalysisservices
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/2421058d-fd4a-44b8-8c7c-b0b349bbef2d/measure-group-attribute-key-column-does-not-match-source-attribute?forum=sqlanalysisservices
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

  • A method of grouping a total count of errors by date

    Dear SQL Gurus,
    Can anyone guide me (with the script below) as to how I'm can group a total count of error by DISTINCT(CREATION_DATE)?
    11g Enterprise Edition Release 11.2.0.2.0
    SCRIPT:
    select
    CREATION_DATE, request_id, rpad (regexp_substr(summary,'[^\.|^:]+'), 60, '_') as "iCash Dep Error Summary",count(*)
    from BKS_OM.bks_icash_dep_errors
    group by CREATION_DATE, request_id, regexp_substr(summary,'[^\.|^:]+');
    RESULTS:
    CREATION_DATE REQUEST_ID iCash Dep Error Summary COUNT(*)
    02-JUL-12 415967 Validation Failure__________________________________________ 1
    02-JUL-12 415967 Validation Failure__________________________________________ 1
    02-JUL-12 415967 Validation Failure__________________________________________ 1
    02-JUL-12 415967 Validation Failure__________________________________________ 1
    02-JUL-12 415967 Validation Failure__________________________________________ 2
    06-JUL-12 417699 Validation Failure__________________________________________ 1
    06-JUL-12 417699 Validation Failure__________________________________________ 1
    06-JUL-12 417773 Validation Failure__________________________________________ 16
    02-JUL-12 415967 Validation Failure__________________________________________ 1
    06-JUL-12 417773 Validation Failure__________________________________________ 1
    Regards,
    DIBS812
    Edited by: DIBS812 on Aug 3, 2012 10:51 AM

    That did the trick John. Thank you for providing me the solution.
    Thanks everyone for your response!
    select trunc(creation_date), request_id,
    rpad(regexp_substr(summary,'[^\.|^:]+'), 60, '_') as "iCash Dep Error Summary",
    count(*)
    from bks_om.bks_icash_dep_errors
    group by trunc(creation_date), request_id, regexp_substr(summary,'[^\.|^:]+');
    TRUNC(CREATION_DATE) REQUEST_ID iCash Dep Error Summary COUNT(*)
    19-JUL-12 422601 Validation Failure__________________________________________ 326
    19-JUL-12 423343 Validation Failure__________________________________________ 383
    20-JUL-12 423650 Validation Failure__________________________________________ 439
    02-JUL-12 415967 Validation Failure__________________________________________ 53
    16-JUL-12 421687 Validation Failure__________________________________________ 277
    06-JUL-12 417699 Validation Failure__________________________________________ 21
    10-JUL-12 419189 Validation Failure__________________________________________ 124
    06-JUL-12 417773 Validation Failure__________________________________________ 124
    18-JUL-12 422529 Validation Failure__________________________________________ 269
    19-JUL-12 422894 Validation Failure__________________________________________ 326
    19-JUL-12 422901 Validation Failure__________________________________________ 326
    18-JUL-12 422357 Validation Failure__________________________________________ 277
    19-JUL-12 422865 Validation Failure__________________________________________ 326

  • How To make group wise total in Bex report

    Hi!!! Guru's
    i m doing reporting on SD module, so client wann see the summerised report
    on delivarys, senario is the one sale order having the multiple delivery, so the
    i have to show the total result for all deliverys agianst the purticular sales order
    in one row.i know we can do that at the excel level but hot to do it at the query
    design level.highly appreciate u r help on this.
    wil asign pts for sure,,,
    thanks in adv
    Mohan

    Hi!!! Trippel K
    thanks for reply...
    my Q's is how to make the group wise total means, i m going to genaret the
    report on delivery delays on cube 0SD_C04 (Delivery Service), in that the the date
    is comming from the 2LIS_12_VCITM delivery item data, the schedule line data
    from 2LIS_12_VCSCL, when i m getting according to date wise it showing all data from item level n schedule line, the senario is i have to use date from item level n
    all delivery from schedule line, so any inputs regarding this, plz let me, wil appecite
    u inputs
    thanks in adv
    Mohan

  • Frm-41826: Cannot replace group; columns don't match LOV

    Hi-
    I am Oracle ERP developer.
    frm-41826: Cannot replace group; columns don't match LOV
    this message absolutely don't know .
    please help me.

    If it is being created programatically, you may want to do a find on some of these key words..
    CREATE_GROUP_FROM_QUERY
    POPULATE_GROUP
    SET_LOV_PROPERTY
    They should all be within the same section of code, see what is going on in there.. The code may be trying to use a record group the LOV is not designed for ?

  • MATRIX WITH GROUP     (REPORT TOTAL PROBLEM)

    DEAR FRIENDS,
    I HAVE A PROBLEM IN GROUP ABOVE MATRIX IN THE REPORT TOTAL.
    THE SCENARIO IS THIS...
    VEHICLE : CAR
    ----------------------- WEEK1 WEEK2 WEEK3 TOTAL
    ESTEEM 10 30 40 80
    ZEN 30 40 10 80
    DELUX 40 30 10 80
    SUB TOTAL 80 100 60 240
    VEHICLE : VAN
    ----------------------- WEEK1 WEEK2 WEEK3 TOTAL
    OMNI 10 30 40 80
    OMNIDX 30 40 10 80
    OMNILX 40 30 10 80
    SUB TOTAL 80 100 60 240
    GRAND TOTAL 160 200 120 480.
    IN THIS VEHICLE IS THE GROUP AND WEEK1,WEEK2... IS MATRIX COLUMNS AND ZEN,ESTEEM IS MATRIX ROWS.
    I AM UNABLE TO INCORPORATE THE GRAND TOTAL IN THIS TYPE OF REPORT. I AM USING 10G VERSION 9.0.4.
    PLEAE TELL ME HOW TO DO THAT.
    THANKS
    VENKY.

    If you got your subtotals to work than getting your grand total shouldn't be difficult at all. Your grand total column summaries should be one grouping above where your subtotal column summaries reside. I am guessing this will put them at the report level. Meaning they will not be in a group, just free floating in your data model. Good luck.

Maybe you are looking for

  • Display multiple records into one deliminated record

    If I have a table with two columns such as: create table test( id number(10), name varchar2(30) Say the example data in the table is: id name 1 John 1 David How can I select the data from sqlplus and return the record in the following format 1 John,D

  • Not able to create a Volume Group in the oracle VM server installation

    Hi, I am installing Oracle VM server. In the installtion ( Partition time ), i click on create custom layout and i want to create a / partition as a logical volumn under volume group. But there is no option to create a Volume group actually. So can a

  • Weired issue odd IP's can ping the VIP and even can't on the Nexus 9K switch.

    Hello experts! we have two nexus 9k core, attached to the HP Blade v7000 chasis and VPC configured. All Vlans are HSRP are configured. VPC is configured successfully. But the weird this is that source IP address 10.1.2.3 can ping the dest VIP (on the

  • Vertical streaks on Lumia 820 display

    I see very distinguishable vertical banding and streaks on my Lumia 820. I first noticed them on dark grey backgrounds but now also on e.g. Nokia TV menus. Is this normal?

  • RV220W - Connect to SSL VPN using Win7 Built-In SSTP

    I'm relatively new to establishing VPN connections and I'm having one heck of a time getting everything configured. I'm setting up a RV220W at the office and trying to get VPN steup. I've have gotten Quick VPN connections working using the QuickVPN s