Difference between revisions of "Record Id"
From LongJump Support Wiki
imported>Aeric |
imported>Aeric m (Text replace - 'WrenchIcon.jpg' to 'WrenchIcon.png') |
||
(7 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
==Find Record Identifier from the Web Browser== | ==Find Record Identifier from the Web Browser== | ||
#Open the object of interest | #Open the object of interest | ||
#Click the [[ | #Click the Wrench icon [[File:WrenchIcon.png]] and select '''Edit this View''' | ||
#:[[File:WrenchIcon_ViewMenu.png]] | |||
# In the Fields tab, select the Record Identifier from the Available Fields list, and move it to the Selected Fields list | # In the Fields tab, select the Record Identifier from the Available Fields list, and move it to the Selected Fields list | ||
#*Each selected field becomes a column in the resulting view | #*Each selected field becomes a column in the resulting view | ||
#Save the view | #Save the view | ||
Line 30: | Line 30: | ||
'' is two single quote (') characters</nowiki></pre> | '' is two single quote (') characters</nowiki></pre> | ||
|} | |} | ||
==For Developers== | ==For Developers== | ||
Using the [[Developer Suite]], Record Identifier can be requested from: | Using the [[Developer Suite]], Record Identifier can be requested from: | ||
*[[Record_Handling#Identifying_Objects_and_Records|Java API]] | :*[[Record_Handling#Identifying_Objects_and_Records|Java API]] | ||
*[[REST_API#Identifying_Objects_and_Records|REST API]] | :*[[REST_API#Identifying_Objects_and_Records|REST API]] | ||
==See Also== | ==See Also== | ||
*[[Object Type Identifier]] | :*[[Object Type Identifier]] | ||
*[[Session Identifier]] | :*[[Session Identifier]] | ||
<noinclude> | |||
[[Category:Glossary]] | |||
</noinclude> |
Latest revision as of 22:48, 29 August 2011
Each record has a unique identifier, which is the key to accessing or updating data and moving records through workflows. Record Identifiers are typically not displayed in Views or Reports, however, some users (and developers, especially) find it useful to know the value of the Record Identifier. In APIs and Formula Expressions, Record Identifier can appear as: id, record_id, or recordId, depending on the tool.
The Record Identifier is contained in a field like any other, and can be displayed from a View or a Report.
Find Record Identifier from the Web Browser
- Open the object of interest
- Click the Wrench icon and select Edit this View
- In the Fields tab, select the Record Identifier from the Available Fields list, and move it to the Selected Fields list
- Each selected field becomes a column in the resulting view
- Save the view
Record Identifier and Lookup Actions
- The Record Identifier of any field that is of type Lookup can be retrieved by using the get method of the Parameter class with 'Field Name' as the parameter
- Record Identifier has a Range of: 1 - 2,147,483,647
- In most Objects, the record identifier is formatted as an integer
- Lookup actions require that the field is formatted as a text string
- To convert Record Identifier to string format, use the CONCAT Formula Function:
CONCAT (id, '') where: id is a Record Identifier '' is two single quote (') characters
For Developers
Using the Developer Suite, Record Identifier can be requested from: