Problem In Grouping

Hi All,
I am having 4 groups say A,B,C and D Recursively.
As you all know i may get any number of values in each group.
While Grouping I have checked the Keep together and Repeat Group Header on Each Page in All the groups.
The situation is,If I am having plenty number of values in the innermost group(i.e group D),
A Blank page is displayed with first group Name(i.e group A) and its value alone.
If i Uncheck the Keep together check box that Group header value alone is displayed in the same page not the others. Its not going to new page.
But however i do the page after tthis everything is fine.
How to get offf the blank page here and to avoid the value display in the same page.
Can anybody help me.
Thanks in advance,
Saravanakumar.

Hi Saravana,
Then you will have to remove keep group together and write a condition in new page before/after to get number of lines in your page.
Write a formula like;
WhilePrintingRecords;
Numbervar x;
x:=x+1;
Place this after your group header 1 (immediate next section)
Write one more formula like :
Whielprintingrecoreds;
Numbervar x:=0;
place this on your group header1
Now based on your x values you try to insert a new page
Thanks,
Sastry

Similar Messages

  • Crytal Report  Problem in Grouping

    I have problem in Group By option of Crystal Report. I have problem using Group By Option by selecting original order instead of  ascending.When i used original order idata is not summarised i.e. not group

    I donot understand  "group by must be according to order" it is ok when  I Select ascending order problem only in when i select original order instead of Ascending order
    Select* From (
    SELECT Top 9000000 'DB1'as 'Expr1000' ,T1.AcctCode,
    CASE WHEN T1.Postable = 'Y' THEN T1.Segment_0 + '' + T1.Segment_1 ELSE T1.AcctCode END 'Expr1002',T1.GrpLine,
    T1.AcctName, ISNULL(T1.FrgnName, 'X')'Expr1004', T0.Debit, T0.Credit, T0.FCDebit, T0.FCCredit,
    T0.SYSDeb, T0.SYSCred, T1.Levels, T1.Postable, T1.ExportCode, T1.ActType, T1.FatherNum,
    T1.GroupMask, T0.DueDate, T0.TransID, T0.RefDate,
    [dbo].[GET_MONTH_ID](T0.RefDate) as 'FY Month',
    [dbo].[GET_YEAR_ID](T0.RefDate) as 'FY Year',
    [dbo].[GET_BEGIN_FY](T0.RefDate) as 'Begin FY',
    [dbo].[GET_BEGIN_MONTH](T0.RefDate) as 'Begin Month',
    [dbo].[GET_END_MONTH](T0.RefDate) as 'End Month'
    FROM Test_C1].[dbo].[JDT1] T0 Right JOIN  [Test_C1].[dbo].[OACT] T1 ON T0.Account = T1.AcctCode order by grpline
    ) as c
    UNION All
    select * From(
    SELECT Top 90000000 'DB2' as 'Expr1000',
    T1.AcctCode,
    CASE WHEN T1.Postable = 'Y' THEN T1.Segment_0 + '' + T1.Segment_1 ELSE T1.AcctCode END 'Expr1002',T1.GrpLine,
    T1.AcctName,
    ISNULL(T1.FrgnName,'X') 'Expr1004',
    isnull(T0.Debit,0)as 'Debit',
    isnull(T0.Credit,0) as 'Credit',
    isnull(T0.FCDebit,0 ) as 'FCDebit',
    isnull(T0.FCCredit,0)as 'FCCredit',
    isnull(T0.SYSDeb,0)as 'SYSDedit',
    isnull(T0.SYSCred,0)as 'SYSCredit',
    T1.Levels,
    T1.Postable,
    T1.ExportCode,
    T1.ActType,
    T1.FatherNum,
    T1.GroupMask,
    T0.DueDate,
    T0.TransID,
    T0.RefDate,
    [dbo].[GET_MONTH_ID](T0.RefDate) as 'FY Month',
    [dbo].[GET_YEAR_ID](T0.RefDate) as 'FY Year',
    [dbo].[GET_BEGIN_FY](T0.RefDate) as 'Begin FY',
    [dbo].[GET_BEGIN_MONTH](T0.RefDate) as 'Begin Month',
    [dbo].[GET_END_MONTH](T0.RefDate) as 'End Month'
    FROM [Test_C2].[dbo].[JDT1] T0
    Right JOIN [Test_C2].[dbo].[OACT] T1 ON T0.Account = T1.AcctCode order by T1.grpline) as d

  • Lync 2013 I have a strange problem concerning group call pickup in lync 2013.the pickup calls on snom 710 having only a second delay, but in lync client it having about 5-7 second Anybody out there having similar problems with call pickup Groups?

    HI
    I have a strange problem concerning  group call pickup  in lync 2013.the pickup calls on snom 710 having only a second delay, but in lync client it having  about 5-7 second
    Anybody out there having similar problems with call pickup Groups?

    Hi,
    Did you meet any other call delay when you using Lync?
    As the issue happen for Lync desktop client, it can be performance issue. Please check if there is any error message from FE Server when the issue happen.
    Also please check if you have updated Lync Server to the latest version, if not, update it and then test again.
    Best Regards,
    Eason Huang  
    Eason Huang
    TechNet Community Support

  • Result set problem with GROUP BY

    hi there, this should be the simplest of queries but.........
    when run, the list size is 13, this is the number of letting units in the table. it appears not to be grouping by the property id.if it was doing this there should only be 8 rows. having said this, the while loop should output the count of each row, it does this 8 times with the correct counts. it then crashes with a invalid curser error. it appears the query is workig correctly but the resultset thinks its got 13 rows when it only has 8.
    accessing ms access db
    using jdbc:odbc
    heres the code
    searchResults = stmt.executeQuery(
    "SELECT Count(*) AS FreeUnits " +
    "FROM letting_units " +
    "GROUP BY letting_units.property_id");
    searchResults.last();
    listSize = searchResults.getRow();
    searchResults.beforeFirst();
    System.out.println(listSize);
    while (searchResults.next())
    System.out.println(searchResults.getString(1));
    hope someone can help me
    cheers
    andy

    It's not the problem with GROUP BY. You should use scrollable result set to move in both directions (forward and backward).
    In your code
    searchResults.beforeFirst(); line may return false. So you will get the searchResults.next() false. Once you move forward in non-scrollable cursor cannot come back. So when you create the statement object use TYPE_SCROLL_INSENSITIVE or TYPE_SCROLL_SENSITIVE constants provided in the ResultSet.

  • Problem with Group policies and Administrator count

    I have one problem with Group policies and Admnistrator count.
    Win XP, Client 4.91, Client Zen 4
    I use DLU for users.
    the Group policies are well applied and i keep them after logout for
    security reasons.
    But my problem is, after logout, the Administrator count becomes this
    Group policies, and the only technique that I use, is to remove the
    repertories c:\windows\system32\GroupPolicy*. Administrator must
    loguing again for having good policies.
    Can you help me?

    Bill,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Problem with "Group By" in Views - Not Displaying the Same for All Users

    We have an Announcements List with its only View being set up to group by a metadata category field. We've done this many times on other kinds of lists and never had a problem. But with this list, about half the users can see only the ungrouped
    set of announcements, whereas others actually see the items within their groups.
    Those with "View" rights only can't see the grouped items - but that appears to be a coincidence as I promoted them to the same rights as others who can see them correctly, and that did NOT solve the problem. Everyone is using the exact same browser.
    Note: the users who do NOT see the groupings see only a single category entry that displays only the name of the category list (but not the names of the actual categories within the category list). All the announcements are grouped under that one
    entry for those users. This display looks exactly like it would if the categories had been left blank when the original announcements were created. But the categories are NOT blank, and the rest of the users can see them just fine, and the announcements display
    within their appropriate groups.
    I can't find anything in the View, the List Settings, or the User Permissions to explain this. What could be causing it, and how can I fix it?

    Browser settings are controlled by central IT and are all identical. 
    The only difference I can detect is the second set of users (that don't see the category options) have only Read rights, whereas those with Contribute (or above) rights can see the categories. It doesn't make
    sense that permissions would affect this, but I can't come up with any other differences.
    Microsoft will not allow me to upload images. it says I can't upload images until they have verified my account, but there is no clue as to how, if or when that might happen. If you can tell me how to fix that, I can provide samples.

  • Problem with Grouping in Interactive Forms by Adobe

    Hey Guys!
    I have a problem using the group function for a table in Interactive Forms by Adobe and I have not found a solution yet, so I hope anybody can help me.
    I've created the table in the LiveCycle Designer using subforms and I want to use the group function for a specific field of my table. Now the problem is that the entries of the table are not shown grouped for the same values of my specific field but there is still one row for each entry. How do I have to edit binding, flow etc. for the subforms of a group?
    I hope anybody can help me or provide me a better solution.
    Thanks in advance.
    Martin

    Hi Otto,
    thanks for your reply.
    I'm sorry the 'grouping function' I've announced is called 'control levels' in English I can set this function for a field of a table in the context of the form in the transaction SFP in SAP. Then in the hierarchy the field is displayed above the group of the other fields of the table. Usually in the form this should lead to a 'grouping' for the specific field so if you have identical values there is just one entry in the form and all the rows that have this value should appear behind. My problem is that there is still one entry in the form for every row.
    Right now I'm using the solution you mentioned with the nested tables but i have some problems with the layout and page breaks (pagination).
    Thanks for your help.
    Martin

  • Problem with Group Bar Chart

    Hi all ,
              i  need help as my requirement is  like i have three values (material,value1,value2) now i want to display data with the help of Group bar chart like for material1 value1 and value2 should be in BAR then again for material 2 value1 and value2 in BAR......  
    right now i am assining  value1 and value 2 to Value column of display template but i am gettin a graph like material1 value1(BAR) material2 value1(BAR) .....  material1 value2(BAR) material2 value2(BAR)...........which value i should set so i should get graph what i mentioned above .
    thanks in advance
    regards,
    Praveen

    Hi,
    Give the material in the label columns...( check with the requirement as the Legend show only the Material )
    Check this also.(May solve your problem)
    Change the type to Bar chart and give the value1 and value 2 in the value columns..
    Hope this may help you...
    Regards,
    Kishore

  • Numbers problem by grouping datas

    Hi, I have  a problem with the newest Numbers. I can not find a way to grouping my Datas, as in Excel 2 seconds data/ subtotal in the Numbers I did not find. I have tried many different ways, but I can not use the buttons by arrange/ grouping. Anybody? Have anybody met this problem too before? How can I use the data grouping?

    you can add a summary table that conditionally sums by catagory like this:
    the table on the left contains the list of transactions (and need not be sorted).  The table on the right is a new table that summrizes the information in the Data table.
    For the table "Summary":
    Column A contains the Category names and column B computes totals.
    B2=SUMIF(Data::$B, A2, Data::$C)
    this is shorthand for select cell B2 and type (or copy and paste from here) the formula:
    =SUMIF(Data::$B, A2, Data::$C)
    select B2 and fill down as needed

  • Label and legend problem in grouped month data pie chart for Crystal XI

    Post Author: mikeyplop
    CA Forum: Charts and Graphs
    Hi all, I have a problem with a pie chart I created based upon monthly figures that were grouped.  The data type is DateTime but I have modified the report to show the date as January 2007, February 2007 etc. etc.  This is all fine and appropriate as it is based on a gouping of all the data into months. However, when I chart the same data the labels and legend do not reflect this formatting.  Instead they show up as 01/2007, 02/2007 etc. etc. I have searched the forums, but was unable to find any one else who has had the same problem. Any help would be greatly appreciated. Kind regards, Mikey

    Post Author: training2go
    CA Forum: Charts and Graphs
    I've still been trying to get this to work or at least figure out what I'm doig wrong, but so far I haven't had any luck, so I'm hoping someone can help me.

  • Permission Problem with Group Drop Box in Dock

    I THOUGHT I created write-only drop boxes for my students on their docks. They're able to drop their documents into it correctly, however, they can also open the group folder and see each others' folders by double clicking on it. I thought I had locked this down by setting the student permission to read-only in Sharing. How do I make the drop box write-only? I'm using OS X.3.9 Server.
    iMac G4   Mac OS X (10.3.9)  

    Having the exact same problem here with MAC NFS server running Tiger. Mac clients work fine, but same user on a Linux NFS client ignores group permissions.

  • Problem with Group and SubGroup

    Hi All,
    I have one problem in sql statement. I got two tables, PARTY and SUBGROUP.
    <<party>>
    party     group     subgroup;
    WG009     xx     zzz
    <<subgroup>>
    party     group     subgroup;
    WG009     xx     yy
    I have to write a query which gives the result that 'zzz' is not in subgroup table where xx=xx from subgroup.group and party.group. I have written the statement like this, but its not working properly becuase its returning all the records from subgroup.
    SELECT P_CODE, SG_CAT, P_CAT, P_SUB_CAT, SG_CODE FROM PARTY, SUB_GROUP WHERE P_CAT=SG_CAT AND SG_CODE != P_SUB_CAT AND P_CODE='WG009';
    P_CODE SG_CAT P_CAT P_SUB_CAT SG_CODE
    WG009 DWD DWD ANIL SHAH GADAGE
    WG009 DWD DWD ANIL SHAH JAIN FAMILY
    WG009 DWD DWD ANIL SHAH DEDHIA
    Is any body have Idea.
    SKM

    select party,group,subgroup from party
    minus
    select party,group,subgroup from subgroup;

  • Problem with Grouping Tag in iTunes

    Hi,
    I am trying to use getID3 to read the 'Grouping' tag from iTunes. It would seem that iTunes is writing these tags to my MP3 files, as, when I open them in Media Rage the Grouping Tag shows up OK. However, when I then upload the tracks to my server and use 'content_group_description' to read these tags (the getid3 code for the 'Grouping' tag, nothing shows up. If however, I change the Grouping Tag in Media Rage, and then re-upload, the Grouping Tag does show up.
    I wonder if someone could help me troubleshoot why this is happening. I would rather not have to retag all of my files in Media Rage if possible.
    Thanks,
    Nick

    After further investigation it would seem that the Grouping Tag is preserved such that getid3 can read it for the original files in my iTunes library.  The problem occurs with files are converted using iTunes (from higher bitrate to lower bitrate MP3s).  For these files, the Grouping Tag shows up in Media Rage, but cannot be read by getid3.  If anyone has an idea why this might be, and what I can do to resolve this issue, I'd be glad to hear of it.
    Thanks,
    Nick

  • Anyone else having problems with group messages in iOS 7?

    Upgrade to iOS7 went fine. Everything worked smoothly up until about 6:30pm Central time. Can't send/receive group messages in iMessage. Anyone else?
    Not sure if this is a problem with my phone or iMessage.

    It has failed to work on two of my iOS devices. I am using air 2.6.
    This is my code:
    Bookmark = SharedObject.getLocal("bookmarkData", "/");
    if (Bookmark.data == undefined){
         Bookmark.data['lessonIndex'] = 0;
    lessonIndex = Bookmark.data['lessonIndex'];
    LessonIndex is always 0 at the start of the program. This is a product killing problem. If I cannot resolve this 3 years of work has just been flushed down the toilet.

  • Problem with GROUP BY/HAVING in Sybase -- Oracle Migration

    Having problem converting SQL from Sybase to Oracle. The SQL statement in Sybase does
    not work in Oracle (ORA-979). When make changes the Oracle result is incorrect. Oracle Version
    is 8.1.6.3.
    #1 Sybase
    SELECT
    BIRTHDTE, FSCDTE, MINCDE, RETDISDTE, RETOPTDTE, RETPLAN,
    RMPAYSTAT, RSCDTE, SEX, SSN, VETPREF, VIETVETIND, MAX(OBS_DATE)
    FROM wims3.adm_new_stscrnt ans, wims3.tt_t_ssn2 t
    WHERE (t.newssn = ans.SSN)
    GROUP BY
    SSN
    HAVING obs_date = MAX(obs_date);
    Result = 19,567 (Correct)
    #2 Oracle (8.1.6.3)
    SELECT
    BIRTHDTE, FSCDTE, MINCDE, RETDISDTE, RETOPTDTE, RETPLAN,
    RMPAYSTAT, RSCDTE, SEX, SSN, VETPREF, VIETVETIND, MAX(OBS_DATE)
    FROM wims3.adm_new_stscrnt ans, wims3.tt_t_ssn2 t
    WHERE (t.newssn = ans.SSN)
    GROUP BY
    SSN
    HAVING obs_date = MAX(obs_date);
    Result = ORA-00979 not a Group By expression
    #3 Oracle
    SELECT
    BIRTHDTE, FSCDTE, MINCDE, RETDISDTE, RETOPTDTE, RETPLAN,
    RMPAYSTAT, RSCDTE, SEX, SSN, VETPREF, VIETVETIND, MAX(OBS_DATE)
    FROM wims3.adm_new_stscrnt ans, wims3.tt_t_ssn2 t
    WHERE (t.newssn = ans.SSN)
    GROUP BY
    OBS_DATE, BIRTHDTE, FSCDTE, MINCDE, RETDISDTE, RETOPTDTE, RETPLAN,
    RMPAYSTAT, RSCDTE, SEX, SSN, VETPREF, VIETVETIND
    HAVING obs_date = MAX(obs_date);
    Result = 19,598 (incorrect count)
    Possible suggestions?

    SELECT
    BIRTHDTE, FSCDTE, MINCDE, RETDISDTE, RETOPTDTE, RETPLAN,
    RMPAYSTAT, RSCDTE, SEX, SSN, VETPREF, VIETVETIND, OBS_DATE
    FROM wims3.adm_new_stscrnt ans, wims3.tt_t_ssn2 t
    WHERE (t.newssn = ans.SSN)
    AND obs_date = (select MAX(obs_date) from wims3.adm_new_stscrnt ans2, wims3.tt_t_ssn2 t2 where ...)
    ... should be the primary key-where

  • Problems with GROUP BY - not a GROUP BY expression

    Hello,
    I am fighting little bit with GROUP BY expression.
    After some tests I am able to reduce the problem to following...
    When can I use column numbers in GROUP BY expression?
    Consider this situation:
    CREATE TABLE EMP4 (
       NAME VARCHAR2(10)
    COMMIT;
    INSERT INTO EMP4 VALUES('Tamara');
    INSERT INTO EMP4 VALUES('John');
    INSERT INTO EMP4 VALUES('Joseph');
    COMMIT;
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY 1;
    00979. 00000 -  "not a GROUP BY expression"
    -- This is working
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY NAME;Why is the GROUP BY 1 not workig?
    I am using the GROUP BY 1 because in real query there is some PL/SQL function which somehow modifies the column NAME, so I can't use the column name
    SELECT TEST_PACKAGE.AppendSomeCharacter(NAME), COUNT(*)
    FROM EMP4
    GROUP BY 1;Of course I can nest the query and move the COUNT and GROUP BY to outer query or maybe something else, but I was just curious why is the GROUP BY not working...
    Also in real query, there are 3 columns in the GROUP BY expression, so I have there GROUP BY 1, 2, 3
    Thanks for help

    hai
    try the following
    CREATE TABLE TBL(ID NUMBER,VAL VARCHAR(20));
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    CREATE TYPE SAMPLETYPE AS OBJECT ( ID NUMBER, NAME
    VARCHAR2(25) ) ;
    CREATE TYPE SAMPETBLTYPE AS TABLE OF SAMPLETYPE;
    CREATE OR REPLACE FUNCTION SAMPLEFUNC
    p_colname varchar2
    )return SAMPETBLTYPE pipelined as
    ret_val SAMPLETYPE;
    TYPE cursor_ref IS REF CURSOR;
    fcur cursor_ref;
    di TBL%ROWTYPE;
    sqlstr varchar2(1000);
    colname varchar(30):=p_colname;
    begin
    sqlstr:='SELECT * FROM TBL ORDER BY '|| colname ;
    DBMS_OUTPUT.PUT_LINE(sqlstr);
    open fcur FOR sqlstr;
    loop
    FETCH fcur INTO di;
    EXIT WHEN fcur%NOTFOUND;
    ret_val:=SAMPLETYPE(di.ID,di.VAL);
    PIPE ROW(ret_val);
    end loop;
    close fcur;
    return;
    end;     
    select * from table(SAMPLEFUNC('ID'));
    select * from table(SAMPLEFUNC('VAL'));

Maybe you are looking for

  • Information field for a drop down list

    Hi, I have a drop down list that is a list of abbreviated codes.  I would like to have a "?" box beside them that when the user clicks on it, it pops up an information box that shows the Description for each abbreviated code.  Alternatively the drop

  • Java DC calling Operation on Entity Service

    I have three entities (Entity Services) and one Application Service. Application Service needs a operation to pull data from each entity based on the input parameter (name, type String). The operation, builds an object with attributes from all three

  • MBP original battery

    my battery has not held a charge for some time, and when i moved my laptop, i realized that the battery back itself is coming unsealed at the edges, and no longer actually goes in properly. is it going to leak or burn? is this a heat related problem,

  • 8330 Call Forwarding​...How do I set the number of rings before calls are forwarded?

    8330 Call Forwarding...How do I set the number of rings before calls are forwarded? Right now it instantly forwards my calls but I don't want that. I want to change it so that let's say that if after 5 rings I don't answer the call is forwarded. I've

  • Deleting original apps

    I just received a new iPod Touch. It came with the Stocks app and a few others I'm not really into. How do I delete an app that is already on my iPod? There is no delete circle like there is on apps I have added myself. Thanks!!