Given a script ID for a custom field, how can I fi...
# general
c
Given a script ID for a custom field, how can I find what it is? The situation: There was an error updating a customer via SuiteTalk. The error was "INVALID_KEY_OR_REF - Invalid custrecord_esm_r_plr_customer reference key 163640". This tells me that there is a custom field custrecord_esm_r_plr_customer, but I can't find where that custom field is. We have hundreds of custom records and I can't look through them all manually
d
you should be able to find it in Customization > List > Other Record Fields
c
No, that does not list fields on custom records
k
Strong point might be able to do this
m
Are there any record types with partial matches on the id? Usually naming conventions solve this where, for instance, the record type id would be customrecord_sdr_perf_review and a custom field would be custrecord_sdr_perf_rating_code. I'd go the record type page and try to ctrl f for partial matches (maybe "esm")
I think the next step would then be to loop through creating custom records doing a .getAllFields() on each one to basically make your own records browser. I don't believe you can do any searching on a custom field without first going through the custom record. some IDEs do the indexing automatically for purposes of being able to offer IntelliSense so if you have access to one linked to the account that might be a place to check too