Contribution Role

I see there is a Role in the Contribution records now, but I cannot find where that is stored.   I would especially like to use the Cr role to pull up Soft Credit contributions.   Where is that coming from?  

Jan LaRocque

Houston Symphony

Parents Reply Children
  • I figured them out for the ticket history screen by literally scrolling through the procedure that updates the ticket history.  I am not sure how these translate for contributions/creditees, but one would assume that it would be similar, no?

    1. Owner (O)
    2. Initiator (I)
    3. Owner/Initiator (OI)
    4. Recipient (R)
    5. Owner/Recipient (OR)
    6. Initiator/Recipient (IR)
    7. Owner/Initiator/Recipient (OIR)

    Also, I am not sure that that data is actually stored anywhere on the T_ORDER table (at least, I cannot find it there), though that information IS displayed on the customer screen on the Orders Tab, so there is a process using it somewhere.  It IS on embedded into the T_TICKET_HISTORY table as the Role column, which makes sense.  The Orders table does not need it directly, I suppose, since the customer number lives on the order itself.

  • John, I can't thank you enough for this information.   Sure would be nice if there were a table with these descriptions in it, wouldn't it.   (Hint, hint, Tessitura).

    This page will be printed and prominently displayed at my desk.

    Thanks,

    Jan

  • I am not sure how these translate for contributions/creditees

    Those values don't translate directly to SCs, which are stored in a separate table, i.e. T_CREDITEE, which is usually joined to T_CONTRIBUTION something like:

    select top 10 c.* 
    	,cr.creditee_no
    from T_CONTRIBUTION c
    left join T_CREDITEE cr
    	on c.ref_no = cr.ref_no