App Development Flashcards
What are the four main application lifecycle milestones
Plan
Build
Test
Deploy
What is a simple application lifecycle?
Making changes in production directly, without using a sandbox for testing
What is advanced application lifecycle?
Multiple sandboxes are used for development and testing due to multiple projects
What is entailed in the Plan phase?
Requirements gathering, analysis and design specification
What is entailed in the Build Phase?
Developers build using declarative tools or code
What is the Test phase?
App is tested to verify behaves as expected without unwanted errors
What is Deploy phase?
Appropriate training delivered to users and deploy to production env.
Can Apex code be deployed in Production?
No, needs to be changed and deployed from within a sandbox
Describe process for migrating changes to PROD in Advanced Application lifecycle
Each developer can have their own developer sandbox
They push into an integration sandbox
They push into UAT
They push into Production
What does a Developer Sandbox include?
Production org’s metadata
File storage limit of 200mb
can be refreshed once a day
What does a Developer Pro sandbox include?
Production org’s metadata
File storage limit of 1GB
can be refreshed once a day
What does a Partial Copy sandbox include?
Uses template to define the data
File Storage limit of 5GB
can be refreshed every 5 days
What does a Full Copy sandbox include?
A full copy of production orgs data
has same data storage limits
can be refreshed every 29 days
If emails not being sent from a new sand box what happened?
Change ‘Email Deliverability’ setting to not be ‘System emails only’
Change sets require what type of connection before they can be uploaded to target org?
Deployment connection. A new sandbox created in a Prod org gets one of these auto-setup.
What amount of test coverage is needed for custom code?
75%
What is the purpose of a change set? What what type of data does it carry?
The goal of a change set is to send migrate metadata from one org to another.
This is config data about objects are setup (fields, etc.) not the data actual records themselves.
What happens if a deployment a of change set does not complete?
Whole transaction is rolled back?
What is an outbound change set?
When you are sending metadata from a source org to a target?
What is an inbound change set?
When you are receiving changes from a source org
Can change sets be used to rename or delete a component?
No, must be done manually
Do you need to send dependent components in a change set?
yes, helps avoid unexpected errors. You can control what group of dependent controls you send but not the order they can be deployed in.
what happens if you need to deploy one component before another?
Use multiple change sets.
Are all metadata types supported by change sets?
No
Can you deploy partial change sets?
No, all or nothing
For active flows deployed in a change set, what is the test coverage minimum?
It is independent from Apex requirements and set in Process Automation Setting.
How do you add a Permission Set vs a Profile to a change set.
Permissions sets are loaded as a component, while Profiles are loaded ‘Profile Settings for Included Components’ section
What is the ‘Default’ test option for change sets?
No tests are run for sandboxes and all local tests are run for production orgs
What is the ‘Run Local tests’ test option for change sets?
All tests are run EXCEPT those from installed managed packages
What is the ‘Run All Tests’ test option for change sets?
All tests are run INCLUDING those from installed managed packages
What is the ‘Run Specified Tests’ test option for change sets?
Only the specified tests are run, code coverage must still be 75% of the code class or trigger in the change set
Does the destination org have to explicitly deploy the an inbound change set?
Yes
What are two ways packages can be shared?
App Exchange
shared via URL
What do packages do?
Cluster related components together that can be used, installed and uninstalled.
What are the two types of packages?
Managed
Unmanaged
What are some features of a Managed package?
Source code is private Offered by Sf partners to make money Certain destructive features like removing objects/fields cannot be performed Can provide upgrades Developer Edition required
What is the purpose of unmanaged packages?
To distribute open source projects or application templates
What are some features of unmanaged packages?
Can be used for migration of components between unrelated environments – i.e. send metadata to second, new production org as change sets cannot do this.
Can be used on AppExchange
Once installed, company can edit source code as needed.
What are some considerations when using unmanaged packages?
Should not be used if you consider code intellectual property
Cannot control distribution once you have released the URL
The namespace is removed from it when it is distributed to other orgs.
What is the test coverage minimum for package components?
75%
Is the testing coverage for flows independent of the Apex coverage?
Yes
What are the steps of a Deployment Plan?
Announce Maintenance Window Validate Change set Lock out users Deploy Change set Perform Manual changes Verify functional changes Unlock users
How do you lock out users with a maintenance profile temporarily?
Set start and end time to the same time for login hours and attach the profile to users
What are some good ideas before deploying changes to PROD?
locking out users so they can’t make changes
backing up the org
deploying to a test sandbox that is refreshed right before the maintenance window to most closely mirror PROD
Are name spaces used in unmanaged packages?
No, it will be removed when the unmanaged package is created.
How are unmanaged packages distributed and controlled?
via App Exchange
via URL link
What are unmanaged packackes typically used for?
distributing free software, open source templates and components
When is a sandbox not required as part of the application lifecycle?
If changes are simple and do not require Apex code, can be made in production and released via profile to select users until ready to be rolled out
What are key milestones in an application lifecycle when a sandbodx is involved?
Manage Requirements Develop Changes in sandbox Test changes Deploy changes to Production Notify end users of changes
What is the difference between a Developer and Developer Pro sandbox?
Dev Pro has higher storage
Both can be refreshed once a day
Both contain a copy of production config and not data
Why would a Partial Copy sand be use used instead of a Full Copy sandbox?
cheaper and can be refreshed more frequently (5 days)
Data and file storage of upto 5gb
template can be defined for data copied (10k records)
What is a full copy sandbox usually used for?
Used when an environment identical to PROD is required for: performance load regresion testing UAT
What is the difference between a managed package and unmanaged package?
managed is:
upgradeable, sold on AppExchange, and protected
unmanaged is:
uncontrolled, can be used for dist. to others, can be modified once installed
If a company is planning on selling an application, would they distribute as managed or unmanaged?
managed
What does the Deprecate function do?
retires application so no new installs can occur with url link
What can a change set be used for?
moving meta data between two related orgs (i.e. from a sandbox to production — it cannot be used for moving data)
What is required to use change sets in 2 orgs?
a deployment connection and each org must authorize the other can send changes to it.
What are some restrictions of change sets?
code must have 75% test coverage.
not all metadata is supported
the order of component deployment cannot be specified.
cannot be used to rename or deleted components
What is a Sandbox refresh?
process to replace an existing sandbox with a new copy of configuration, code and data (depending on type of sandbox)
What are key milestones in an advanced app lifecycle?
Manage Requirements Develop changes in multiple sandboxes integration testing UAT testing regression testing deployment to prod notify users
What is the difference between an inbound and outbound change set?
An outbound change set is sent from the source org and appears as an inbound change set in the destination org
Which test options are available when deploying a change set in an org?
Default
Run Local tests
Run Specified tests
Run All tests
When using change sets, if required, what must be done manually for a component after deployment?
Renaming or deleting a component
How can users be locked out during a maintenance window?
updating login hours on profiles or using a maintenance profile for all users
What can be validated to ensure that a deployment will be successful?
Change set
A quote template needs to be migrated along with other metadata to a prod org. How can it be achieved?
Manually, since change sets cannot be used to migrate certain components like quote templates
What is a component not available in a change set?
Account Teams
what is the refresh interval of a partial copy sandbox? what about full copy?
5 days
30 days