Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
Correct Answer: B
"You must first select read access to grant any other API record operation." https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/reference/r_TableApplicationAccessFields.html The Application Access configuration fields control the access level for an application and its tables. The following Application Access configuration fields are not available if the Can read configuration field is not selected: Can create. This field determines whether users can create records on the application tables. Can update. This field determines whether users can update records on the application tables. Can delete. This field determines whether users can delete records on the application tables. These fields are not available because they depend on the Can read field, which determines whether users can view records on the application tables. If users cannot read records, they cannot create, update, or delete them either. The following Application Access configuration fields are available regardless of the Can read configuration field: All access to this table via web services. This field determines whether users can access the application tables using web services, such as REST or SOAP. Allow configuration. This field determines whether users can configure the application tables, such as adding or modifying fields, views, or indexes. References: Application Access, Certified Application Developer (CAD) Learning Path
Question 87
What are some of the benefits of extending an existing table such as the Task table when creating a new application? a)You can repurpose existing fields by simply changing the label. b)Use existing fields with no modifications. c)Existing logic from the parent table will be automatically applied to the new table. d)All of the parent table records are copied to the new table.
Correct Answer: B
Question 88
Which source control operation is available from BOTH Studio and the Git Repository?
Correct Answer: A
The Create Branch operation is available from both Studio and the Git Repository. This operation allows you to create a new branch from an existing branch in your Git repository. You can use branches to work on different features or versions of your application without affecting the main branch. Reference: [Create a branch]
Question 89
Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table: Which field or fields can a user with the itil role read?
Which one of the following is NOT true for Modules?
Correct Answer: C
The statement that is not true for Modules is that every Module must be associated with a table. A Module is the functionality within an Application Menu that opens a content page in the content frame or a separate tab or window. A Module can be associated with a table, a list, a form, a report, a script, or any other type of page. For example, the Open Module under the Incident Application Menu opens a list of incident records from the Incident table, while the Overview Module under the Performance Analytics Application Menu opens a dashboard page with various charts and widgets. The other statements are true for Modules. Access to Modules is controlled with roles, as each Module can have one or more roles specified in its definition that determine who can see and access it. Modules open content pages, as they are links to different types of pages that provide information and functionality to users. Every Module must be part of an Application Menu, as they are the second-level navigation options for Applications. Reference: Modules