Applying color groups to grouped art gets randomized

Hey Guys,  I've been fighting with this issue for a bit over here.
I have a collection of color groups, that I am applying to grouped objects,
but every time I change out the color group, it randomizes the order which
the colors are applied.
In the kind of bulk work I'm doing, its really turning into an hours burner.
The specific process I'm using (I've tried several different ways with the same result)
1) Draw my art
2) Group the art
3) Create a new color group with my art selected.
4) Double click the color group and recolor.
5) Save the swatches
----- so far so good
6) Double Click a different color group (or select from the Recolor panel)
-- here the other color group (swatches) get applied, but every time I do it, the order of which color is applied to

In Xara Designer Pro one can name colors, which means one can change the named colors--and all tints of colors associated with it, and change them. Not quite the same request as above, but it is an incredibly handy function. But I don't use it much as I don't do variations.
A friend of mine does, though. He illustrates cars for large format printing to be framed by his customers. Ron Duke is the artist.
Changing from the named colors is pretty quick. The above, with the exception of the roof and exhaust changes, takes seconds to change the body color and glass tinting.
Take care, Mike

Similar Messages

  • Duplicate Groups and how to get rid of them

    Somehow (maybe by having sync from iTunes and from MobileMe I have duplicate groups of calendars and contacs. With the same information in each group, I can't get rid of one set or the other. How can I do that and which one should I get rid of (if there's a choice)?

    If you are syncing contacts and calendar events over the air with your MobileMe account on your iPhone, if you also sync contacts and calendar events direct with the Address Book and iCal on your Mac via the iTunes sync process, this does nothing but duplicate your contacts and calendar events on your iPhone.
    Prior to firmware update 3.0, it wasn't possible to sync contacts and calendar events over the air with a MobileMe account and/or with an Exchange account and sync contacts and calendar events direct with a supported application on your computer via the iTunes sync process. Apple included the ability to do both primarily for those syncing business contacts and calendar events over the air with an Exchange account who also wanted to sync personal contacts and calendar events direct with a supported application on a personal computer at home via the iTunes sync process. When doing so, you can view business and personal contacts and calendar events combined or separately. When doing this with a MobileMe account, this does nothing but duplicate the contacts and calendar events on your iPhone.
    To get rid of the duplicates, deselect sync contacts and calendar events direct with the Address Book and iCal on your Mac under the Info tab for your iPhone sync preferences followed by selecting Apply.
    On your iPhone, go to Settings > Mail, Contacts, Calendars. Select your MobileMe account.
    Turn Contacts and Calendars off for over the air syncing.
    A warning message will be provided indicating this will erase all contacts and calendar events downloaded from and kept synchronized with your MobileMe online address book and calendar along with an option to store this data locally on your iPhone. Decline the prompt to store this data locally on your iPhone.
    This will not erase the contacts and calendar events on your iPhone that were synced direct with the Address Book and iCal on your Mac via the iTunes sync process.
    Follow this by turning Contacts and Calendars back on for over the air syncing. You will be provided a merge prompt, which you want to select.
    This will get rid of the duplicates on your iPhone.

  • Photoshop coloring and layer group issue

    Hello there this is my very first post but I really need some advice here.
    I am using WIndows 7, I have Photoshop CS5.5 and am improving a bit in my digital illustration/coloring. I was experimenting with organization by using layer groups. When I did this and began to work on the colors, I noticed them behaving very poorly. For one thing, they always came out brighter than I intended. No matter how I tried to darken the colors, they always either fixed to a certain tint or just got brighter when I tried to darken them. I noticed them interacting with the colors on all of the other layers, even with layers outside of the group. So to get around that I tried erasing wherever colors overlapped. This did not help, it only removed the mixing of colors, I still have really bright colors on everything I paint. I did notice though that when outside of a layer group, all of the colors behaved normally! Yes I know I can just keep the colors out of the group folder to fix the problem, but I want to learn from this experience. Why do the colors misbehave within layer groups? Why do they respond with a transparent nature(for lack of a better term)? And is there a way around that?
    I did check the opacity of everything and everything was at 100%. I did checkk the blending mode of the group and the individual layers, I had them all set to normal.

    Hi CorbinWells
    It sounds like your brush mode may have been changed to screen or brighten. It sould be set to normal to get your desired results.
    I understand that you said all your layers and groups are set to normal. So I the above solution might help. If not, please attach some screenshots so we can understand more what's going on.

  • Applied 55% transparency to group of objects, but a placed .eps file is darker than things created natively in InDesign

    hey guys,
    I'm working on a math book and for some reason, my placed .eps files (which are used for equations) are appearing darker than the other items when set to 55% opacity. I've ensured that everything is set to 100% opacity before grouping, then grouped and set to 55%. My only thought is maybe the eps is RGB when the other things are CMYK...and if this is the case, I'm not sure how to test / fix it. Other than that idea, I have no clue as to where to begin in addressing this issue.
    The cheese is real with this example.
    You can see here that I'm applying the 55% opacity to the entire group. I've also ungrouped all of the objects, made sure they're at 100% opacity, then grouped and set to 55%.
    You can see here that the text is 100% black.
    Thanks!

    Sorry, I Googled around a bit, but not quite sure what you mean by distilling the PDF. I've exported the PDF as a "High Quality PDF", and the issue still persists there. Should I alter the PDF export options some?

  • My icloud email address is included in a friend's address group set up in Gmail.  When they send an email to the group, the email never gets through to my icloud address - why?

    My icloud email address is included in a friend's address group set up in Gmail.  When they send an email to the group, the email never gets through to my icloud address - why?

    They've always been able to send to me individually - just not when my email is part of a group or even when it's just included with several other addresses added one at a time.

  • Drag and drop to apply color to art.

    Hi All,
    I am designing a panel for Illustrator CS6 that displays colors in a datagrid as follows,
    [Color] [Color_Name]
    I want to be able to apply color to any art by using the drag-n-drop from the panel to the document. Is it possible that I am able to detect the art on which the color was dropped so that I can apply the color?
    Thanks!

    I came upon the NativeDragManager class of the CS Extension. We can use it to drag and drop objects from the panel to the application document. For this we use the ClipBoard and specify the format of the clipboard data. There are quite a few formats, namely, bitmap, text, url, file, etc. However, I couldn't use any of these so that I might drag a color from my panel to the document.
    Here is a code to drag and drop a text from panel to document,
    var clip:Clipboard = new Clipboard();
    clip.setData(ClipboardFormats.TEXT_FORMAT, designsDG.selectedItem.Colors);
    var allowedActions:NativeDragOptions = new NativeDragOptions();
    NativeDragManager.doDrag(designsDG.selectedItem as InteractiveObject, clip);
    Here designsDG is the datagrid containing the text.
    How can I do something similar for a color object?
    Any inputs?

  • When I use Thunderbird with Yahoo Groups, Google groups, and other email lists, I don't get a copy of my own emails back from the list (I do with Mail.app)...?

    When I use Thunderbird with Yahoo Groups, Google groups, and other email lists, I don't get a copy of my own emails back from the list. I *do* when I use Mail, so it seems like a Thunderbird thing. I'd really like to see my own emails come back to me in the conversation so that I know where my remarks fall in the discussion; it's very disorienting when you can't tell if your email has arrived at the list, or not. I can't seem to find the setting, and I've searched thru your help topics, etc., to no avail. Thanks.

    It's both gmail and mac.com email accounts, and it's all email lists -- including some privately hosted on servers, that are not Google groups, not Yahoo groups.
    I'm not sure what you mean by "saving a copy of your messages yourself" in Mail -- if I email to the lists with Mail on my laptop or iPad, I can see it on my desktop computer too, right in line with other email messages in the thread, after the list resends the message I've submitted. It's only Thunderbird that this "invisible posts" behavior happens, and it didn't use to happen this way. I used to get my emails posting right in the thread.

  • Average getting calculated incorrectly using group by grouping sets

    Hi All
    I am using the group by grouping sets to calulate the running totals of aggregate functions like count, sum & avg.
    I get the grand totals of count & sum perfectly right but with avg i am getting the averages incorrectly as the number of rows retrieved by the select query increases.
    With few rows (3-4) the averages are round about correct but when the number of rows retreived increase say 5 or more than 5 I get absurd average figures
    Here is the query I am using
    <code>
    select AGENT.NAME,
         sum(decode(ACTIVITY.status,'New',1)) cnt,
                   sum(decode(ACTIVITY.status,'Open',1)) sumopen ,
         round(avg( decode (ACTIVITY.status,'Open',ACTIVITY.STATUS_DIFF)),0) avgopen,
              sum(decode(ACTIVITY.status,'Sent',1)) sumsent,
         round(avg( decode (ACTIVITY.status,'Sent',ACTIVITY.STATUS_DIFF)),0) avgsent,
                   sum(decode(ACTIVITY.status,'Dead',1)) sumdead,
         round(avg( decode (ACTIVITY.status,'Dead',ACTIVITY.STATUS_DIFF)),0) avgdead
                   from ACTIVITY, REQUEST , AGENT
                   where
                   REQUEST.DEALER_NUMBER = AGENT.DEALER_ID
                   and REQUEST.CONFIRMATION='Y'
                   and REQUEST.REQUEST_ID = ACTIVITY.REQUEST_ID
                   and REQUEST.REQUEST_TYPE='B'
                   and ACTIVITY.ACTIVITY_DATE between to_date('2006-01-01 ','YYYY-MM-DD') and to_date('2006-08-31','YYYY-MM-DD')
                   group by grouping sets((AGENT.DEALER_ID,AGENT.NAME), ())
    </code>
    Do let me know your suggestions
    Regards

    Not sure but may be
    See below query
    SQL> SELECT deptno,ROUND(AVG(sal))
      2  FROM emp
      3  GROUP BY ROLLUP(deptno,sal+rownum);
        DEPTNO ROUND(AVG(SAL))
            10            1300
                          2450
                          5000
                         "2917"      ---Sub total
           20             800
                          1100
                          2975
                          3000
                          3000
                         "2175"      ---Sub total 
          30               950
                          1250
                          1250
                          1500
                          1600
                          2850
                         "1567"    ---Sub total
                         "2073"   ----Grand total
    18 rows selected.
    Now you want
    SQL> SELECT (2917+2175+1567)/3 FROM dual;
    (2917+2175+1567)/3
            2219.66667
    While it is
    SQL> SELECT ROUND(SUM(sal)/COUNT(*)) FROM emp;
    ROUND(SUM(SAL)/COUNT(*))
                        2073Khurram

  • Frequently I send an email to multiple contacts.....I'm constantly changing my selection of multiple contacts so using the "group" function doesn't get the job done.......so how can I go through m

    I guess I was not clear.....my fault....let me re-phrase:  frequently I send an email to multiple contacts.....I'm constantly changing my selection of multiple contacts so using the "group" function doesn't get the job done.......so how can I go through my list of contacts and quickly select those contacts that I want to receive that particular email....thx  

    You need an app that allows group messaging. Enter group messenger in the search bar in the app store.

  • When I group message, my daughter gets them on her iphone too. How can I change that?

    When I group message, my daughter gets them on her iphone too. How can I change that?

    Get her a different Apple ID to use on her iPhone.

  • Commision based on item group & customer group

    Dear all,
    Does anyone have an idea about how to get commission based on item group & customer group sales?
    My customer wanted commission report based on item group or customer group & based on payment collection dated.
    Example
    Term given for customer A is 30 days.
    12/3/09 Inv 1000   RM 10,000   30 days payment
    20/4/09 Inv 2000  RM    5,000   60 days payment
    The term given is 30 days of the invoice month.
    Salesman will get commission if get the collection at May'09 for Inv 1000, & July'09 for iinv 2000 based on the invoice date month.
    The salesman get commission at any date of the month May'09. More longer collection, less commission they will get.
    Example:
    Salesman A
    Customer Group             1st of the month, 2nd of the month, 3rd of the month, 4th of the month
    Normal Dealer                         1.5%         ,  0.75%,              0.00%                   ,    -0.25%
    Sub Distributor                       0.5%         ,  0.25%,               0.00%                  ,    - 0.25%
    Any idea?
    Thanks in advance?
    Regards,
    Eric Tan

    Hi Eric
    SAP does not calculate commissions, but merely provide a mechanism to report on it. The multi level calculation you require can be achived with a custom query linked to a report layout. Standard SAP will not provide this type of calculation. You will need to look at the open transactions such as invoices and link to the relevant payment transaction to get the payment date. Then compare this date to the invoice due date to determine if the terms were adhered to or not. If not payment date - due date in number of days will be needed to calculate the effective commission percentage.
    Kind regards
    Peter Juby

  • Group and Group counter in Routing

    Hi all,
    what is group and group counter in routing , how these are used in routing , please explain.
    Regards,
    Joseph.

    Dear Joseph,
    1.Each routing is stored against a group and group counter no.
    2.When we create routing without respect to any material and only by giving the plant,the set of operations gets saved under one
    group counter and group no.
    4.Many materials can be assigned to this same group and group counter no,so that the routing is valid for all the materials included.
    5.When you create a routing for material specific,the set of operation gets saved in a group no and group counter no as 01,when
    you create another routing with another set of operations for the same material,plant and task list combination now the group no
    remains same and the group counter gets saved under 02.
    6.This data can be further helpful in assigning the routing data in the production version,.
    Check and revert
    Regards
    S Mangalraj

  • Group by groups

    I have a bunch of data I need to transform and "group by groups." Let me explain by an example:
    SQL> create table orig_data as
      2  select distinct job, deptno
      3  from scott.emp e
      4  /
    Table created.
    SQL> select job
      2       , deptno
      3    from orig_data
      4   order by
      5         job
      6       , deptno
      7  /
    JOB           DEPTNO
    ANALYST           20
    CLERK             10
    CLERK             20
    CLERK             30
    MANAGER           10
    MANAGER           20
    MANAGER           30
    PRESIDENT         10
    SALESMAN          30
    9 rows selected.The real-world data is about 5 million rows.
    First I group by job (I use xmlagg here because I am on version 11.1 and therefore no listagg ;-) ):
    SQL> select od.job
      2       , rtrim(xmlagg(xmlelement(d,od.deptno,',').extract('//text()') order by od.deptno),',') deptnos
      3    from orig_data od
      4   group by od.job
      5  /
    JOB       DEPTNOS
    ANALYST   20
    CLERK     10,20,30
    MANAGER   10,20,30
    PRESIDENT 10
    SALESMAN  30I notice here that both job CLERK and MANAGER has the same set of deptnos.
    So if I group by deptnos I can get this result:
    SQL> select s2.deptnos
      2       , rtrim(xmlagg(xmlelement(j,s2.job,',').extract('//text()') order by s2.job),',') jobs
      3    from (
      4     select od.job
      5          , rtrim(xmlagg(xmlelement(d,od.deptno,',').extract('//text()') order by od.deptno),',') deptnos
      6       from orig_data od
      7      group by od.job
      8         ) s2
      9   group by s2.deptnos
    10  /
    DEPTNOS                        JOBS
    10                             PRESIDENT
    10,20,30                       CLERK,MANAGER
    20                             ANALYST
    30                             SALESMANMy requirement is to identify all such unique groups of deptnos in my orig_data table, give each such group a surrogate key in a parent table, and then populate two child tables with the deptnos of each group and the jobs that have that group of deptnos:
    SQL> create table groups (
      2     groupkey number primary key
      3  )
      4  /
    Table created.
    SQL> create table groups_depts (
      2     groupkey number references groups (groupkey)
      3   , deptno number(2)
      4  )
      5  /
    Table created.
    SQL> create table groups_jobs (
      2     groupkey number references groups (groupkey)
      3   , job varchar2(9)
      4  )
      5  /
    Table created.For the surrogate groupkey I can just use a rownumber on my group by deptnos query:
    SQL> select row_number() over (order by s2.deptnos) groupkey
      2       , s2.deptnos
      3       , rtrim(xmlagg(xmlelement(j,s2.job,',').extract('//text()') order by s2.job),',') jobs
      4    from (
      5     select od.job
      6          , rtrim(xmlagg(xmlelement(d,od.deptno,',').extract('//text()') order by od.deptno),',') deptnos
      7       from orig_data od
      8      group by od.job
      9         ) s2
    10   group by s2.deptnos
    11  /
      GROUPKEY DEPTNOS                        JOBS
             1 10                             PRESIDENT
             2 10,20,30                       CLERK,MANAGER
             3 20                             ANALYST
             4 30                             SALESMANThat query I can use for a (slow) insert into my three tables in this simple manner:
    SQL> begin
      2     for g in (
      3        select row_number() over (order by s2.deptnos) groupkey
      4             , s2.deptnos
      5             , rtrim(xmlagg(xmlelement(j,s2.job,',').extract('//text()') order by s2.job),',') jobs
      6          from (
      7           select od.job
      8                , rtrim(xmlagg(xmlelement(d,od.deptno,',').extract('//text()') order by od.deptno),',') deptnos
      9             from orig_data od
    10            group by od.job
    11               ) s2
    12         group by s2.deptnos
    13     ) loop
    14        insert into groups values (g.groupkey);
    15
    16        insert into groups_depts
    17           select g.groupkey
    18                , to_number(regexp_substr(str, '[^,]+', 1, level)) deptno
    19             from (
    20                    select rownum id
    21                         , g.deptnos str
    22                      from dual
    23                  )
    24           connect by instr(str, ',', 1, level-1) > 0
    25                  and id = prior id
    26                  and prior dbms_random.value is not null;
    27
    28        insert into groups_jobs
    29           select g.groupkey
    30                , regexp_substr(str, '[^,]+', 1, level) job
    31             from (
    32                    select rownum id
    33                         , g.jobs str
    34                      from dual
    35                  )
    36           connect by instr(str, ',', 1, level-1) > 0
    37                  and id = prior id
    38                  and prior dbms_random.value is not null;
    39
    40     end loop;
    41  end;
    42  /
    PL/SQL procedure successfully completed.The tables now contain this data:
    SQL> select *
      2    from groups
      3   order by groupkey
      4  /
      GROUPKEY
             1
             2
             3
             4
    SQL> select *
      2    from groups_depts
      3   order by groupkey, deptno
      4  /
      GROUPKEY     DEPTNO
             1         10
             2         10
             2         20
             2         30
             3         20
             4         30
    6 rows selected.
    SQL> select *
      2    from groups_jobs
      3   order by groupkey, job
      4  /
      GROUPKEY JOB
             1 PRESIDENT
             2 CLERK
             2 MANAGER
             3 ANALYST
             4 SALESMANI can now from these data get the same result as before (just to test I have created the desired data):
    SQL> select g.groupkey
      2       , d.deptnos
      3       , j.jobs
      4    from groups g
      5    join (
      6           select groupkey
      7                , rtrim(xmlagg(xmlelement(d,deptno,',').extract('//text()') order by deptno),',') deptnos
      8             from groups_depts
      9            group by groupkey
    10         ) d
    11         on d.groupkey = g.groupkey
    12    join (
    13           select groupkey
    14                , rtrim(xmlagg(xmlelement(j,job,',').extract('//text()') order by job),',') jobs
    15             from groups_jobs
    16            group by groupkey
    17         ) j
    18         on j.groupkey = g.groupkey
    19  /
      GROUPKEY DEPTNOS                        JOBS
             1 10                             PRESIDENT
             2 10,20,30                       CLERK,MANAGER
             3 20                             ANALYST
             4 30                             SALESMANSo far so good. This all works pretty much as desired - except for a couple of things:
    The very simple loop insert code will be slow. OK, it is a one-time conversion job (in theory, but very few times at least) so that could probably be acceptable (except for my professional pride ;-) .)
    But worse is, that I have groups where the string aggregation won't work - the string would have to be about varchar2(10000) which won't work in SQL in the group by :-( .
    So I have tried an attempt using collections. First a collection of deptnos:
    SQL> create type deptno_tab_type as table of number(2)
      2  /
    Type created.
    SQL> select od.job
      2       , cast(collect(od.deptno order by od.deptno) as deptno_tab_type) deptnos
      3    from orig_data od
      4   group by od.job
      5  /
    JOB       DEPTNOS
    ANALYST   DEPTNO_TAB_TYPE(20)
    CLERK     DEPTNO_TAB_TYPE(10, 20, 30)
    MANAGER   DEPTNO_TAB_TYPE(10, 20, 30)
    PRESIDENT DEPTNO_TAB_TYPE(10)
    SALESMAN  DEPTNO_TAB_TYPE(30)All very good - no problems here. But then a collection of jobs:
    SQL> create type job_tab_type as table of varchar2(9)
      2  /
    Type created.
    SQL> select s2.deptnos
      2       , cast(collect(s2.job order by s2.job) as job_tab_type) jobs
      3    from (
      4     select od.job
      5          , cast(collect(od.deptno order by od.deptno) as deptno_tab_type) deptnos
      6       from orig_data od
      7      group by od.job
      8         ) s2
      9   group by s2.deptnos
    10  /
    group by s2.deptnos
    ERROR at line 9:
    ORA-00932: inkonsistente datatyper: forventede -, fik XAL_SUPERVISOR.DEPTNO_TAB_TYPENow it fails - I cannot group by a collection datatype...
    I am not asking anyone to write my code, but I know there are sharper brains out there on the forums ;-) .
    Would anyone have an idea of something I might try that will allow me to create these "groups of groups" even for larger groups than string aggregation techniques can handle?
    Thanks for any help, hints or tips ;-)

    The "group-by-collection" issue can be solved by creating a container object on which we define an ORDER method :
    SQL> create type deptno_container as object (
      2    nt deptno_tab_type
      3  , order member function match (o deptno_container) return integer
      4  );
      5  /
    Type created
    SQL> create or replace type body deptno_container as
      2    order member function match (o deptno_container) return integer is
      3    begin
      4      return case when nt = o.nt then 0 else 1 end;
      5    end;
      6  end;
      7  /
    Type body created
    Then a multitable INSERT can do the job, after unnesting the collections :
    SQL> insert all
      2    when rn0 = 1 then into groups (groupkey) values (gid)
      3    when rn1 = 1 then into groups_jobs (groupkey, job) values(gid, job)
      4    when rn2 = 1 then into groups_depts (groupkey, deptno) values(gid, deptno)
      5  with all_groups as (
      6    select s2.deptnos
      7         , cast(collect(s2.job order by s2.job) as job_tab_type) jobs
      8         , row_number() over(order by null) gid
      9    from (
    10      select od.job
    11           , deptno_container(
    12               cast(collect(od.deptno order by od.deptno) as deptno_tab_type)
    13             ) deptnos
    14      from orig_data od
    15      group by od.job
    16    ) s2
    17    group by s2.deptnos
    18  )
    19  select gid
    20       , value(j) job
    21       , value(d) deptno
    22       , row_number() over(partition by gid order by null) rn0
    23       , row_number() over(partition by gid, value(j) order by null) rn1
    24       , row_number() over(partition by gid, value(d) order by null) rn2
    25  from all_groups t
    26     , table(t.jobs) j
    27     , table(t.deptnos.nt) d
    28  ;
    15 rows inserted
    SQL> select * from groups;
      GROUPKEY
             1
             2
             3
             4
    SQL> select * from groups_jobs;
      GROUPKEY JOB
             1 SALESMAN
             2 PRESIDENT
             3 CLERK
             3 MANAGER
             4 ANALYST
    SQL> select * from groups_depts;
      GROUPKEY DEPTNO
             1     30
             2     10
             3     10
             3     30
             3     20
             4     20
    6 rows selected
    Works great on the sample data but how this approach scales on a much (much) larger dataset is another story :)

  • GROUP BY grouping sets

    Hello everybody,
    I have this query
    SELECT ALL
                M_PAGAMENTO||' '||D_TIPO MPAGA,
                grouping(F.KIND_F),
                DECODE (grouping(F.KIND_F), 0 , 'Totali IVA',F.KIND_F)  a1,
                 case
                 when grouping(F.KIND_F) = 1 then F.KIND_F
                 when grouping(F.KIND_F) = 0 then 'Totali IVA'
                 end  TIPOF,
               F.KIND_F  TIPOF,
               COUNT(*) NFATTURE,
                sum(F.TOT_FT) TFATTURA, sum(F.BOLLO) TBOLLO,
                K_IVA, SUM(FA.IPBFA) TIMP, SUM(FA.IPSFA) TIPS
    FROM A_FATTURE  F,A_PAZIENTI A,TIPOLOGIA_PAGAMENTI p  ,A_FATTURE_ALIQUOTE FA
    where (F.TIPORD = A.TIPORD AND F.K_CODE = A.K_CODE  AND F.ANNO = A.ANNO)
    AND   (FA.TIPORD = F.TIPORD AND FA.K_CODE = F.K_CODE AND FA.ANNO = F.ANNO AND FA.N_FATT_D = F.N_FATT_D)
    and p.ID_TIPO = f.M_PAGAMENTO
    &MYWHERE
    GROUP BY grouping sets (M_PAGAMENTO||' '||D_TIPO,F.KIND_F),K_IVA
    ORDER by  1
    Why I get this result(A1, tipof) = NULL but they would be = 'D' (F.KIND_F ='D'
    MPAGA                    GROUPING(F.KIND_F)     A1     TIPOF     TIPOF     NFATTURE     TFATTURA     TBOLL      K_IVA     TIMP          TIPS
    01 Contante               1                              5          3183,24          7,24     20     250          50
    01 Contante               1                              3          2342,43          5,43     FC     5,43          0
    01 Contante               1                              50          7024,61          9,91     ES     24458,91     0
    02 Assegno               1                              1          780,81          1,81     FC     1,81          0
    02 Assegno               1                              2          816,96          1,81     ES     755,15          0
    02 Assegno               1                              1          780,81          1,81     20     50          10
    04 Carta di credito          1                              1          780,81          1,81     FC     1,81          0
    04 Carta di credito          1                              1          780,81          1,81     20     50          10
    04 Carta di credito          1                              1          780,81          1,81     ES     719          0
                        0     Totali IVA     Totali IVA     D     53          8622,37          23,53     ES     25933,06     0
                        0     Totali IVA     Totali IVA     D     5          3904,05          9,05     FC     9,05          0
                        0     Totali IVA     Totali IVA     D     7          4744,86          10,86     20     350          70where I am wrong?
    thanks for any help

    Rosario,
    Those rows where grouping(f.kind_f) = 1 are superaggregate rows where you are grouping by M_PAGAMENTO||' '||D_TIPO,K_IVA. So f.kind_f doesn't come into play for these rows, and it shows a null value.
    You can of course hard code a 'D' value in there, but values of the f.kind_f column are always null at this grouping level.
    See this example:
    SQL> select deptno
      2       , job
      3       , extract(year from hiredate)
      4       , sum(sal)
      5       , grouping(job)
      6    from emp
      7   group by deptno
      8       , grouping sets (job,extract(year from hiredate))
      9  /
        DEPTNO JOB       EXTRACT(YEARFROMHIREDATE)   SUM(SAL) GROUPING(JOB)
            10 CLERK                                     1300             0
            10 MANAGER                                   2450             0
            10 PRESIDENT                                 5000             0
            20 CLERK                                     1900             0
            20 ANALYST                                   6000             0
            20 MANAGER                                   2975             0
            30 CLERK                                      950             0
            30 MANAGER                                   2850             0
            30 SALESMAN                                  5600             0
            10                                1981       7450             1
            10                                1982       1300             1
            20                                1980        800             1
            20                                1981       5975             1
            20                                1982       3000             1
            20                                1983       1100             1
            30                                1981       9400             1
    16 rijen zijn geselecteerd.
    SQL> select deptno
      2       , job
      3       , extract(year from hiredate)
      4       , sum(sal)
      5       , grouping(job)
      6       , decode(grouping(job),1,job)
      7    from emp
      8   group by deptno
      9       , grouping sets (job,extract(year from hiredate))
    10  /
        DEPTNO JOB       EXTRACT(YEARFROMHIREDATE)   SUM(SAL) GROUPING(JOB) DECODE(GR
            10 CLERK                                     1300             0
            10 MANAGER                                   2450             0
            10 PRESIDENT                                 5000             0
            20 CLERK                                     1900             0
            20 ANALYST                                   6000             0
            20 MANAGER                                   2975             0
            30 CLERK                                      950             0
            30 MANAGER                                   2850             0
            30 SALESMAN                                  5600             0
            10                                1981       7450             1
            10                                1982       1300             1
            20                                1980        800             1
            20                                1981       5975             1
            20                                1982       3000             1
            20                                1983       1100             1
            30                                1981       9400             1
    16 rijen zijn geselecteerd.Regards,
    Rob.

  • Change colums from group to group in Reports 2.5 (Developer 2000)

    Hi
    I know there is a easy way to do it in reports 6i, simply dragging and dropping the colum from group to group. But in 2.5 it doesnt work.I suppose there is a way to do it but i dont find it
    Thanks a lot

    Hi,
    In reports 2.0 we have the "Reports Generator Version 2.0" to do this but do we have anything of this sort ( to convert rpt to rex) in reports 2.5 it tells something about case dictionary and stuff...
    I'am not able to get exacltly what U are telling could U explain a bit U can mail me
    to "[email protected]"
    please
    thank U so much
    regards
    Naresh
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by nirali:
    Hi!
    1.sccs edit .exp/inp
    - Check out most recent version from SCCS(source control)
    2. pasterex *.exp *.rex - Add special characters so this report can be loaded into the DB.
    this will generate *.rex file.
    Nirali<HR></BLOCKQUOTE>
    null

Maybe you are looking for