Tricky Family Structures

Hi to all,
I am trying to get some information about families: So what I have is:
-a primary key for each member (individual_id)
-a key which indicates members of a familiy belonging together (fam_key)
-an attribute for the age of each member
-a sexcode to identify sexe
All that i want is to segment the data I have, e.g. all families which members are between 0 and 19 years old, all families which members are between 20 and 26 years old and so on.
The thing is I do not know if there is a analytic function can handle this kind of problem. At the moment I am trying with ROW_NUMBER() OVER( PARTITION BY FAM_KEY ORDER BY AGE DESC) so I can get all the family numbers, which oldest members are 19 years old. But when starting with the next segment (20-26 aged members) the things are getting more complicated. So what I need is a way to narrow the upper and lower age borders of my families.
Any help is very appreciated!!
Thanks in advance,
Thomas

What about something like this
Processing ...
WITH INPUT AS (
     select object_name as family,
          procedure_name as member,
          trunc(dbms_random.value()*100)+1 as age,
          DECODE(TRUNC(dbms_random.value()*2),1,'F','M') AS SEXCODE
     from dba_procedures
     where owner ='SYS'
          and object_name in (
               select object_name
               from dba_objects
               where owner = 'SYS'
                    and object_type in ( 'PROCEDURE','FUNCTION','PACKAGE' )
                    and rownum < 20
          AND procedure_name IS NOT NULL
SELECT *
FROM INPUT
WHERE FAMILY IN (
          SELECT FAMILY
          FROM INPUT A
          WHERE NOT EXISTS (
                    SELECT NULL
                    FROM INPUT B
                    WHERE B.FAMILY = A.FAMILY
                         AND NOT B.AGE BETWEEN 10 AND 90
UNION ALL
SELECT FAMILY,
     '_MIN' AS MEMBER,
     MIN(AGE),
     TO_CHAR(COUNT(*))
FROM INPUT
GROUP BY FAMILY
UNION ALL
SELECT FAMILY,
     '_MAX' AS MEMBER,
     MAX(AGE),
     NULL
FROM INPUT
GROUP BY FAMILY
ORDER BY FAMILY,MEMBER
Query finished, retrieving results...
FAMILY                     MEMBER                    AGE   SEXCODE 
DIUTIL                     ATTRIBUTE_USE_STATISTICS   86        F         
DIUTIL                     BOOL_TO_INT                84        M         
DIUTIL                     GET_D                      24        M         
DIUTIL                     GET_DIANA                  36        F         
DIUTIL                     INT_TO_BOOL                61        M         
DIUTIL                     NODE_USE_STATISTICS        19        F         
DIUTIL                     PSTUB                      77        F         
DIUTIL                     SUBPTXT                    46        F         
XML_SCHEMA_NAME_PRESENT    IS_SCHEMA_PRESENT          89        F         
9 row(s) retrievedBye Alessandro

Similar Messages

  • Role of Family Mode in Web Publishing

    According to MDM documentation, Families can also play a role in web publishing. They are absolute essential in DTP, I agree. But how can the same family structure be used to publish data on the web? I see vague reference about using families to publish data on web without any example or guideline how to do that. Has anyone done this and how?
    Regards,
    -Y

    According to MDM documentation, Families can also play a role in web publishing. They are absolute essential in DTP, I agree. But how can the same family structure be used to publish data on the web? I see vague reference about using families to publish data on web without any example or guideline how to do that. Has anyone done this and how?
    Regards,
    -Y

  • How About Some Standard Standards For Keyword Hierarchy?

    After reading Wolf Eilers post in the "Respect Keyword Hierarchy when importing" thread, I tried his example and exported a RAW file with the "Outdoor>Landscape" example he gave and then re-imported the jpeg. It came back in with Landscape as the parent of Outdoor, that is backwards from what I intended. Go figure.
    If LR respects ">" as indicating a parent-child relationship between keywords it is fine with me. However, Microsoft decided to use "/" because there is apparently no XMP standard for keyword hierarchies. Wouldn't it be nice if Adobe, Microsoft, and Apple too got together and set a defacto standard for keyword hierarchies. As it is now, I can create a keyword "Outdoor/Landscape" in LR and have it appear in Vista Photo Gallery with Landscape as a child of Outdoor. However, if re-imported into LR it comes in as "Outdoor/Landscape". Can't we just all get along?

    Absolutely no. A completely pointless exercise. As there can be no standard for such a thing. As people have so many, very different ways of filing things. It like suggesting that we all use the same folder tree for filing on our computers. Our relationship to keywords and their meaning will change.
    Take Brad Pitt, would you put him under Actor, celebrity or relative. His mum would file him under Son/Family.
    What about places. I use UK, Europe, Asia, Africa...as top level domains. Now someone who lives in Japan would have Japan as home and the UK as Europe/UK. Some people may like to file musical acts by city of origin, others by genre, neither is wrong and both are correct for the right person. Being able to do both would be even better.
    You just design a heirachy that suits yourself. Adobe just has to find a way of respecting that and allowing you to transfer that heirarchy intact between apps.
    Someone else posted this example of heirachy. Which will work well for some, but not for others. Plus, in context of what you ask, remember everyone's family structure is different so how can you possibly have a 'standard' heirachy.
    http://www.flickr.com/photo_zoom.gne?id=98612897&size=o
    In your example above, I wouldn't use Outdoor and Landscape as Landscape. As for my filing I simply do not have an inside and outside category. I probably wouldn't even have a landscape category either, I would file them under location in a heirachical tree like UK/Wales/West Glamorgan/Gower/Rhosilli/Headland. I may add Landscape as a key word, but would not use it as a category as the heirachy tree above makes more sense to me as I can remember where things are.
    I also file everthing by date in my OS as I can remember when I took things reasonably well and that ensures I have a coherent filing system onto which I can apply a database.

  • HOW TO COLLECT AN APPLICATION GIVEN TO SOMEONE ?

    I HAVE GIVEN TO SOMEONE AN APPLICATION, I PAY FOR IT TO HIS ACCOUNT, HOW CAN HE COLLECT HIS GIFT, THIS APPLICATION ?

    AFAIK, there is no practical way to do this without altering the application itself. Application packages (should) contain resources (typically in an info.plist) that the OS queries to learn what document types they claim they can open. The process is dynamic: as you add or remove application packages the OS automatically updates the database.
    But before you jump in & start modifying info.plist files, you should know that there are several ways to identify a particular document type: by filetype extension, by MIME type, by UTI (Uniform Type Identifier), etc. The OS uses any or all of this to determine a document's type, what icon to assign to it, & so on. There is also a hierarchic family structure to consider (as explained in Simplifying Data Handling with Uniform Type Identifiers) as well as related key/value pairs in the plist entry that the OS may require for your modification to work as expected.
    And just because you add an entry into the plist there is no guarantee that the app actually will open the document -- for instance, it may be programmed to recognize only certain document types in a system provided open dialog box & others via an internal import/translation procedure.
    To get an idea of what is required, you might start by examining the info.plist file of something like TextEdit with Property List Editor (part of the developer tools package). Check the entries in the "Document Types" key & compare them to those of the app you want to change, probably the "NSRTFPboardType" items for rtf files.
    If you decide to try modifying the app, it is a good idea to save a copy of the original plist file.
    If all this seems more than you want to get into, you might consider a workaround: add the app to the Dock with the "Keep in Dock" option & then just drag & drop the documents onto it when you want to open them with that app.

  • Font Resizing use Baseline by Default

    I think font resizing could be inproved by not changing the resize box larger when clicking the bounding box that surrounds a font and also by resizing from the baseline rather than center of bounding box.
    Just my thoughts.

    The internal "family" structure of a font ie what is considered Roman, Italic, Bold and Bold Italic is set in an internal table in the font, by the designer. Frequently there is no such "family" relationship.
    You may have to edit the font yourself, there is a short list of applications that will do this. Make sure you clearly label them afterwards to distinguish them from the current set.
    Peter

  • Error in Personal addre/Family---Country/Structure do not match application

    Hi Experts
    I am on Ecc 6.0 and using ESS webdynpro applications for molga 28 and 42. While using Personnel address/ Family member, I am getting the following error:
    Critical Error
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    Country/Structure do not match application country
    I read all the threads relating to this issue but have no solutions,
    my user do have correct MOL and UGR setting in parameters and his personnel number has corresponding correct record in PA0003 IVWID field.
    Also, I read note 936179, but molga 28 and 42 doesn't apply for this note actually.
    Would you please give some hint? Thanks very much.
    Regards,
    Sophie Que
    Edited by: Sophie Que on Aug 3, 2010 11:18 AM

    This error is most likely caused when the role assigned to the user includes a service and resource definition which is either pointing to a country specific service that differs from the MOLGA assigned to the PERNR associated with this ESS user
    or has a missing defintion or link entirely
    For example - the user with Taiwan MOLGA 42 must be assigned a Portal role than ensures when they call
    generic service key EMPLOYEE_PERSINFO_ADDRESS - it will call taiwan resource
    EMPLOYEE_ADDRESS_TW_SERVICE05 - which is defined with the exact location of the Taiwanese address
    iview in the URL of PCD page resource definition
    Hope this helps
    A complete list of all HpF tables and their relationships is available from the following wiki
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/InitialStepsin+ESS
    Best wishes
    Stuart

  • Data & Family Plan Changes

    Essentially I'm in search of definitive answers to the upcoming changes to the data paln services provided by Verizon.  I've read a lot of posts in which some show benefit and some do not for what I may require after this paln change.  I'm just looking for round dollar figures and why this may or may not work for me.  Now we ahve three Smart devices (1 Droid with unlimited, 1 iPhone with limited data and 1 Galaxy Tablet with imited data) and two standard phones with no data services.  In keeping things the way they are I would imagine there would be no change to my bill until a renewal is due.  Now if I wanted to change the two plain mobile phones to Smart devices, I guess this is where things get tricky and prices may escalate (don't know for sure but trying to get answers).  If I upgraded the other two to Smart phones, I would then have 5 smart devices on my plan sharing about 1400 voice minutes. I suppsoe I'm looking at a $300-$300+ bill per month based on the addition of data services whether they're the lowest possible per device or not.  Is this true?  Ironically we're also looking to add at least two iPads as well.  Datahog, maybe we are and maybe we're not but it appears that this new structure will hurt quite a bit.  It focuses on increasing revenue from data usage, per device.  It seems to erase the benefit on having a family plan or migrating to one.  Having data services have become a luxury my family is getting accustomed to because it allows you and your children to continue to work or do homework even while away or taking road trips.  Again I'm not speaking as an expert on this matter but am simply trying to see what works best for me and my family.

    Wane wrote:
    Essentially I'm in search of definitive answers to the upcoming changes to the data paln services provided by Verizon.  I've read a lot of posts in which some show benefit and some do not for what I may require after this paln change.  I'm just looking for round dollar figures and why this may or may not work for me.  Now we ahve three Smart devices (1 Droid with unlimited, 1 iPhone with limited data and 1 Galaxy Tablet with imited data) and two standard phones with no data services.  In keeping things the way they are I would imagine there would be no change to my bill until a renewal is due.  Now if I wanted to change the two plain mobile phones to Smart devices, I guess this is where things get tricky and prices may escalate (don't know for sure but trying to get answers).  If I upgraded the other two to Smart phones, I would then have 5 smart devices on my plan sharing about 1400 voice minutes. I suppsoe I'm looking at a $300-$300+ bill per month based on the addition of data services whether they're the lowest possible per device or not.  Is this true?  Yes. Ironically we're also looking to add at least two iPads as well.  Datahog, maybe we are and maybe we're not but it appears that this new structure will hurt quite a bit.  It focuses on increasing revenue from data usage, per device.  It seems to erase the benefit on having a family plan or migrating to one.  Having data services have become a luxury my family is getting accustomed to because it allows you and your children to continue to work or do homework even while away or taking road trips.  Again I'm not speaking as an expert on this matter but am simply trying to see what works best for me and my family.
    This all depends on your data usage. if you were to add 2 smartphones AND 2 ipads, your current bill would increase by about $100 i believe (maybe even more). you have a few options.
    you could change to the plan and have 5 smartphones and 3 tablets sharing 15gigs of data for $380.
    you could use your smartphones as hotspots and wouldn't need to add the 3 tablets to the plan, for $350 ($380-the 3 $10 tablet fees).
    if you will use less than 15 gb's it could be cheaper (in the first example, if you shared 10 gb's it would be $330). it really just depends on how much data you use. your devices are capped now (except for the one device with unlimited) so i suspect if you check out your total data usage for the past few months, you may be under 10 gigs. if that's the case, then you'll save $ on the new shared plans.

  • Multiple ipods belonging to multiple family members on one computer

    How do I keep my family's libraries separate on one computer. I have been checking and unchecking songs each time I sync one of my children's ipods. It is driving me nuts. There has got to be a better way. My husbands library alone so far is 1300 songs. HELP!

    When the iPods belong to different people, there are basically three ways of using multiple iPods on a computer and these involve:
    a) Sharing a single iTunes library
    b) Creating Multiple Libraries in a single user account
    c) Creating multiple user accounts.
    Note: When you are sharing an iTunes library, you don't have to set each iPod to update in the same manner, you can mix and match from the options below as each iPod has it's own update settings
    Sharing a Library and/or User Account
    If you want to share the one library, you can set either or all of the iPods so that they only get updated with only certain playlists (you can update from more than one if you wish): iPod - Syncing Music
    Choosing the update option "Sync Music - Selected playlists" allows you to create a playlist specifically for the iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used some other time if you choose. You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes
    Or you can choose to update any or all of the iPods manually and just drag whatever content you want to them: Managing content manually on iPod and iPhone
    Loading the iPod shuffle differs slightly but it can still be used with the others, for details have a look at this page: Adding songs to iPod shuffle - Windows
    Multiple Libraries
    It's also possible to have multiple libraries in a single account. To create or access a second (or more) library, hold down the Shift key in Windows when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library.
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one. This can prove tricky when using multiple iPods, if you don't use the keyboard command you can risk syncing to the wrong library: Using multiple iTunes libraries -Windows
    Separate User Accounts
    Another option is to create a separate User account for each person on your PC or Mac. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists
    I don't use Windows so I can't give you a step by step on that one, however I can point you to another web page which should help you out. You can read about Windows user accounts here:
    Using Windows XP User Accounts
    Create A New User Account In Vista

  • Import statement and directory structure

    First of all, sorry for such a long post, I believe part of it is because I am unsure of the concept of importing in Java. Secondly, Thanks to anyone who can ultimately enlighten me to the concept of import. I did ask this question before in the "erorr and error handling" forum, and the people who have helped me there did a great job. But, I believe I require a little more clarification and thus have decided to post here.
    Anyhow, my question..
    Could someone explain to me the concept of the import statement, or direct me to a webpage with sort of explanation for newbies? For some reason, I am having a hard time grasping the concept.
    As I understand it, the import statement in Java, is very similar to the namespace keyword in C. That is to say, import doesn't actually "import" any source code, the way that the #include statement does in C.
    So I suppose what my question is, say I have a java class file like below:
    //filename: sentence.java
    //located: c:\school\csc365
    package csc365;
    class sentence
    //some variables here..
    //some constructor here..
    //some methods here..
    And some sample program like the one below which implements the above..
    //filename: test.java
    //located: c:\school\csc365
    import csc365.*;
    import java.io.*;
    class test.java
    //creates some sentence object
    //uses the object's methods
    //some other things.
    As I understand it, the test.java file should not compile because the csc365 package is not in the correct directory. (assuming of course, the classpath is like c:\school\csc365;c:\school )
    But, ... where then should the sentence.java be located? In a subdirectory of c:\school called csc365 (i.e c:\school\csc365\) ?
    And thus that would mean the test.java file could be located anywhere on the hard drive?
    I suppose, I just need a little clarification on the correlation between a package's "name" (i.e package csc365; ) and its corresponding directory's name, and also how the javac compiler searches the classpath for java classes.
    ..So, theoretically if I were to set the classpath to look in every conceivable directory(provided the directory names were all unique) of the harddrive, then I could compile a test.java anywhere?
    As a note: I have been able to get the test.java file to compile, by leaving out the import statement in the test.java file, and also leaving out the package statement for the sentence class, but I assume this is because the files are defaulted to the same package?

    Hi Mary,
    No, import isn't analogous to C++ namespace - Java package is closer to the namespace mark.
    import is just a convenience for the programmer. You can go your whole Java career without ever writing an import statement if you wish. All that means is that you'll have to type out the fully-resolved class name every time you want to use a class that's in a package other than java.lang. Example:
    // NOTE: No import statements
    public class Family
       // NOTE: fully-resolved class names
       private java.util.List children = new java.util.ArrayList();
    }If you use the import statement, you can save yourself from typing:
    import java.util.ArrayList;
    import java.util.List;
    public class Family
       // NOTE: fully-resolved class names
       private List children = new ArrayList();
    }import isn't the same as class loader. It does not bring in any source code at all.
    import comes into play when you're compiling or running your code. Java will check to make sure that any "shorthand" class names you give it live in one of the packages you've imported. If it can't find a matching fully-resolved class name, it'll give you a message like "Symbol not found" or something like that.
    I arrange Java source in a directory structure that matches the package structure in the .class files.
    If I've got a Java source file like this:
    package foo.bar;
    public class Baz
       public static void main(String [] args)
            Baz baz = new Baz();
            System.out.println(baz);
       public String toString()
           return "I am a Baz";
    }I'll store it in a directory structure like this:
    root
    +---classes
    +---src
          +---foo
               +---bar
                    +---Baz.javaWhen I compile, I go to root and compile by typing this:
    javac -d classes foo/bar/*.javaI can run the code from root by typing:
    java -classpath classes foo.bar.BazI hope this wasn't patronizing or beneath you. I don't mean to be insulting. - MOD

  • DataGrid ItemRender and font family

    i am writing a custom data grid ItemRender that, for every
    cell, displays a numeric value. Additionally, if the xml data
    structure defines an attribute for a given row, it is supposed to
    display a colored arrow in the same cell.
    Reading the data and determining if to display the arrow, and
    the color of the arrow work fine. I am trying to embed the
    windgings font to display the arrow, that way I can set the color
    programatically. As I said, reading the data works fine, the
    coloring of the 'arrow' works fine. My problem is I cannot change
    the fontFamily of any label in the item renderer. Even the entire
    renderer itself. Below is my code, followed by several other things
    I have tried. Thanks for the help.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:HBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%" height="100%"
    implements="mx.controls.listClasses.IDropInListItemRenderer"
    horizontalScrollPolicy="off" verticalScrollPolicy="off">
    <mx:Style>
    @font-face
    src: local("wingdings");
    fontFamily: myArrowFont;
    font-anti-alias-type: advanced;
    font-weight: bold;
    .arrowStyle
    fontFamily: myArrowFont;
    font-weight: bold;
    font-size: 12;
    </mx:Style>
    <mx:Script>
    <![CDATA[
    import mx.controls.listClasses.BaseListData;
    import mx.controls.dataGridClasses.DataGridListData;
    protected var _listData:DataGridListData;
    public function get listData():BaseListData
    return _listData;
    public function set listData(value:BaseListData):void
    _listData = DataGridListData(value);
    invalidateProperties();
    override public function set data(value:Object):void
    super.data = value;
    cellArrow.setStyle('color',value[_listData.dataField].@color);
    switch(value[_listData.dataField][email protected]())
    case 'up':
    cellArrow.text = 'é';
    break;
    case 'down':
    cellArrow.text = 'ê';
    break;
    case 'equal':
    cellArrow.text = 'd';
    break;
    default:
    cellArrow.text = '';
    break;
    cellText.text = value[_listData.dataField];
    ]]>
    </mx:Script>
    <mx:Label id="cellText" text=""/>
    <mx:Spacer width="100%"/>
    <mx:Label id="cellArrow" styleName="arrowStyle"
    text=""/>
    </mx:HBox>
    I have tried using <mx:Label id="cellArrow"
    fontFamily='myArrowFont'/>
    I have set the fontFamily='myArrowFont' in the base HBox tag
    as well, and it doesn't change the font of either the cellArrow or
    cellText label.
    I have also used
    cellArrow.setStyle('fontFamily','myArrowFont') in the override set
    data method.
    I have written the same component in ActionScript
    implementing the same functionality.
    The cellArrow label's text and color are set correctly to the
    data, however I cannot get the font to change to windgings.
    I have tried setting the DataGridColumn fontFamily to the
    wingdings font, and all it does is change the header text of the
    column, not any of the rows.
    The actual datagrid is created entirely in actionscript,
    because it is part of a control that will build a datagrid with X
    number of columns, defined in a data structure. That code works
    fine as well, and is below, incase it helps.
    //_dataP is an XMLList from an httpservice or web service
    that defines our grids
    var colsX:XMLList = _dataP..column; //get an xmllist of our
    columns
    var len:int = colsX.length(); //and store the length
    var cols:Array = new Array(); //create an empty array to hold
    each column
    var col:DataGridColumn; //a data grid column reference
    for(var i:int = 0; i < len; i++)
    col = new DataGridColumn(); //create a new column
    col.headerText = colsX
    .@text; //set the header text
    col.dataField = colsX.@field; //and data field
    col.itemRenderer = new ClassFactory(quadBoxItemRenderer);
    cols.push(col); //add it to the array
    _grid.columns = cols; //set our columns array as the columns
    of the grid
    var rows:XMLList = _dataP..row;
    _grid.rowCount = (rows.length() == 0) ? 1 : rows.length();
    _grid.dataProvider = rows; //and give it the list of rows
    _grid.percentWidth = 100;
    _gridBox.addChild(_grid);
    any help is vastly appreciated. Thanks.

    Disregard my question - I've unfortunately failed to check the font-family string as submitted by the server and it turned out to still have a colon character in front of it...
    I guess I've spent a few too many nights working on this making me susceptible to tiredness and a strangely blank mind...
    My apologies,
    Rogier

  • I am trying to import photos into PSE 12 from folders on my desktop, which are organized by broad topics--family, vacations, etc..  Many of my photos are located in several folders.  When I try to import them to PSE I get a message saying some photos were

    I am new to PSE 12 and am trying to import my photos from folders on my desktop which I have organized by the categories I had in my previous program (Creative Memories).  Many of my photos are located in multiple folders, i.e. one photo could be in "Family," Vacations" and "Birthdays."  When I try to import the contents of each folder on my desktop I am often getting the message that many of my photos were not imported as they are already in my catalog.  Is there a way that I can import any one photo multiple times so that it ends up in all the folders I want it to be in?  I know I can locate the photo in PSE and copy it to a different folder(s), but there are so many not being imported that this would be a huge task!

    By design, the organizer (and any other database management systems) is there to prevent you from duplicating your media files. The catalog management allows you to have the same image in different categories or albums. Duplication in different folders is to be absolutely avoided.
    The same image file can have multiple tags like 'family', 'vacations', 'birthdays' and be present in three different albums with the same names. On obvious advantage is less disk space. Another one with your present folder system is that if you edit one of your duplicates, the other ones are unchanged.
    I don't see an easy way to make your present folder structure simplified for the organizer ...

  • Issue with Formula on Brand Family Level

    Hi Friends,
    we are facing issue with the formula while showing the report output.
    Following is the scenario.
    BrandFamily(Char),Material(Char),Comp(Char), Kf1(Keyfig) ,Kf2(Keyfig)
    Data Records:
    1st Record  -
    >    B1, M1,  200, 100
    2nd Record -
    >    B1, M2,  500, 400
    3rd Record -
    >   B2, M3,  100,  300
    4th Record -
    >   B2, M4,  600, 200
    Formual --> If Kf1>Kf2 then Kf1 Elseif Kf1<Kf2 then Kf2
    1) Report displayed based on the BrandFamily and Material , then the report shows correctly as below
    Report Structure :- Brandfamily , Material are in Rows and the Colum has the Formula (that was mentioned above)
    Report Output :-
    B1 M1 200
    B1 M2 500
    B2 M3 300
    B2 M4 600
    On Summing , For B1 , Value is 700. For B2, Value is 900.
    2) 1) Report displayed based on the BrandFamily , then the report  shows wrongly for the formula value  as shown below
    Report Structure :- Brand Family is in Rows and the Colum has the Formula (that was mentioned above)
    Report Output:-
    B1 700
    B2 700
          Here For B1, Value is 700 which is matching with the earlier output
    Whereas For B2, Value is 700 which is not matching with the earlier output.
    The Value for B2 is wrong because the formula has not processed correctly the 3rd record .
    The report summed up the 3rd and 4th records and then applied the formula , because of which the issue.
    This is because the Values kf1 and Kf2 are based on the material and as the material is not part of the Rows .
    Thankyou in advance.
    LNV

    a more simpler solution.
    open the kf in edit mode which has the condition
    create two formula variables  as follows.
    BRANDFAMILY
    replacement path ,  reference characteristic brand famility
    got replacement path tab-> replacevaue with as ' infobject'  replace with as 'attribute value'  , attribute constant 1.
    MATERIAL
    replacement path ,  reference characteristic material.
    got replacement path tab-> replacevaue with as ' infobject'  replace with as 'attribute value'  , attribute constant 1.
    MODIFY the KF as
    BRANDFAMILY * MATERIAL *  condition.
    had exactly same  requirement

  • ITunes and Apple IDs: Multiple family users

    Hello everyone,
    As many people do we started off our use of iTunes in a modest way: one couple, one computer, one ipod. Then the iTunes store came along and we continued with that setup. Then things gradually became more complicated to the point where we now have a family of users:
    User 1, Dad: Intel iMac, 3rd Gen iPod, iPhone 4s. Old Dotmac alias1
    User 2, Mum: Intel iMac (different one from Dad), iPod nano, iPhone 3Gs, iPad. Old Dotmac alias2
    User 3, Daughter: shares Intel iMac with Mum, iPod nano, iPad mini. Old Dotmac alias3
    So, these are all under my Apple ID. This worked okay until recently (with iCloud I think). Changes that were happening with other people's devices were getting synced onto my device without me knowing about it. One day I was sending work emails from my phone but everyone was seeing my wife's personal profile that she had updated. I fixed it, only to discover she was now sending emails as me. Also when I my wife purchased an app it started downloading onto my iphone. This isn't a massive problem really, and may even be fixable but I think things would be tidier if we all separated into three Apple IDs with user names from the Dotmac aliases we have been using for years.
    This bit is easy but then there is the tricky bit: We have a lot of content that we bought under our shared ID that needs farmed out. I don't much care for Rihanna or Glee but my daughter has bought a lot of that 'music' under my Apple ID and on my credit card. She is now old enough to have her own Apple ID and has her own bank card to purchase. It only makes sense to do this becuase she has to grow up some day! If we do this will she be able to access her previous purchases or will she then become locked out from them?
    Also, can my wife and I share an Apple ID and maintain our separate personal information? We like the transparency of sharing the account (and email address), but I don't want to have the "me" in the address book being my wife. Would we be better to create individual ID's?
    Thanks for the help.

    Thanks for the reply Roger,
    That seems silly that when a child grows up they either have to remain tied to dad's iTunes account or loose all their content. I for one wouldn't be too keen on having a separate Apple ID and iTunes account for a young child. I liked the protection level I was able to provide when necessary. Surely it ought to be possible for me to make a one-off permanent transfer of all her items from my AppleID to her new AppleID (I'll certainly not miss Lady Ga Ga). Surely Apple have heard of this core concept of a family: kids grow up.
    Regardless, I've now cracked it! Permission to use purchased items is based on the principle of authorising computers through an Apple ID. All our computers are authorised to access items on my Apple ID, and as it turns out I can additionally authorise the computer my daughter uses to access items purchased on her new Apple ID. All her items now synchronise to her iPad, and she can purchase independently from now on. The only drawback is that any computer she purchases in the future has to be authorised by my Apple ID as well as her own. This should always be possible if we stay on good terms .
    With regard to email. I've cracked that too. With Five products accessing the same email address the inconsistencies were killing us. Establishing identical mailbox behaviours and setting a shared identity name solved the syncrhonising war of her setting overriding mine, to then be overriden in turn. Compromise, as in many marriage issues, was the way to harmony .

  • Family members dependent scenario

    Hi all
    i have got a problem.
    The problem is related to IT 21.
    Actually one of our application fetches the family dependents data from the IT21.
    We need that if a daughter gets married there should be some meachanism or some flag ..that can tell the system that now the girl has married and she will be excluded from the family members.
    How can i do this.
    regards
    nikki

    Hi for your reference
    1) Go to Transaction PM01.
    2) Enter the custom Infotype number which you want to create (Should be a 4 digit number, start with 9).
    3) Select the ‘Employee Infotype’ radio button.
    4) Select the ‘PS Structure Infotype’.
    5) Click on Create… A separate table maintenance window appears…
    6) Create a PS structure with all the fields you want on the Infotype
    7) Save and Activate the PS structure
    8) Go back to the initial screen of PM01.
    9) Click on ‘All’ push button. It takes a few moments.
    10) Click on ‘Technical Characteristics’. Infotype list screen appears
    11) Click on ‘Change’(pencil) button
    12) Select your Infotype and click on ‘Detail’ (magnifying glass) button
    13) Give ‘T591A’ as subtype table
    14) Give ‘T591S’ as subtype txt tab
    15) Give your subtype field as subtype field
    16) Save and come back to PM01 initial screen
    17) Click on ‘Infotype Characteristics’ … Infotype list screen appears
    18) Click on ‘Change’ (pencil) button
    19) Click on ‘New Entries’
    20) Enter your Infotype number and short text
    21) Here we have to set different Infotype Characteristics as per the requirement. (Better open another session with some standard Infotype’s infotype characteristics screen and use as the reference to fill yours)
    22) Save your entries.
    23) Now the Infotype is created and ready to use.
    24) If you want to change the layout of the Infotype as per your requirement…
    25) In the PM01 initial screen…Select ‘Screen’ radio button and give 2000 as the screen name, then click on edit.
    26) In the next screen.. Select ‘Layout Editor’ and click ‘Change’.
    27) Screen default layout appears…here you can design/modify the screen..change the attributes of the fields..etc.
    28) Save and activate. (Don’t forget to ‘Activate at every level)

  • What is the best family email strategy with iCloud?

    Hello,
    What would be the best way to structure our family email setup?
    Our goals are:
    -to get the most functionality from icloud
    -access email from desktops, laptops, and iOS devices with as much syncing as possible
    -to allow each user to have control over what emails are deleted and such
    -keep our old email address so we don't lose touch with others who contact infrequently
    -I'd like to have different preferences than she does when it comes to junk mail filtering
    -to change email addresses as little as possible, hopefully not at all
    Here's the scenario:
    She uses:MacBook, and an iPhone and wants the two synced together
    I use: a different MacBook (older one,) iPhone, and iCloud.com and want the three synced
    My Daughter uses a Nook to access only her email (not been a problem)
    We have a family verizon.net email address. We want emails from that address to go to our devices but if one of us deletes an email we don't want the other to have it deleted. However, if I delete it on MY phone, I want it deleted on MY laptop. (synced by user)
    We also have our individual iCloud email addresses. This is used for individual emails that go to one or the other of us but not both, and is synced between our devices but not across users.
    Current Status:
    I have verizon.net forwarding all emails to her icloud address (it can only forward to one) and then her icloud forwards it to mine.
    Problem:
    When I delete emails on my login (I think mine is the master account and hers is a secondary one) sometimes, perhaps all the time, they are deleted on her devices.
    Also, she wants her return and sent from address to be the verizon.net address to not confuse people.
    I hope this makes sense! If I could draw a picture it might be clearer.
    So, what do you all think????
    Thanks!

    Unfortunately iCloud can't be used to manage your verizon email account, verizon email has it's own settings and is nothing to do with iCloud. However that being said it sounds like the verizon account may be an IMAP account and it sounds like you want a POP account. Have a word with Verizon to see if they offer this.

Maybe you are looking for