Fields
IN THIS PAGE
1. Custom fields overview 🔗
Custom fields serve as additional fields that can be used for specific business applications. In general, the fields differ based on the industry, business, and workflow, which makes customization essential for building an effective CRM. The custom fields within Bigin Developer Console play a similar role in customizing the solution during the creation of toppings. These fields are not predefined, but you can define and customize them as needed using toppings. Any fields added to the topping will be reflected in the user interface of Bigin.
2. Create a custom field 🔗
To add a custom field, access the Bigin Developer Console and navigate to Components > Fields.
Choose a module from the Module List, and then click New Custom Field.
Select a field type, provide the necessary details, and save the field to apply changes.
💡 Tip:
- When you create a custom field in a topping, its API name will be in the <topping_namespace>__<field_label> format. For example, if you create a custom field named QuickBooks ID, its API name will be <topping_namespace>__QuickBooks_ID.
- If you want to use the API name of a custom field, we recommend you create the field label in lowercase (e.g., quickbooks_id) first, so the API name will be <topping_namespace>__quickbooks_id. You can then rename the field label to your preferred name while keeping the API name unchanged.
The field details vary based on the selected field type. For more information, see the Custom field types and properties section below.
3. Manage custom fields 🔗
After you create a custom field for a topping in a module, you may need to update or delete it later on. In such cases, you can edit and delete the custom fields from the toppings.
To edit a custom field, access the Bigin Developer Console, navigate to Components > Fields, and select the module.
Hover over the custom field you want to modify and Click the Edit icon.
After updating the details, save the changes.
To remove a custom field, hover over the custom field you want to remove and click the Delete icon.
Confirm the deletion. This results in permanent loss of data.
4. Custom field types and properties 🔗
When adding a new field, you must enter the field properties according to the type of field you create. You can check which properties you'll need for each field type in the following table:
Field Type | Description | Properties |
---|---|---|
Text | A single-line text field allows input of a sequence of characters and numbers with a limit of 255 characters. |
|
Integer | Allows input of integer numbers with a limit of 9 digits. |
|
Percent | Allows input of a percentage (%) value with a limit of 5 digits. |
|
Decimal | Allows input of decimal values with a limit of 16 digits, which includes decimal places. |
|
Currency | Allows input of currency values with a limit of 16 digits, which includes decimal places. The maximum limit for decimal places is 9 digits, and decimal values are restricted based on the selected rounding options. |
|
Date | Allows input of a date in MM/DD/YYYY format or selection from a Calendar UI. |
|
DateTime | Allows input of a date and time in MM/DD/YYYY and HH:MM format or selection from a Calendar UI and Time drop-down. |
|
Phone | Allows input of a valid phone number with a maximum limit of 30 digits. |
|
Pick List | Allows selection of a value from a pre-defined set of options. |
|
URL | Allows input of a web address with a limit of 255 characters. |
|
TextArea | A multi-line text field allows input of text with a maximum of 2000 characters for Small TextArea and 32000 characters for Large TextArea. |
|
Checkbox | Allows selection of Yes (checked) or No (unchecked). |
|
Emails | Allows input of a valid email address with a maximum of 100 characters. |
|
Auto-Number | Classifies records using unique auto-generated numbers. |
|
Lookup | Establishes one-to-many relationships for records. |
|
Long Integer | Allows input of long integers with a limit of 18 digits. |
|
Multiselect Pick List | Allows selection of multiple values from a pre-defined set of options. |
|