grouping household and individual custom tabs

Is it possible to have grouping on custom tabs similar to addresses and others on different tabs of an account? 

Parents Reply
  • I used a query in the infomaker object rather than a SP. Didn't do anything special with the affiliated customer_no except copy how it worked in the sample:

    My query is as follows and works fine on household records:

     

      SELECT a.customer_no,  

    a.allowemail_flag,

    a.allowmail_flag,

    a.allowphone_flag,

    a.allowsms_flag,

    a.allowshare_flag,

    a.asked_dt,

    a.id_key, 

    CreateLocation = a.create_loc,

    CreatedBy = a.created_by,

    CreatedDateTime = a.create_dt,

    UpdatedBy = a.last_updated_by,

    UpdatedDateTime = a.last_update_dt 

        FROM LT_PRIVACY_ACT a

    Where (a.customer_no in

    (Select expanded_customer_no From V_CUSTOMER_WITH_PRIMARY_AFFILIATES Where customer_no = :constituentid)) 

     

     

    Hope that helps.

Children