Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 3756 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I'm dealing with a rather large system and have written an automated way to build out lists of all the non-container, non-calculation, non-global, non-summary fields. Now, I need to also exclude lookups and auto-enter replaces existing value fields. Here's the calculation as it stands:

 

not ( 
   PatternCount ( $field_type; "StoredCalc" ) or 
   PatternCount ( $field_type; "Summary" ) or 
   PatternCount ( $field_type; "UnstoredCalc" ) or 
   PatternCount ( $field_type; "Global" ) or
   PatternCount ( $field_type; "Container" )
)
 
Any ideas on how to obtain this information with a function? 
 
Thanks!
 
I also attached the script I'm working on as a PDF though I doubt referencing it is necessary.
 
FileMaker Pro 13, Mac OSX Mavericks
Posted

I don't see a script attached. In any case, I don't know of a way to collect this information other than by producing a Database Design Report (unless there's some undocumented ExecuteSQL code?). Why would you need this inside the solution anyway?

  • Like 1
Posted

I don't see a script attached. In any case, I don't know of a way to collect this information other than by producing a Database Design Report (unless there's some undocumented ExecuteSQL code?). Why would you need this inside the solution anyway?

 

I'm almost certain 'comment' is correct.

If your system runs a DDR on some kind of schedule, you could set up something to parse the XML generated for "Field" nodes whose "AutoEnter" sub-node has the attribute "overwriteExisting"=True. 

 

 

Are you doing this to be able to automate some kind of backup/export/data-transfer process? If you say more about why are trying to do this, there may be other possibilities. 

This topic is 3756 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.