Field:first name@Candidates
Candidates - First Name | |
---|---|
Name | first_name |
Module | Candidates |
Type | varchar |
Label | First Name |
VName | LBL_FIRST_NAME |
Required | No |
Editable | Yes |
Visible | Yes |
Reportable | Yes |
Importable | Yes |
Massupdate | No |
Global Search | Yes |
Auditable | Yes |
Options | |
Options List Name | |
Needs Validation | No |
Contents
[hide]Notes
First name of the contact
Related Features
Affected by
Initiating
Name | Type | Short Description | Initiating Fields | Affected Fields | Affected Modules |
---|---|---|---|---|---|
Feature:Dependency of name field in Candidatures | Automation | A candidature name is generated from the first name and last name of a candidate a candidature is related to and a position name a candidature is related to. | First Name, Last Name, Name | Name |
Location and Code definition
modules/Candidates/vardefs.php
'first_name' => array( 'name' => 'first_name', 'vname' => 'LBL_FIRST_NAME', 'type' => 'varchar', 'len' => '100', 'unified_search' => true, 'duplicate_on_record_copy' => 'always', 'full_text_search' => array('enabled' => true, 'boost' => 3), 'comment' => 'First name of the contact', 'merge_filter' => 'selected', 'audited' => true, ),
include/SugarObjects/templates/person/vardefs.php
'first_name' => array( 'name' => 'first_name', 'vname' => 'LBL_FIRST_NAME', 'type' => 'varchar', 'len' => '100', 'unified_search' => true, 'full_text_search' => array('boost' => 3), 'comment' => 'First name of the contact', 'merge_filter' => 'selected', ),
Missing User input
Related Features
Affected by
Initiating
Name | Type | Short Description | Initiating Fields | Affected Fields | Affected Modules |
---|---|---|---|---|---|
Feature:Dependency of name field in Candidatures | Automation | A candidature name is generated from the first name and last name of a candidate a candidature is related to and a position name a candidature is related to. | First Name, Last Name, Name | Name |