Group aset depreciation question

Hello everyone
I have a question in the depreciation for a group asset.
That is my question:
I have create a group asset with some component assets.
After that,  i have found  all the calculation of depreciation are made in the group asset(what is normal for me), but with the useful life of the group asset for all the components(10 years for exemple).
In the component cards, i have put some different useful lives(5 and 10 years).
So is it normal  that FI AA make this kind of depreciation with the useful life of the group asset?
Thanks a lot.
Youqiao

Youquiao,
The depreciation group works when you have a similars assets. If you have some different at this group, the SAP look for a item not from a group, then "normally" when you run the depreciation (AFAB) the SAP return with a error at this item, if the SAP not return, its look from a item and post a depreciatin individually.
Regards
Bruno Araujo

Similar Messages

  • OID First Time Full Reconciliation - group/role reconciliation question

    My client has some roles/groups created in OID. The initial set of users lies over there. I have to bring the initial load of users into OIM. The existing set of users is around 5000. But some users belong to different groups/roles. Now if I want to do a first time reconciliation to bring all these initial set of user profiles and accounts into OIM; where do I need to specify the groups/roles in OID resource object?
    I went through the OID connector guide. But in there, in the section "3.1 Performing First-Time Reconciliation", it doesn't mention anywhere to create any multivalued attribute/child form or anything. What are the steps that are needed to be taken? If I just reconcile the group/role lookup values, will it populate those values within the user process form? If so, which fields will co-relate with that?
    Thanks,
    - oidm.

    Thanks Raj. But I think I am a bit lost over here.
    So you mean to say I don't need to run the scheduled tasks which are related to populating the groups/roles lookups for first time full reconciliation? And also you mean to say that we only need these lookups at the time of provisioning user profiles to target system?
    I have to create identities within OIM from OID so I have to run the 'OID User Trusted Recon Task' and not 'OID User Target Recon Task'.
    Basically, my question is how will the roles/groups be depicted in the user account when I will do a trusted source reconciliation? If so, which fields in process form will hold those values? Do I need to run the lookup reconciliation tasks for the same or not?
    Thanks,
    - oidm.

  • Strange Matrix group by date question

    I have the following data:
    name
    date
    value
    bob
    1/1/2015
    5
    jane
    1/1/2015
    7
    jim
    1/1/2015
    9
    bob
    1/2/2015
    2
    jane
    1/2/2015
    5
    jim
    1/2/2015
    5
    bob
    1/2/2015
    4
    I am using a matrix with a group by date to produce the following:
    1/1/2015
    1/2/2015
    bob
    5
    4
    jane
    7
    5
    jim
    9
    5
    As you can see it only selected one value for bob on 1/2.
    Is is possible to show all of the values while still grouping by date?
    I would  prefer something like 
    1/1/2015
    1/2/2015
    1/2/2015
    bob
    5
    2
    4
    jane
    7
    5
    jim
    9
    5

    Hi ,
    I have created sample report based on your question. Steps are listed below:-
    Sample query is modified to get one more Column rowid as shown in below SQL query:-
    select *,row_number() over(partition by name,date order by date )rowid from
    SELECT 'bob' name, '1/1/2015' date ,5 value
    UNION
    SELECT 'jane' , '1/1/2015' , 7
    UNION
    SELECT 'jim' , '1/1/2015' , 9
    UNION
    SELECT 'bob' , '1/2/2015' , 2
    UNION
    SELECT 'jane' , '1/2/2015' , 5
    UNION
    SELECT 'jim' , '1/2/2015' , 5
    UNION
    SELECT 'bob' , '1/2/2015' , 4
    )T
    Now Create the matrix report rows --> Name
    Columns---> Date
    Detail---> Value
    After creation of matrix, just go to the Group Properties of Column group and add as shown below
    After this setting , run the report, it will give result as shown below:-
    RDL Code for reference:-
    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
    <Body>
    <ReportItems>
    <Tablix Name="matrix1">
    <TablixCorner>
    <TablixCornerRows>
    <TablixCornerRow>
    <TablixCornerCell>
    <CellContents>
    <Textbox Name="textbox3">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value />
    <Style>
    <FontFamily>Tahoma</FontFamily>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox3</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixCornerCell>
    </TablixCornerRow>
    </TablixCornerRows>
    </TablixCorner>
    <TablixBody>
    <TablixColumns>
    <TablixColumn>
    <Width>1in</Width>
    </TablixColumn>
    </TablixColumns>
    <TablixRows>
    <TablixRow>
    <Height>0.21in</Height>
    <TablixCells>
    <TablixCell>
    <CellContents>
    <Textbox Name="textbox2">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Sum(Fields!value.Value)</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox2</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    <DataElementOutput>Output</DataElementOutput>
    </TablixCell>
    </TablixCells>
    </TablixRow>
    </TablixRows>
    </TablixBody>
    <TablixColumnHierarchy>
    <TablixMembers>
    <TablixMember>
    <Group Name="matrix1_date">
    <GroupExpressions>
    <GroupExpression>=Fields!date.Value</GroupExpression>
    <GroupExpression>=Fields!rowid.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!date.Value</Value>
    </SortExpression>
    </SortExpressions>
    <TablixHeader>
    <Size>0.21in</Size>
    <CellContents>
    <Textbox Name="date">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!date.Value</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontWeight>Bold</FontWeight>
    <Color>White</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>date</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <BackgroundColor>#6e9eca</BackgroundColor>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixHeader>
    <DataElementOutput>Output</DataElementOutput>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    </TablixColumnHierarchy>
    <TablixRowHierarchy>
    <TablixMembers>
    <TablixMember>
    <Group Name="matrix1_name">
    <GroupExpressions>
    <GroupExpression>=Fields!name.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!name.Value</Value>
    </SortExpression>
    </SortExpressions>
    <TablixHeader>
    <Size>1in</Size>
    <CellContents>
    <Textbox Name="name">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=Fields!name.Value</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontWeight>Bold</FontWeight>
    <Color>White</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>name</rd:DefaultName>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <BackgroundColor>#6e9eca</BackgroundColor>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </CellContents>
    </TablixHeader>
    <DataElementOutput>Output</DataElementOutput>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    </TablixRowHierarchy>
    <RepeatColumnHeaders>true</RepeatColumnHeaders>
    <RepeatRowHeaders>true</RepeatRowHeaders>
    <DataSetName>DataSet1</DataSetName>
    <Top>0.37in</Top>
    <Height>0.42in</Height>
    <Width>2in</Width>
    <Style />
    </Tablix>
    <Textbox Name="textbox1">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Strange Matrix Group by Date</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>14pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>SteelBlue</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style>
    <TextAlign>Center</TextAlign>
    </Style>
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox1</rd:DefaultName>
    <Height>0.37in</Height>
    <Width>5in</Width>
    <ZIndex>1</ZIndex>
    <Style>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </ReportItems>
    <Height>1.04in</Height>
    <Style />
    </Body>
    <Width>5in</Width>
    <Page>
    <LeftMargin>1in</LeftMargin>
    <RightMargin>1in</RightMargin>
    <TopMargin>1in</TopMargin>
    <BottomMargin>1in</BottomMargin>
    <Style />
    </Page>
    <AutoRefresh>0</AutoRefresh>
    <DataSources>
    <DataSource Name="DataSource1">
    <DataSourceReference>DataSource1</DataSourceReference>
    <rd:SecurityType>None</rd:SecurityType>
    <rd:DataSourceID>b2ebe046-5f1b-45c9-82e7-5baa7ed2460a</rd:DataSourceID>
    </DataSource>
    </DataSources>
    <DataSets>
    <DataSet Name="DataSet1">
    <Query>
    <DataSourceName>DataSource1</DataSourceName>
    <CommandText> select *,row_number() over(partition by name,date order by date )rowid from
    SELECT 'bob' name, '1/1/2015' date ,5 value
    UNION
    SELECT 'jane' , '1/1/2015' , 7
    UNION
    SELECT 'jim' , '1/1/2015' , 9
    UNION
    SELECT 'bob' , '1/2/2015' , 2
    UNION
    SELECT 'jane' , '1/2/2015' , 5
    UNION
    SELECT 'jim' , '1/2/2015' , 5
    UNION
    SELECT 'bob' , '1/2/2015' , 4
    )T</CommandText>
    <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
    </Query>
    <Fields>
    <Field Name="name">
    <DataField>name</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="date">
    <DataField>date</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="value">
    <DataField>value</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    <Field Name="rowid">
    <DataField>rowid</DataField>
    <rd:TypeName>System.Int64</rd:TypeName>
    </Field>
    </Fields>
    </DataSet>
    </DataSets>
    <Language>en-US</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportUnitType>Inch</rd:ReportUnitType>
    <rd:ReportID>dfd8f7e8-fcc1-4636-991e-d86824825c30</rd:ReportID>
    </Report>
    Thanks
    Prasad
    Mark this as Answer if it helps you to proceed on further.

  • ASR - IPSEC, GRE, channel group, and MTU Questions

    I have an ASR1004 and am trying to load-balance a 1.5G data rate over two 1-Gig ports using IPSEC ports, but I have a few questions.
    1. Can GRE support a 9K mtu
    2. Can you run IPSEC on a channel-group
    3. Can the ASR load-balance per- S&D on a channel-group?
    I currently have two separate tunnels, one on each outbound gig link with OSPF running. However, I can't get a 7000 mtu w/ the DF bit set through to the distant end. I am guessing this is because of the GRE interface.
    So is it possible to run IPSEC on a channel-group and have this load balance per S&D? I need to use the BW of both ports.
    Thanks for the help!

    The ASR1004 router we can only send packets with a maximum MTU size of 1438 Bytes over the encrypted tunnel.

  • Group Calls (Hosting Questions)

    Hey folks. I had a few questions regarding Skype's Group Call feature, if someone wouldn't mind answering them. Is the Group Call hosted on my computer/network/server or is it hosted on the Skype servers? The other question is how many people can be hosted within a single Group Call? Thanks!

    The audio part of a group call is hosted by the person who initiated the group call. The video part is hosted by a Skype server.
    In the case of an audio-only group call the max number of participants is 25. For video group calls the number is 10.

  • Depreciation question

    Hi all,
    i wanted to know why my system was calculating depreciation in a unusual manner.
    My asset transfer date is 9/2007, i want it to start calculating depreciation from 10/2007. In the asset master the acquisition date is 7/2006. the depreciation start date defaults from the acquisition date?? i thought it should do so from the transfer date. I changed the dep start date to 10/2007.
    But when i run AFAB it starts calcuatind depreciation from period 2/2007
    why does it do so?
    Can i start caculating dep eg from period 1 for asset a and period 7 for asset B?
    what significance does the captilisation date have? - this is the day the legacy asset was bough right and this is used to calculate the remainig life.
    Thanks,
    Zaid Azam

    I am not sure if you are allowed/ should be doing this.
    An asset register is a form of legal document and if you are stating that an asset was bought/ capitalized at 6,000 when it was 10,000 there may be some issues.
    There is also one other thing to consider.
    If you have the above scenario in your current SAP if the asset had a life of say 10 year it would depreciate 1000 per year.
    If you just use straight line dep. then this may not be an issue but if you have a dep key that is more structured and you have the capitalised date and amount different to the actual value it will calculate dep. in the wrong way.
    However a point I would raise to you is this, you need to consider your cap date and your useful life.
    You could in theory have all assets with a cap date of the day you go live, and have all of the useful lifes that which is the difference between the actual useful life and the age of the asset. This should in theory work if ALL of your assets work on straight line dep.
    Lastly an issue to consider would be around the open items/ balances of the assets GL accounts and dep accounts, make sure you dont count it twice.

  • SQL group by query question

    I have 3 table with the schema bellow
    Student(Name,StuID,Class,Major)
    Section (SectionID,CourseNum,Semester,year,instructor)
    Grade(StuNo,SectioID,Grade)
    Noe i want to query each section taught by Prof. King (Instructor name in section table) , reterive the courseNum, year, and the number of students who took the section.
    I tires follwoing query
    select coursenumber,semester,year,count(*)
    from section x, grade_report y
    where x.SectionIdentifier = y.SectionIdentifier AND instructor = 'King'
    group by y.SectionIdentifier;
    but i am getting the follwoing error
    select coursenumber,semester,year,count(*)
    ERROR at line 1:
    ORA-00979: not a GROUP BY expression
    I removed the count(*) and group by function and quiried the StuNo, then i am getting the record. How can i count the actual students who took the section.
    Thanks

    I recommend you to post this as well here:
    Forums Home » Oracle Technology Network (OTN) » Products » Database » SQL and PL/SQL
    Discussion of Oracle SQL and PL/SQL issues
    PL/SQL
    Joel Pèrez

  • Sort "Group by Year" question

    Hi,
    I use Aperture 3.1.1 and have added a project which contains pictures from 2010 and 2011. I have the option "Group by year" enabled and display "newest first". Usually Aperture sorts every project which contains two years above the oldest year. So it should be sorted like:
    2011
    2010-2011
    2010
    2009
    2008
    2007-2008
    2007
    However Aperture sorts as follows:
    2011
    2010
    2010-2011
    2009
    2008
    2007-2008
    2007
    Did I miss a setting here?
    Any ideas on how to fix it so I would get displayed as the first example?
    Thanks a lot,
    Joern

    Joern18 wrote:
    Any other ideas?
    An easy one to try:
    Create a new, empty Project. Give it a very simple name. Select all the images in the problem Project and move them to the new Project. Delete the old Project. Go to Project view and try the "group by year", "sort by date" again.
    If it fails, try it again with a subset of the images to see if it is an image that is causing the problem.
    You could also rebuild your Library. This is the last step in the progression "Repair permissions", "Repair Library", "Rebuild Library". For a large Library this will take hours.

  • Smart playlists, grouping, and podcasts question

    Hi I listed to a lot of podcasts, and have them grouped using "Grouping" feature like Home, Money, Health, etc. I then have a smart playlists that have the following settings:
    Podcast is yes, playcount is 0, and grouping is 'Home' (or money or whatever)
    The problem I am having is when new podcasts are downloaded, they DO NOT inherit the grouping setting for that podcast!
    So every day, I have to go to each podcast, and reset the grouping to Home (or whatever it is) -
    How I permanently set the grouping for each episode to have the correct grouping?
    Thanks in advance,
    Ndimitru

    Oh, you got it!!! I'd never noticed "Playlist" as a parameter in the smart playlists! Suddenly all kinds of possibilities open up! It did work the way you suggested but I decided to take a different tack. I created a 4-5 star "rock" playlist and a 4-5 star "alternative" playlist and then created a third smart playlist that includes the first two playlists! Now I can just continue creating smart playlists that include only songs I rate 4-5 stars in all of my 51 genres and create composite playlists to my heart's content! OK, I wouldn't do that. Once I get over 25 genres, it'd be easier to go back to the subtraction method. ; )
    Thanks for your help Diane! You're brilliant!
    Peter
    Message was edited by: petemay

  • Simple Query (GROUP BY?) Question

    I have a verity search on a website of mine, and today added
    a logging feature. When the user submits a search I write the
    search criteria to a table with two columns; one column stores the
    search criteria (string), and the other a date/time stamp.
    I'm writing a report that return the searches performed on a
    given day, which is easy enough thanks to my date/time stamp.
    Let's say the following searches have been run today...
    - superman movie
    - concert tickets
    - concert tickets
    - used car stereos
    Obviously I don't want the report page to list "concert
    tickets" twice, instead it should be shown as follows:
    - superman movie (1)
    - concert tickets (2)
    - used car stereos (1)
    And furthermore, it should be ranked in order of popularity,
    as such:
    - concert tickets (2)
    - superman movie (1)
    - used car stereos (1)
    The "GROUP BY" statement in SQL can help me group together
    identical searches just fine, but determining the number of
    attempts is another story. Here is what I came up with for now, but
    I can't order the results by the number of searches like this:

    SELECT search_criteria, count(search_criteria) thecount
    FROM table_name
    GROUP BY search_criteria
    order by count(search_criteria) desc

  • GROUP BY ROLLUP Question

    I am curious if anyone has had this kind of problem. I'm posting a very generic example because the actual
    query is very complex and is about 120 lines long. I have the following: An outer query with 2 inline
    views as the source for the outer query.
    Select a.*, b.*
    From
    (Select statement from table_a where field3 = '1234' using GROUP BY ROLLUP) a,
    (Select statement from table_b where field3 = '1234' using GROUP BY ROLLUP) b,
    Where
    a.field1 = b.field1 (+) and
    a.field2 = b.field2 (+)
    The expected results are a one to none, one to one or one to many between a & b.
    The results are very inconsistent. For some criteria (eg: field3 = '1234'), I get NO matches
    from the second inline view. Others, I get some but not all matches.
    If I take each inline view and use them to create tables, then run the outer query by joining the two tables, I get all of the matches.
    I'm solving it right now by running each inline view inside of a union query and it performs acceptably, but, I don't understand why I couldn't get the join to work properly.
    Has anyone else experienced this ?????

    a quick one,
    SQL>
    SQL> With t As
      2  (
      3  Select 1990 c1,10c2,1000 c3 From dual Union All
      4  Select 1991   , 10  ,2000    From dual Union All
      5  Select 1990   , 20  ,1500    From dual Union All
      6  Select 1991   , 20  ,2500    From dual
      7  )Select Case when Grouping(c1) = 1 Then 'Dept Total' Else  to_char(c1)  End  c1,
      8          Case When grouping(c2) = 1 Then 'Grand Total' Else to_char(c2)  End c2,
      9          Sum(c3)
    10      From  t
    11     Group By Rollup(c2,c1)
    12  /
    C1                                       C2                                          SUM(C3)
    1990                                     10                                             1000
    1991                                     10                                             2000
    Dept Total                               10                                             3000
    1990                                     20                                             1500
    1991                                     20                                             2500
    Dept Total                               20                                             4000
    Dept Total                               Grand Total                                    7000
    7 rows selected
    SQ

  • Hunt Group Shared Line question

    Customer has the following call routing scenario:
    CCM 4.2(3)
    CTI Route Point is CFwdAll to a Hunt Pilot.
    Hunt Pilot contains Hunt List containing a broadcast Hunt Group of 5 phones.
    4 of these 5 phones each have the other phones' shared line appearances (ring disabled) so they can see if they are on the phone.
    Issue - When incoming call hits the CTI RP, it then goes to the Hunt Pilot, Hunt List, then it "should" ring all the phones in the hunt group. But it only rings the very first DN in the Hunt Group and the DN of the phone that is not setup as a shared line on the other phones. The 4 phones that have each other's DNs setup as shared lines only see the call info popup on the LCD screen showing that the first DN is receiving the call, but their phone doesn't ring.
    As a test, I switched the order of the hunt group DNs. After the switch, I realized that only the first number in the broadcast hunt group will ring. Kind of defeats the purpose of a broadcast hunt group. :(
    I am starting to see where the issue may come from. If a phone has shared lines setup for DNs that are in a broadcast hunt group, each time a call comes in, then the phones would fill up the LCD with the call info for the 4 shared line DNs.
    Any suggestions on allowing phones to be in a broadcast hunt group, and having shared line appearances to monitor the status of the other phones in the hunt group?
    Thanks,
    Kevin

    Hi Kevin,
    You are right on the money! Here is an odd tech note that applies to CCM 4.1.X , 4.2.X and 5.0.x. The reason I say odd is that it is hard to read or make sense of, but it is saying exactly what you have discovered.
    Note: Do not put DNs that are shared lines in a line group that uses the Broadcast distribution algorithm. Cisco CallManager cannot display all DNs that are shared lines on devices where the DNs are configured as shared lines if the DNs are members of a line group that uses the Broadcast distribution algorithm.
    From this doc;
    Cisco CallManager Administration Guide, Release 4.1(3) Line Group Configuration
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_administration_guide_chapter09186a00803ed665.html#wp1036009
    In the current environment I can't think of a good way to accomplish your goal of being able to monitor each others activity while using Broadcast hunting.
    I know this doesn't help, but at least you know why it works the way it does. (and have some documentation)
    Take care!
    Rob

  • Grouping - beginner's question

    I'm a complete beginner at SQL, and generally use it in the Discoverer admin application (so some functions aren't available)
    What I need to do is return 4 values from a table. The first value is the case number. The second is (a varchar field) is the description of a particular task carried out and the third is the date it was carried out. The fourth is a task id that uniquely identifies that task in the database.
    Each case has multiple tasks associated with it, and I only want to return the last one (the one with the latest date). I can find the date and case number by:
    select case_id, max(actioned_date)
    from tablename
    group by case_id
    This gives me the case number, and the date on which the final task was actioned.
    however, I want to include the description and the task id, but still only group it by the case id, which I can't do in the above example, but if I include the other fields then the one result per case falls apart.
    Any advice appreciated.
    Thanks

    You can do it either with subquery:
    select *
    from tablename
    where (case_id,action_date) in (
    select case_id, max(actioned_date)
    from tablename
    group by case_id)or eliminate subquery using first/last aggregate functions
    select
    min(task_id) keep (dense_rank first order by actioned_date desc),
    min(description) keep (dense_rank first order by actioned_date desc),
    case_id, max(actioned_date)
    from tablename
    group by case_idSurely, there are some other ways, but i would say, these two are more common.
    Best regards
    Maxim

  • Group policy adm question

    Hey there,
    I am bit stuck on a group policy thingy. :)
    When I edit my group policy in c1, I see all of my policies including all those custom ADM files that I added to both the user and computer policies. Everything looks good.
    However, when I go to a workstation and run the gpedit.msc all I see are the standard policies and none of the custom ADMs. Along with that, it looks as if none of my custom adm settings actually apply.
    We have a small ADM from Energy star that turns off a non-logged in PC after 30 minutes. Worked last year, not this year.
    Any ideas?
    Tom

    Tom,
    try this "Computer Configuration,Administrative Template, then for
    Windows2000 you must click Views, then uncheck "Show Policies Only",
    and for XP, View, Filtering,and then uncheck "Only show policy settings
    that can be fully managed"."
    Shaun Pond

  • India Tax Depreciation (group asset)

    Hi FICO experts,
        I'm having some problem with depreciation calculation for group assets to adhere to India IT Tax Depreciation  regulation. As per IT law,
      1. asset acquired <180days shall be depreciated at 1/2 of the depreciation rate for the fiscal year
      2. asset acquired >180days shall be depreciated at full rate for the fiscal year
        I've created depreciation key with period control NL and IT, and configure 2 depreciaiton area i.e 01 for book and 02 for tax depreciation in India COD. 02-Tax depreciation is configured as managed at Group asset.
        I created 2 Assets i.e Asset A and Asset B and both linked to Group Asset C. Say the depreciation rate is 15%
    1. Asset A - Acquired on P1 of 2008 --> INR10000
    2. Asset B - Acquired on P9 of 2008 --> INR10000
       A & B are linked to Group Asset C in 02-Tax depreciation area.
         When I view Group Asset depreciation, I noticed that the deprecition for 2008 computed as (1000015%)+(1000015%). Thus, although Asset B is still being depreciated at full rate of 15% instead of half of the rate.
        Besides, is that normal that I'm not able to see depreciation at Asset A and Asset B in tax depreciation area 02 when they are managed at Group. I can only view the deprecation at Group asset C?
        Appreciate help if anyone have similar experience. Thank you in advance.
    rgds
    WJ

    Hi,
    If you want to adhere Indian IT laws then follow the below mentioned steps:
    1. Maintain a relationship of 1:1 of AS01 & AS21, means when you create a new normal asset it should be tagged with a new group asset.
    2. Try to use SAP standard delivered dep. keys.
    3. Change asset value date determination in SPRO.
    4. Tagged group asset into the normal asset master.
    5. Check tax dep.figures under group asset.
    Regards
    Anuj Agarwal

Maybe you are looking for