Clarity

  • 1.  Lookup association with objects

    Posted Oct 19, 2015 04:45 AM

    Hi,

     

    I want to find out with which object the lookup is associated. So that, I can directly go to that page and check the lookup.

     

    How can this be done?

     

    Regards,

    Uruj



  • 2.  Re: Lookup association with objects

    Posted Oct 19, 2015 05:18 AM

    Have you checked this (thanks to Dave)?

     

    TIP : Documenting your Configuration (via SQL)

    https://communities.ca.com/message/28007425#28007425

     

    NJ



  • 3.  Re: Lookup association with objects
    Best Answer

    Posted Oct 20, 2015 12:30 PM

    For custom attributes and just this answer specifically (identifying object/attribute where a particular lookup is used), this may suffice:

     

    select object_name, internal_name as attr_code, lookup_type
    from odf_custom_attributes
    where extended_type = 'lookup'
    and lookup_type = ?
    order by object_name, internal_name
    

     

    Replace ? in line 4 with your lookup's code in single quotes, e.g. 'SCH_BROWSE_RESOURCE'



  • 4.  Re: Lookup association with objects

    Posted Oct 26, 2015 02:53 AM

    Thanks, all inputs helped!