You are attempting to load a large custom package using Module Loader andit is failing. Which three configuration values should you verify? (Choose three.)
A. PHP upload_max_filesize setting
B. Sugar import_max_records_total_limit setting
C. Sugar upload_maxsize setting
D. PHP memory_limit setting
E. PHP post_max_size setting
What is an advantage of the Extension framework?
A. Facilitates the extension of controllers.
B. Decreases page render time using efficiency extensions.
C. Customizes the application without overwriting other customizations.
D. Increases processing speed of views.
A customization requires a developer to dependently require a field based on another field's value.
According to the Sugar Developer Guide, which two approaches would be usedby the developer? (Choose two.)
A. Edit the field in Studio and specify a dependent formula for the "Required" attribute.
B. Add a JavaScript file to the JSGroupings to append the logic to ~./include/javascript/ sugar_grp7.min.js~ for availability on the RecordView.
C. Extend the RecordView controller and add a validation task.
D. Create a dependency using the extension framework and the SetRequired action.
You attempt to navigate to the Sugar log using the file system and notice that the sugarcrm.log does not exist. You verify that the directory is writeable by the Web server and you know that events that should create log messages are occurring.
What is causing this problem?
A. The logs are stored in the database and have not yet been flushed to disk.
B. The configuration variable ~$sugar_config['logger']['lever]~ is set to info.
C. The Sugar log has been renamed in System Settings.
D. Sugar has been configured to use the Web server's logger.
You need to update an existing record in the Contacts module using the REST v10API. Which two components are required to accomplish this task? (Choose two.)
A. HTTP POST method
B. HTTP PUT method
C. ~/Contacts/[contact_id]~ endpoint
D. ~{'id':'[contact_id]'}~ request body
Which Sidecar component is responsible for formatting data from the model for display?
A. layout
B. view
C. field
D. router
View the Exhibit.
A customization requires a developer to add a button specifically to the action dropdown in the Contacts
module as shown in the exhibit.
According to the Sugar Developer Guide, which index of the contacts RecordView metadata will need to be altered?
A. ~$layoutdefs['Contacts']['base']['layout']['record']['buttons']~
B. ~$viewdefs['Contacts']['base']['view']['record ']['buttons']~
C. ~$vardefs['Contacts']['base']['vardefs '][ 'record']['buttons']~
D. ~$dictionary['Contacts']['base']['dictionary']['record']['buttons']~
According to the Sugar Developer Guide, to which level should the logger be set from a performance and best practices standpoint?
A. Error
B. Off
C. Fatal
D. Debug
Which example demonstrates the GET endpoint you would use to retrieve a listing of the Notes records associated with an Account record?
A. https://[sugar_url]/rest/v10/Notes/link/Accounts/[account_id]
B. https://[sugar_url]/rest/v10/Accounts/[account_id]/link/account_notes
C. https://[sugar_url]/rest/v10/Accounts/[account_id]/link/notes
D. https://[sugar_url]/rest/v10/Accounts/[account_id]/Notes
Which Handlebars helper function allows you to inspect thecurrent execution context in aHandlebars template?
A. Inspect
B. If
C. Log
D. Debugger