Convert to Household/Move Transactions

Just wondering if those sites that have been up on v.11 have developed some rules/guidelines for when to use Convert to Household vs Move Transaction.    

I mainly see the Convert to Household being used when there is more than just Transaction that need to moved such as events, activities, and salutations as well as Affiliations/Associations.   

Move Transactions is used when only transactions and related records are involved. 

Thanks

 

 

 

Parents
  • You can’t have a household that doesn’t have at least one individual member.

     

    If you have a man and woman married to each other and sharing the same last name, with standard Mr./Mrs. prefixes, it is better to make Mr. the A1 so that household salutations  get created  properly.

     

    I wish that it was as easy to move constituencies, attributes, postal addresses, and other such information among members of a household the way you can move eaddresses…

     

    Lucie

     

    _____________________________
    Lucie Spieler
    IT Development and Training Manager

    Editor, Season Program Book

    FLORIDA GRAND opera

  • Unknown said:
    I wish that it was as easy to move constituencies, attributes, postal addresses, and other such information among members of a household the way you can move eaddresses…

    I agree: the "transfer owner" button would be very handy to have under all the radio buttons under Contact Details, as well as Attributes, Consts, Relationships; basically almost anywhere that the "group by constituent" functionality exists.

  • I've been meaning to post this little bit of list SQL - and this thread seems like a good place. This is only useful if your business rules are to push all transactions to the household and you want to check to find people where this hasn't happened. (This could be the result of a merge or someone forgetting to move transactions to household when affiliating them to a household account)

    I put this SQL in a list via manual edit - it looks for anyone who is in a household but has orders or contributions still on their account (it doesn't check for everything, but these are the big guns for us).

    Then I scheduled the 'Generate a List' report which is mailed to my box office who goes through and checks the accounts and cleans them up. It helps keeps our data consistent so we don't have random orders on an A1 or A2 until we actually WANT them there in later Tessi versions.

    Anywho - just in case it is useful to someone out there!

    select distinct(ch.customer_no)

    from

    (SELECT distinct(customer_no) from V_CUSTOMER_WITH_PRIMARY_AFFILIATES 

    where name_ind in (-1,-2)

    and cust_type = 1 ) as ch

    JOIN dbo.T_ORDER o on ch.customer_no = o.customer_no

    UNION

    select distinct(ch.customer_no)

    from

    (SELECT distinct(customer_no) from V_CUSTOMER_WITH_PRIMARY_AFFILIATES 

    where name_ind in (-1,-2)

    and cust_type = 1 ) as ch

    JOIN dbo.T_CONTRIBUTION c on ch.customer_no = c.customer_no

Reply
  • I've been meaning to post this little bit of list SQL - and this thread seems like a good place. This is only useful if your business rules are to push all transactions to the household and you want to check to find people where this hasn't happened. (This could be the result of a merge or someone forgetting to move transactions to household when affiliating them to a household account)

    I put this SQL in a list via manual edit - it looks for anyone who is in a household but has orders or contributions still on their account (it doesn't check for everything, but these are the big guns for us).

    Then I scheduled the 'Generate a List' report which is mailed to my box office who goes through and checks the accounts and cleans them up. It helps keeps our data consistent so we don't have random orders on an A1 or A2 until we actually WANT them there in later Tessi versions.

    Anywho - just in case it is useful to someone out there!

    select distinct(ch.customer_no)

    from

    (SELECT distinct(customer_no) from V_CUSTOMER_WITH_PRIMARY_AFFILIATES 

    where name_ind in (-1,-2)

    and cust_type = 1 ) as ch

    JOIN dbo.T_ORDER o on ch.customer_no = o.customer_no

    UNION

    select distinct(ch.customer_no)

    from

    (SELECT distinct(customer_no) from V_CUSTOMER_WITH_PRIMARY_AFFILIATES 

    where name_ind in (-1,-2)

    and cust_type = 1 ) as ch

    JOIN dbo.T_CONTRIBUTION c on ch.customer_no = c.customer_no

Children