Internal ID
CATEGORY: Advanced Design
CLASS: Working With FileMaker
Under the hood, FileMaker assigns a collection of internal IDs. Unfortunately, they are not that easy to get to and are a bit of a pain to extract for the developer.
Internal Record IDs
FileMaker creates an internal record ID for the records it contains in its files. The Get(RecordID) function will return the FileMaker created and internally stored record ID for the current record in the foreground window. Since these numbers are internal to FileMaker, they are always sequential, unique and never reused if the record is deleted.
Internal Layout IDs
FileMaker assigns an unique, internal identification value to each new layout added in a file. Unlike the layout name or layout position, the FileMaker developer does not have access to edit this largely hidden value. The design function of LayoutIDs provides a return separated list of all the internal layout ids for a particular file. There is just one parameter for this function and that is the name of the file you want to target for the returned list of layout IDs.
Internal Script IDs
When scripts are created in a file, they are given a unique and sequential script id tag. When a script is deleted, that scripts id tag will not be repeated. The ScriptIDs function will return those id tags in the order the scripts are currently organized within the file. The script ids will be return delimited, that is to say there will be a carriage return between each id. So if you have 12 scripts, create one and move it to the top ... that script will have a 13 and it will be on the top row of the returned array.
List Of Related Posts
http://dwaynewright.blogspot.com/2008/03/filemaker-layoutids-function.html
ADVERTISEMENT ==================
Help support this blog by considering a donating to its ongoing growth. For more details, please visit
http://www.dwaynewright.com/donate.html