Group by - condition

Good Morning Everyone,
We wrote following query and we were happy about results.
SELECT DISTINCT R.CLASS_ID,LF.LOC_IND,U.LNAME, AF.A_CODE
FROM COURSES CO, CLE_USERS U, CLASSES C, REGISTRATIONS R,
CLASS_DETAILS CD, LOCATIONS_RF LF, FORMATS_RF FF, >SPONSORS_RF SF, B_RF BF, A_RF AF
WHERE ( (R.USER_ID = U.USER_ID) AND (R.CLASS_ID = C.CLASS_ID)>AND (CD.LOC_ID = LF.LOC_ID) AND (R.CLASS_DET_ID = CD.CLASS_DET_ID)
>AND (CD.FORMAT_ID = FF.FORMAT_ID) AND (C.COURSE_ID = CO.COURSE_ID)
>AND (C.SPONSOR_ID = SF.SPONSOR_ID) AND ( U.BARG_ID = BF.BARG_ID )
>AND ( U.A_ID = AF.A_ID )
>And (C.CLASS_ID = 52) )
Now, We have questions about group by:
If LF.LOC_IND is not equal to Y, we would like to gorup by AF.A_ID.
We assume that AND (LF.LOC_IND< not equal to >'Y') put in WHERE.
( We used not equal single-row query operator but it did not show in here. So, < not equal to > for description purpose)
But we confused to do how and where exactly.
If you have any expereinces, please share with us.
Thanks in advance,
NY

Thank SomeoneElse and all,
Our question is how to GROUP BY when LF.LOC_IND 'Y'.
MaxymK helped general idea but we are asking how to apply our query:
SELECT DISTINCT R.CLASS_ID,LF.LOC_IND,U.LNAME, AF.A_CODE
FROM COURSES CO, CLE_USERS U, CLASSES C, REGISTRATIONS R,
CLASS_DETAILS CD, LOCATIONS_RF LF, FORMATS_RF FF, >SPONSORS_RF SF, B_RF BF, A_RF AF
WHERE ( (R.USER_ID = U.USER_ID) AND (R.CLASS_ID = C.CLASS_ID)>AND (CD.LOC_ID = LF.LOC_ID) AND (R.CLASS_DET_ID = CD.CLASS_DET_ID)
>AND (CD.FORMAT_ID = FF.FORMAT_ID) AND (C.COURSE_ID = CO.COURSE_ID)
>AND (C.SPONSOR_ID = SF.SPONSOR_ID) AND ( U.BARG_ID = BF.BARG_ID )
>AND ( U.A_ID = AF.A_ID )
>And (C.CLASS_ID = 52) )
If you have any more questions for us, please let us know.
Thanks for all again,
NY

Similar Messages

  • Material Fright Group related Condition record is not captured in billing

    Dear all,
       As i am creating Credit Memo with respect to Credit memo Request (Sales Order) and my freight condition record is maintained in Material Freight Group level. This field is there in Sales Order but when i am creating Credit memo it is not captured and also i am unable to find Material Freight Group field in Billing Document.
    Please help urgently.
    Regards,
    Chirag Pedhadiya.

    Hi...
          But why we have to write this code in User Exit. Is this Standard SAP Problem ??
    I just wonder that in Delivery Related Billing Document it is finding Material Freight Group related Condition record in Billing means in Billing Pricing it is getting value in Material Freight Group filed and set this condition record value, though there is no any field like MFRGR (Material Freight group) in Billing Tables VBRK or VBRP.
    So for Order related Billing Document only why this filed is not getting any value in Pricing ??
    Thnaks,
    Chirag  Pedhadiya.

  • How to set required for group of condition type in the same condition class

    Hello,
              we have a group of condition type with the same condition class B, the last one have been set, and all of others will be inactive.
    but we don't set any required for all the condition types in pricing control, so if user don't set any of them, the sales order or billing is still saved. that is a risk.How can i fix it? Thanks.
    Sophie

    Hello,
      incompletion log is not available in invoices.
    You have different options:
    - activate a validation in FI when the Billing document is released into accounting,  so that te release into accounting is not allowed if the invoice amount is zero;
    - define a subtotal in the pricing procedure as sum of the pricing conditions of your group, then develop a custom routine to be assigned in the formula "CalType" (field T683S-KOFRM) where an error should be raised if the amount of the subtotal is zero (use as an example formula 48);
    Best regards,
    Andrea

  • Multiple Groups of Conditions in Smart Mailboxes

    In Yosemite Mail is it possible to create more than one group of conditions for a smart mailbox?
    In iTunes, when creating smart playlists, you can press OPTION while clicking on the '+' sign to add conditions. A new group of conditions can be added.
    I do not see anything similar in Mail.
    Thanks,
    b.

    I think you miss the point.
    I'm looking to make a smart mailbox to show mail with
    (Condition A AND Condition B)
    OR
    (Condition A AND Condition C)
    OR
    (Condition X AND Condition Y)
    Thanks,
    b.

  • Oracle BI Answers Problem Using Group By condition.

    Hi All,
    I'm new to Oracle BI. i have a requirment to count the number of opened request and number of closed request(month wise) from a table which have fallowing columns:
    Date logged(Date) Status(character) Date closed(date)
    8/12/2008 open null
    8/19/2008 closed 8/21/2008
    I also neeed the total closed request for a particular month irrespective of the opened month.( eg. if a request was raised in Apr and was closed in Aug shoulb be counted.)
    For this requirment i modified the select query:
    SELECT new_event.Month saw_0, new_event.opened saw_1, new_event.closed saw_2, new_event.Cmonth saw_3 FROM
    (SELECT MONTHNAME(Events."Logged Date/time") as MONTH , COUNT(Events.Status) as opened,0 as closed,0 as Cmonth FROM Incidents WHERE ("Assigned Service Dept"."Assigned SVD" = 'WHG DSG SUPPORT') AND (Events.Status IN ('Open', 'Closed')) GROUP BY MONTHNAME(Events."Logged Date/time")
    UNION
    SELECT MONTHNAME(Events."Logged Date/time") as MONTH ,0 as Opened, COUNT(Events.Status) as closed,0 as Cmonth FROM Incidents WHERE ("Assigned Service Dept"."Assigned SVD" = 'WHG DSG SUPPORT') AND Events.Status = 'Closed' GROUP BY MONTHNAME(Events."Logged Date/time")
    UNION
    SELECT MONTHNAME(Events."Closure Date") as MONTH ,0 as Opened,0 as closed, COUNT(Events.Status) as Cmonth FROM Incidents WHERE ("Assigned Service Dept"."Assigned SVD" = 'WHG DSG SUPPORT') AND Events.Status = 'Closed' GROUP BY MONTHNAME(Events."Closure Date")) new_event
    ORDER BY saw_0, saw_2, saw_3
    Using This query i'm able to get the fallowing result set.
    Month opened closed Cmonth
    Apr 25 0 0
    0 0 27
    0 25 0
    Aug 27 0 0
    0 0 21
    0 10 0
    So I want to do a group by month and sum of closed, opened and cmonth column.
    But when i add the group by condition i'm getting the error as "GROUP BY Condition Needed"
    Thanks,
    Sumit

    Ignore the SQL let Analytics handle that for you, the key here is to get your model correct.
    You need a Time Dimension (ie. a table full of calendar dates) which you join to your Fact table date columns in the Physical layer.
    In the logical layer fact table you should have two columns #Open and # Closed - these will be based on a case condition sum aggregate ie.
    No. Open
    CASE WHEN closed_date IS NULL THEN 1
    ELSE 0
    END
    No. Closed
    CASE WHEN closed_date IS NOT NULL THEN 1
    ELSE 0
    END
    If you then make sure you join your Time Dimension (create an alias for each instance) to the open and closed dates you'll be able to have a count of the items closed by Year/Month/Week/Date etc...

  • Group By condition in result package

    Hi Experts,
    I have a requirement, where I need to write a logic to populate few key figures of a Cube.
    Logic is based on Group by condition on 3 fields of the result package. (Need to implement in end routine)
    Is there any way that I can do a select statement on the result package fields and then put a group by clause to get my aggregated data.
    I need to fill up the key figures in the cube itself (cant take it to BEx).
    Please let me know how to proceed for it.
    Thanks
    El.

    Githen, Thanks for the reply.
    I am thinking of another option of implementing it. Let me know your thoughts
    There is a DSO on the top of this Cube, If I use all the fields which I want to use in "Group By" condition as key fields of the DSO.
    Then would it automatically aggreagate the rows based on the conditions? Will it suffice the requirement?
    Thanks
    El.

  • Using identy Group as condition

    Hi ,
    I wanna create a authorization Policy using two identity Group as condition . But i juste heve "OR " as operator for those two condition !!I wanna i use operator and is this Possible ???

    Configuring Policy Elements Conditions
    Cisco ISE provides a way to create conditions that are individual, reusable policy elements that can be referred from other rule-based policies. Whenever a policy is being evaluated, the conditions that comprise it are evaluated first.
    Under Policy > Policy Elements > Conditions, the initial Conditions pane displays the following policy
    element condition options: Authentication, Authorization, Profiling, Posture, Guest, and Common.
    Simple Conditions
    Simple Condition Format
    This type uses the form attribute operand value. Rule-based conditions are essentially a comparison of values (the attribute with its value), and these can be saved and reused in other rule-based policies. Simple conditions take the format of A operand B, where A can be any attribute from a Cisco ISE dictionary and B can be one of the values that attribute A can take.
    Compound Conditions
    Compound Condition Format
    Authorization policies can contain conditional requirements that combine one or more identity groups using a compound condition that includes authorization checks that can return one or more authorization profiles. This condition type comprises one or more simple conditions that use an AND or OR relationship. These are built on top of simple conditions and can be saved and reused in other rule-based policies. Compound Conditions can take any of the following forms:
    • (X operand Y) AND (A operand B) AND (X operand Z) AND ... (so on)
    • (X operand Y) OR (A operand B) OR (X operand Z) OR ... (so on)
    (*Where X and A are attributes from the Cisco ISE dictionary and can include username and device type.
    For example, compound conditions can take the following form:
    – DEVICE: Model Name Matches Catalyst6K AND Network Access: Use Case Equals Host
    Lookup.)
    Creating New Authorization Policy Element Conditions
    Use this procedure to create new authorization policy element conditions (simple or compound).
    To create new authorization policy element conditions, complete the following steps:
    Step 1 Click Policy > Policy Elements> Conditions > Authorization> Simple Conditions (or Compound
    Conditions).
    The Conditions page appears listing all existing configured authorization policy element conditions.
    Step 2 To create a new simple condition, click Create.
    The Simple Conditions page displays.
    Step 3 Enter values in the following fields to define a new simple condition:
    • Name—Enter the name of the simple condition.
    • Description—Enter the description of the simple condition.
    • Attribute—Click to choose a dictionary from the drop-down list of dictionary options, and choose an
    attribute from the corresponding attribute choices.
    • Operator—Enter Equals or Not Equals.
    • Value—Enter a value that matches the selected attribute.
    Step 4 Click Submit to save your changes to the Cisco ISE database and create this authorization condition.
    The Name, Attribute, Operator, and Value fields in simple conditions are required and are marked with an asterisk (*).
    For Complete Reference visit:
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_authz_polprfls.pdf

  • How to display or suppress a field in the group footer conditionally

    Hi,
         I am working with crystal report XI R2
         My requirement is that suppress the filed on group footer if it is duplicating .Also display only once for the first record in  each page  if it runs in to more than one page .
    For example suppose my report is to display all the students name in a college on department basis.
    Then do the grouping on department ,then display the names  like
    Page 1
    Department                      +Student+
    Computer                             Ram
                                                    Ravi
                                                    Seetha
    Electronics                          Anvar
                                                  Deepak
                                                  Geetha
    Page 2  
    Electronics                          Hari
                                                  Karthik
                                                    Xavier
    Maths                                     Sini   etc.......
      Inorder to suppress the duplcated department name ,i am taking the count of the student names for each department and if the   count is more than 1 then suppressing it.
        But i am not able to display it conditionall on each page for the first record ,if the repor is running in different pages..
       Please let me know if you require more information regarding teh same.
    Thanks in advance,
    Smitha
    Edited by: smitha thomas on Nov 17, 2010 9:58 AM
    Edited by: smitha thomas on Nov 17, 2010 9:59 AM
    Edited by: smitha thomas on Nov 17, 2010 10:02 AM

    Right click the department name column and go to format field and  select supress if duplicate...this will remove duplicates
    to get it displayed in each page
    create a formula say F1 and place the column inside the formula
    and conditionally supress for each page
    This may help
    Thanks,
    Ganesh

  • Condition Exclusion group for Conditions

    Hi Gurus,
    Can we set up  C Exclusion group when two condition types having different calculation.
    1st condiion tyep- Condition class- Price and Calculation type is Quanity and
    2nd condition Type -Condition class-Discount and Calculation type is Percentage.
    Now i need to set exclusion group between this condition when 1st is active the 2nd should be deactiave. if calculation type is changed how system will react?
    Regards,
    Seegal

    Hi ,
    I think you have assigned the ZD01 and ZD02 condition type to the condition exclusion group.
    you have given the best between the conditions. so i think ZD01 discount value is more then the ZD02. so the system picked up the Zd01,
    Thank
    Kuntla

  • Help: Group By condition

    Hello folks am actually trying to figure whether we can use the following condition i.e "to_char(sysdate, 'FMMon YYYY')," in the group by clause, Or can we use the alias "Period" instead,Can anyone please throw some light on this.
    SELECT Client. Client Name,
    "CUBS SNAPSHOT". HMG Flag,
    select TRUNC (SYSDATE, 'MONTH') - 1 from dual AS PeriodThruDate,
    select to_char(sysdate, 'FMMon YYYY') from dual AS Period
    FROM "CUBS SNAPSHOT", Client
    GROUP BY Client. Client Name,
    "CUBS SNAPSHOT".CLIENT,
    "CUBS SNAPSHOT".TYPE,
    "CUBS SNAPSHOT".clipStatus,
    "CUBS SNAPSHOT".SUBTYPE,
    to_char(sysdate, 'FMMon YYYY'),
    "CUBS SNAPSHOT". HMG Flag,
    TRUNC (SYSDATE, 'MONTH') - 1
    Thanks

    Hi,
    As you may have noticed, this site normally compresses white-space.
    To post formatted text (and code should always be formatted), type these 6 characters:
    &#123;code&#125;
    (small letters only, inside curly brackets) before and after sections of formatted text, to preserve spacing.
    SYSDATE is treated as a constant in GROUP BY queries.
    You can have constants in the GROUP BY clause if you really want to, but there's no point. If you have a GROUP BY clause anyway, adding constants to it won't change the results.
    You can't use a column alias in the GROUP BY clause of the same query where it was defined.
    I think the following is syntactically correct:
    SELECT    Client.Client          Name,
           "CUBS SNAPSHOT".HMG     Flag,
           ( select  TRUNC (SYSDATE, 'MONTH') - 1
             from       dual
           )               AS PeriodThruDate,
           ( select  to_char (sysdate, 'FMMon YYYY')
             from       dual
           )               AS Period
    FROM        "CUBS SNAPSHOT",
           Client
    GROUP BY  Client.Client,
                 "CUBS SNAPSHOT".CLIENT,
           "CUBS SNAPSHOT".TYPE,
           "CUBS SNAPSHOT".clipStatus,
           "CUBS SNAPSHOT".SUBTYPE,
           to_char(sysdate, 'FMMon YYYY'),          -- Why?
           "CUBS SNAPSHOT".HMG,
           TRUNC (SYSDATE, 'MONTH') - 1               -- Why?
    ;Scalar-sub-queries (like PeriodThruDate and Period) must be enclosed in parentheses. You don't have to use a sub-query in these two cases. Instead of
    ( select  TRUNC (SYSDATE, 'MONTH') - 1
      from       dual
    )                    AS PeriodThruDate,you could say:
    TRUNC (SYSDATE, 'MONTH') - 1      AS PeriodThruDate,The query above is doing a cross-join betwee the two tables. That's not necessarily an error, but it almost certainly isn't what you want. Every table in the FROM clause is usually referenced in at least one join condition.
    I suggest writing much smaller queries, and adding to them one or two lines at a time. You'll find it much easier to locate and fix mistakes that way.
    That is, don't wite 14 lines of code and then try to run it.
    Write maybe 2 lines. Test it, and make corrections as necessary.
    When it does what it's supposed to dio perfectly, add another line or two and test again.

  • Dynamic Distribution Group set conditions by importing text file?

    Exchange 2010 SP2.
    I created a dynamic distribution group via the EMC.  We have populated AD with ExtenstionAttribute1 and ExtensionAttribute2.  I have created the ddg with custom attribute1 value = employee.  What I need to do now is  populate custom attribute
    2 = 00-0001, 00-0002, and so on.  There are about 300 of these numbers I need to add.  I have them in a text file or csv file.  Instead of adding them one by one in the EMC, is there a way to import them via powershell to the existing ddg? 
    The ddg is called All Management Employees.

    If they go from 00-0001 to 00-0300, you could just add them as follows:
    Set-DynamicDistributionGroup <group name> -RecipientFilter "(CustomAttribute1 -eq 'employee') -and (CustomAttribute2 -like '00-0*')"
    However, if you have additional items like this (such as 00-0350, etc), you may need to use the following:
    Set-DynamicDistributionGroup <group name> -RecipientFilter "(CustomAttribute1 -eq 'employee') -and ((CustomAttribute2 -like '00-00*') -or (CustomAttribute2 -like '00-01*') -or (CustomAttribute2 -like '00-02*') -or (CustomAttribute2 -eq '00-00300')"
    Now, if your numbering isn't sequential and it can't be, you would need to add them individually - which may make your search filter unusable, in which case, you may need to create several dynamic groups and add them to a parent group.

  • Count(*) function in select statement having group by condition

    Hi
    I would like to use count(*) in select statement having group by clause. say for example there is a state with a number of cities listed. I would like to get the count of cities for each state.
    the sql stement is grouped by state and it is joined with 5 more tables.
    Thanks
    ps: ignore the previous post

    Assuming there is one record per city per state, then
    SELECT state,count(*)
    FROM state_tbl
    GROUP BY stateWill get one record per state with the number of cities in each state. If you want to join that result set to other tables you need to either create a view with that statement or use an in-line view viz.
    SELECT c.cust_name,c.state,s.num_cities
    FROM customers c,
         (SELECT state,count(*) num_cities
          FROM state_tbl
          GROUP BY state) s
    WHERE c.state = s.stateTTFN
    John

  • Generating sequence for group by condition

    I have a table with the Name Table_Depts.
    SQL> DESC Table_depts
    Name varchar2(10)
    Deptno number(5)
    Loc varchar2(10)
    SQL> Select * from Table_depts;
    NAME ---- Sale
    DEPTNO ---- null
    LOC --- boston
    NAME ---- Sale
    DEPTNO ---- null
    LOC --- boston
    NAME ---- Purchase
    DEPTNO ---- null
    LOC --- boston
    NAME ---- Admin
    DEPTNO ---- null
    LOC --- NewJS
    NAME ---- Admin
    DEPTNO ---- null
    LOC --- boston
    NAME ---- Admin
    DEPTNO ---- null
    LOC --- Mums
    Note that Deptno is null. I want to update deptno column.
    NAME ---- Sale
    DEPTNO ---- 1
    LOC --- boston
    NAME ---- Sale
    DEPTNO ---- 2
    LOC --- boston
    NAME ---- Purchase
    DEPTNO ---- 1
    LOC --- boston
    NAME ---- Admin
    DEPTNO ---- 1
    LOC --- NewJS
    NAME ---- Admin
    DEPTNO ---- 2
    LOC --- boston
    NAME ---- Admin
    DEPTNO ---- 3
    LOC --- Mums
    That means For sale we have (deptno 1 and 2) and
    for Purchase we have (deptno 1)
    and for Admin we have (deptno 1,2,3)
    This output this based on group by of names and
    the deptno is sequencely updates... but it again starts
    when it gets new name that is (Sale have 1,2,3) and
    (purchase have 1) and so on...
    Thanks and regards
    Sarfaraz Enayat

    what for is MERGE here?
    simple update is enough:Here is the reason for MERGE. Please note the numbers printed bold:
    merge into x
    using (select id
                , deptno
                , row_number() over (partition by name order by loc) rn
             from x
          ) r
      on (r.id = x.id)
    when matched
    then
        update set deptno = rn
    when not matched then
        insert values (null,null,null,null)
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.01          0          0          0           0
    Execute      1      0.01       0.00          0          6          7           6
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.01       0.02          0          6          7           6
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 9833
    Rows     Row Source Operation
          2  MERGE
          6   VIEW
          6    HASH JOIN OUTER
          6     VIEW
          6      WINDOW SORT
          6       TABLE ACCESS FULL X
          6     TABLE ACCESS FULL X
    update x
       set deptno =
           ( select rn
               from ( select t.*
                           , row_number() over (partition by name order by id) rn
                        from x t
                    ) tt
              where tt.id = x.id
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.00          0          0          0           0
    Execute      1      0.00       0.00          0         21         14           6
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.01       0.00          0         21         14           6
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 9833
    Rows     Row Source Operation
          0  UPDATE
          6   TABLE ACCESS FULL OBJ#(2716057)
          6   VIEW
         36    WINDOW SORT
         36     TABLE ACCESS FULL OBJ#(2716057)
    ********************************************************************************You can imagine what the numbers are for larger tables ...
    Regards,
    Rob.

  • Voting group in condition is if anyone reject, then WF suddenly end process

    Hi Team,
    Apps 11.5.10.2
    Customer has already reviewed Doc ID 104421.1
    BUT they want to setup condition like below. Is it possible ?
    They don't want to wait for all approver vote finish.They want voting is close immediate if just only one do action reject. They don't want to wait for everyone approve/reject. Currently they use Black Ball voting now, but they want like below.
    Ex:
    Current is
    18:00 - Submit vote to 5 persons
    18:01 First person : Approve
    18:02 Second person : Reject
    18:03 Third person : Approve
    18:04 Forth person: Approve
    18:05 Fifth person : Approve
    18:05 Result is rejected
    They want
    18:00 - Submit vote to 5 persons
    18:01 First person : Approve
    18:02 Second person : Reject
    18:02 Result is rejected
    18:03 Third person :<no need to action>
    18:04 Forth person: <no need to action>
    18:05 Fifth person : <no need to action>
    Please suggest
    Thanks Regards
    Manju

    See that it has the attribute 'Voting Option' which you can set to "Tally on Every Vote". It also has the attribute "Percent No" which you can set to an item attribute of type number. When the workflow process is created then you set that item attribute to (1/number of roles notified)*100 and that is the value that "Percent No" will take.
    Regards.

  • Simple SELECT with a group by condition

    Hello guys
    How could I build a simple map based in the query below ?
    select ename, job, sal
    from emp
    where sal < (select avg(sal) from emp)
    What operators should I use ?
    Source -> Aggregator-> what else ... ?

    Thank you bwise. This helped me a lot.
    However, if you can yet help me, I'll be thankful
    My question is a little bit more complicated.
    I have 2 cursors in PL/SQL
    cursor c1 is
    select e.ename, d.dname, d.deptno
    from emp e, dept d
    where e.deptno = d.deptno;
    cursor2 c2 (p1 number) is
    select avg(salary) avg1
    from emp
    where deptno = p1;
    r1 c1%rowtype;
    r2 c2%rowtype;
    counter number(4):=0;
    begin
    counter := 0;
    open C1;
    loop
    fetch C1 into R1;
    exit when (C1%NOTFOUND);
    counter := counter + 1;
    open C2 (r1.deptno);
    fetch C2 into R2;
    update emp set dept_avg = r2.avg1
    where empno = r1.empno;
    more processing;
    end loop;
    end;
    Do you have any idea of how can implement this in a map ?
    Thank you
    Marcelo

Maybe you are looking for

  • Send spool to SAP Business workplace by a job

    Hi All, I have scheduled one job in sap for a report. I have to send the spool created to a SAP Business workplace's user. I have made it by the botton 'Spool list recipient' in SM36. The job is running successfully and spool list is sending successf

  • DSL line at two locations

    We have the need to establish a network that connects the VolP phones in the garage of a ranch house and the WiFi network in the remainder of the ranch house. We have extentions of the DSL line at two locations. 1. At the garage and 2. In the other s

  • How to name logical system

    Hi! I need to define logical system (creating source system fo BW). I found that there is a rule set for naming: SystemName + CLNT + ClientNumber Is it so? Can I create some logical system for one client in one system? Thanks, OLga

  • Making quicktimes un-downloadable

    Is it possible, using compressor, to export quicktimes that are disabled for download? If not, how can I accomplish this?

  • Previous tabs lost on next startup, since last update

    Ever since the update to Firefox 33.1 (and/or since the Windows 7 update in the week of Nov.11.2014), Firefox will not retain the tabs from my previous session. I have (and have always had) my Options set to load pages from the previous session, but