public with sharing class AccountQueryIssue {
public String debugString { get; set; }
private Account a, b;
public AccountQueryIssue() {
debugString = '';
}
public void createAccount() {
// Replace record type ID with ID of an account record type
a = new Account(Name = 'Acme '+ System.now(), recordTypeId='012410000002S6O');
insert a;
debugString += '<br/>Inserted account:<br/>' + JSON.serialize(a) + '<br/>';
try {
b = [SELECT Id, Name, Owner.Alias FROM Account where id = :a.Id];
} catch(Exception e) { }
if(b != null)
debugString += '<br/>Queried account:<br/>' + JSON.serialize(b) + '<br/>';
else
debugString += '<br/>Could not query account<br/>';
}
}
VF Page
<apex:page controller="AccountQueryIssue" showHeader="false" sidebar="false">
<apex:form >
<apex:commandButton action="{!createAccount}" value="Create Account"/>
</apex:form>
<apex:outputText escape="false" value="{!debugString}"/>
</apex:page>
Apex Trigger
trigger ChangeOwner on Account (before insert) {
for(Account a : Trigger.new) {
// Replace OwnerId with ID of user with role CEO
a.OwnerId = '00541000000HJYT';
}
}
000382331

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.