Salesforce Certified Application Architect

Wednesday 21 May 2014

ASIDE is a Sales force IDE in the Cloud.

What is ASIDE?ASIDE is full-featured Salesforce IDE built from the ground up for efficient delivery, design, and testing of Apex and Visualforce code. 

Is ASIDE open source?Currently it is not, but possibly in the future. 

What features will be added to ASIDE next?Currently ASIDE is getting bugs fixed and polish added, but after that the next new feature will be improved static resource support. 

Is there anything I can do if the ASIDE login is not working?Try using the frontdoor login. 

Does ASIDE store any of my Salesforce or personal data?No, ASIDE does not store any of this information. 

Who can I contact if I have more questions?Click here if you have any.

ASIDE does all of the things you need from a Salesforce IDE, just easier and faster. Check out the feature list below.
  • Code Editor
    • Create, edit and delete all Apex and Visualforce code within your org
    • Auto-completion of Apex and Visualforce
    • Auto-generation of Apex Controllers/Extensions and related test code
    • Save conflict detection
    • Static Resource edit support
    • Execute Anonymous
    • Debug log access
    • Find and replace within file
    • Org-wide code search
    • Update file version
    • Local code history
    • "Open in Salesforce", allowing easy access to rendered VF pages and more
    • Look and feel of editor is fully configurable (theme, font size, invisibles, etc)
    • Based on the awesome ace editor
    • Access to documentation, ability to run unit tests, and probably a few things im forgetting…
    • Highlight lines not unit tested and see other coverage information
  • Unit Test Execution Environment
    • See all unit test results, class-by-class
    • Configure the result view to focus on certain unit tests
    • Easily drill into failures with the stack trace parser
    • Run unit tests three different ways
      • All at once - run all the tests in your org with one button click
      • By query - write a query that targets a group of tests to run
      • Manual selection - from a multi-select typeahead
    • Generate a code coverage report for your organization
  • Deploy Manager
    • Easy-to-use interface for retrieves and deploys
    • Create filters to target files for retrieves
    • Ability to filter by last retrieve and last deploy dates
    • Can retrieve files multiple ways:
      • Drop a package.xml
      • Select files to retrieve by using a pre-canned or custom filter
    • Can deploy by dropping a zip file retrieve result
    • Detailed deploy status and results shown upon deploy
    • Ability to configure deploy (e.g. Run Unit Tests, Validate Only, etc)
  • Query Tool
    • Query all the data in your org
    • Delete and export query results
    • Filter and paginate query results
    • Inline data edit and create
    • Maintains query history
    • Show/hide/reorder/resize columns
    • Sort query results
    • Share queries with other users

cheers..

Tuesday 13 May 2014

Relationship between parent and child .

Hi,

Please see below relatioship ...

1) Parent to Child
SELECT Id, (SELECT Id from OpportunityLineItems) FROM Opportunity (Standard Version)
Select ID, (Select ID FROM Orders__r) FROM Account (Custom Object Version)



2) Child to Parent
SELECT Id, Name, Account.Name FROM Contact
Select ID, VCR__r.Name FROM Account

Sunday 11 May 2014

Salesforce.com Certified Force.com Developer Spring-14 Release Exam

1.  What is a capability of Salesforce Orders?
  •        Reduction orders can be created to process product returns.
  •        Orders can be created directly from an account or contract. 
2.  What option is available to a user when building a dashboard?
  •               Group and name dashboard filter values.
  •               Display fractions as percentages in a table component.
3.  What is a capability of the Data Import Wizard?
  •        Example import values are displayed to help with field mapping.
  •        An import file can be dragged into the wizard for uploading.

4.  How can an administrator customize reporting for users?
  •          Hide report types from all users.
  •          Remove footer information from exported reports.

Cheers....


Thursday 8 May 2014

Spring '14 Force.com Platform Release (Pilot) Scheduled Apex Updates

Increased Query Timeout in Batch Start Method:

The query timeout in the batch Apex start method has been increased to 10 minutes

Tuesday 6 May 2014

How to remove duplicates from list in Salesforce?

Create a map instead of list and finally if you want to insert or update the map values then you can insert or update.


Sample Code:

Map<Id, Account> mapAccount = new Map<Id, Account>();

for(Account acc : listAccount){
...............
...............
mapAccount.put(acc.Id, acc);
}

update mapAccount.values();


Note: Update Map value instead of List..


Cheers...

Sunday 4 May 2014

7 Enhancements in the Salesforce Spring ’14 Release.

1. Direct-to-Agent Chat Available
Once you set up your agents with their corresponding skills, you’ll be able to route a chat request to one specific agent, based on skill set and availability. Additionally, a few other related enhancements make this even better: Agent-declined chat requests can be automatically rerouted AND chat requests can now be automatically accepted once assigned to an agent.

2. Launch Flows from Workflow Rules – Pilot
Salesforce’s Take: Spring ’14 introduces a new workflow action called a flow trigger, which launches a flow when the workflow rule criteria are met. A trigger-ready flow is a flow that can be launched from a flow trigger workflow action. Because trigger-ready flows must be able to run in bulk and without user interaction, they can’t contain Step, Screen, or Apex Plug-in elements in any flow version.
To set this up, you’ll need to do the following:
  1. Create and activate a trigger-ready flow
  2. Create a workflow rule
  3. Create a flow trigger workflow action and associated it with the above workflow rule
  4. Activate the workflow rule
3. TEXT() Function Picklist Support Expanded
Salesforce’s Take: The TEXT() formula function now converts picklist values to text in approval rules, approval step rules, workflow rules, auto-response rules, escalation rules, assignment rules, and custom buttons and links.

4. Partial Data Sandboxes

5. Mass Assign Permission Sets
Salesforce’s Take: Now you can assign multiple users and revoke multiple user assignments from a permission set.

6. Create Cases from Salesforce Side Panel
Salesforce’s Take: If your users track customer support issues and gripes with cases they create in Salesforce, they can now create them directly from the side panel.
7. Salesforce Console Enhancements – Multi-monitor
Salesforce’s Take: Move portions of a console from your browser to any locations on your screens that help you work best. Pop out primary tabs, custom components, and other console items and drag them to any area on your screens. If pinned lists are set up, place popped out items in a playground to keep track of Salesforce windows when several applications share your screens.




Salesforce Certified Application Architect & Certified Data Architecture and Management Designer Exam

How to pass Salesforce Certified Data Architecture and Management Designer Exam This exam was 1st architect exam for me. Its not that muc...