Posts

Showing posts from November, 2025

Salesforce Fact #958 | Exempt from Transaction Security

There is a System permission 'Exempt from Transaction Security' which bypasses the triggering of transaction security policy. It can be added to profile or permission set level and assigned to the intended users. Note: This doesn't apply to LoginEvent type. Reference:  https://help.salesforce.com/s/articleView?id=xcloud.enhanced_transaction_security_exempt.htm&type=5

Salesforce Fact #957 | Password reset of new user using apex

For new users, we can use the System.setPassword() method to set a password and while logging in they would be prompted to set a new password as per the standard salesforce behavior. However, clicking on cancel would bypass that and would login to the org. This is helpful while creating multiple test users in bulk and to have same password for all instead of manually setting it for each user. Reference:  https://salesforce.stackexchange.com/questions/83345/how-do-i-create-a-user-without-asking-them-to-set-their-password

Salesforce Fact #956 | Open another page in same tab in app builder

Image
While using the lightning app builder, we can open another app/home/record record page in same tab. Go to Pages dropdown -> Open Page -> Search for the page you want to open -> select the page -> Open. Attached is the screenshot.

Salesforce Fact #955 | Create inactive user

While creating a new user from UI, the IsActive checkbox is true and cannot be edited. However, while creating users from CSV file or API, we can set the IsActive flag to false to create the users as inactive.