Constituent Import - business title

Hi Tessitura Network,

I regularly do constituent imports, and have not yet found a way to easily (read: not manually!) import a Business Title field to be included in the new constituent records.

Is there a way to include this when using the Constituent Import Utility?

Cheers,

David

  • To my knowledge, that would be a customer mod to the Constituent Import Utility.

    • create your own copy of the procedure AP_CONSTITUENT_IMPORT
    • create a new version of TW_CONSTITUENT_IMPORT and add the business title column
    • replace all references to TW_CONSTITUENT_IMPORT with your new table name
    • create a business title variable in the newly created version of the import proc
    • modify the fields for the dynamic SQL view and trigger that get created by the proc to include business title
    • add business title to the table variable @tblSals
    • add business title to the cursor CI_CURSOR
    • add business title to the insert statement to tx_cust_sal
    • update the report to hit your new proc

    I think that's it.....

    Regards,

    Matt

     

  • David, I'm doing my first import that is not all Individuals.  How does the import process work for Corporations, Foundation and Government Agencies?

    For instance, I know I can create a household account with two individuals during the import.  Can the same thing be done for a Corporation with an affiliated Individual?  How about with more than one affiliated Individual?

    Is the import format the same for all constituent imports?  If so, then I can see a lot of manual data entry in my future...

    Thanks!



    [edited by: Craig Badinger at 4:05 PM (GMT -6) on 18 Sep 2013]
  • Hi Craig,

    I've only ever imported individuals to be honest! I've not even gone down the path of doing Households as yet.

    Sorry I can't be of more help,

    David

  • That’s OK, thanks for responding.  The good news for you is that households is easy.  I managed it without a hitch.

     

    Craig Badinger

    Donor Relations Manager

    305.929.7000 x 1412

    2200 Liberty Ave.
    Miami Beach, FL 33139


    miamicityballet.org

    facebook | twitter | mcb blog

    From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of David Geoffrey Hall
    Sent: Wednesday, September 18, 2013 6:54 PM
    To: Craig Badinger
    Subject: Re: [Tessitura Technical Forum] Constituent Import - business title

     

    Hi Craig,

    I've only ever imported individuals to be honest! I've not even gone down the path of doing Households as yet.

    Sorry I can't be of more help,

    David

    From: Craig Badinger <bounce-craigbadinger6046@tessituranetwork.com>
    Sent: 9/18/2013 4:04:57 PM

    David, I'm doing my first import that is not all Individuals.  How does the import process work for Corporations, Foundation and Government Agencies?

    For instance, I know I can create a household account with two individuals during the import.  Can the same thing be done for a Corporation with an affiliated Individual?  How about with more than one affiliated Individual?

    Is the import format the same for all constituent imports?  If so, then I can see a lot of manual data entry in my future...

    Thanks!




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

  • Hi,

    I've created a version of the Constituent Import which will import Companies and any affiliated Individuals. I'm checking for the existence of the Company and only creating it if it's not in the database, but the check I'm doing on the Individual only happens on Individuals already affiliated to the Company. It does mean that I sometimes get duplicates created - if the Individual is already on the database but has no current affiliation to the Company.

    I can post a copy of the code if you like. Its based around the standard import and I've commented the changes.

    Debbie 

  • Hi Debbie,

    I'd love to have your code if possible?!

    Thank you,

    David Geoffrey Hall

  • Former Member
    Former Member $organization

    Good day, Debbie …

     

    We’re still relatively new, and we’d be very grateful for code samples.

    Like many others, I’d would like to see your code.

     

    Best Regards

    Wendell Baskin

    Bass Hall – Fort Worth

    wbaskin@basshall.com

     

     

     

     

    From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of Debbie Harland
    Sent: Thursday, September 26, 2013 10:29
    To: Wendell Baskin
    Subject: RE: [Tessitura Technical Forum] Constituent Import - business title

     

    Hi,

    I've created a version of the Constituent Import which will import Companies and any affiliated Individuals. I'm checking for the existence of the Company and only creating it if it's not in the database, but the check I'm doing on the Individual only happens on Individuals already affiliated to the Company. It does mean that I sometimes get duplicates created - if the Individual is already on the database but has no current affiliation to the Company.

    I can post a copy of the code if you like. Its based around the standard import and I've commented the changes.

    Debbie 

    From: Craig Badinger <bounce-craigbadinger6046@tessituranetwork.com>
    Sent: 9/19/2013 9:32:50 AM

    That’s OK, thanks for responding.  The good news for you is that households is easy.  I managed it without a hitch.

     

    Craig Badinger

    Donor Relations Manager

    305.929.7000 x 1412

    2200 Liberty Ave.
    Miami Beach, FL 33139


    miamicityballet.org

    facebook | twitter | mcb blog

    From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of David Geoffrey Hall
    Sent: Wednesday, September 18, 2013 6:54 PM
    To: Craig Badinger
    Subject: Re: [Tessitura Technical Forum] Constituent Import - business title

     

    Hi Craig,

    I've only ever imported individuals to be honest! I've not even gone down the path of doing Households as yet.

    Sorry I can't be of more help,

    David

    From: Craig Badinger <bounce-craigbadinger6046@tessituranetwork.com>
    Sent: 9/18/2013 4:04:57 PM

    David, I'm doing my first import that is not all Individuals.  How does the import process work for Corporations, Foundation and Government Agencies?

    For instance, I know I can create a household account with two individuals during the import.  Can the same thing be done for a Corporation with an affiliated Individual?  How about with more than one affiliated Individual?

    Is the import format the same for all constituent imports?  If so, then I can see a lot of manual data entry in my future...

    Thanks!




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

  • Hi David,

    Code attached. It's not very well commented, I'm afraid I always leave the comments and think I will go back to do them, then forget or get excited about something else.

    If its not clear, let me know.

    Debbie

  • Hi Wendell, Can you pick up the code file? If not, I'll mail it directly to you.

    Debbie

  • Hi Debbie,

    Have just had a quick skim of the code and it looks great. So I have this right, have you edited the XML file to include a Company field? Would you mind sharing an example of the XML file you use and potentially event the headers of your import file?

    Thanks

    dgh

  • Hi David,

    Yes, I amended the XML, but I can't find the final version. I'm attaching a copy of the data file I used with lots of x's instead of names. I'm also attaching the two XML files that I initially thought I would use. The final version was a combination of the two. Weirdly I kept those but not the final version! I don't know why.

    Getting the format file and the data file to match and import correctly is a game of patience I'm afraid. I reduced my data file to just a couple of records to do the de-bugging on it. Dates give a bit of trouble sometimes.

    Sorry I can't be of more help.

    Debbie

  • I'm having trouble attaching more than one file.....bear with me.