CWL
@cwl
Admin
Member
Joined: Aug 6, 2013
Last seen: Jul 15, 2024
Issues: 103 / Replies: 102
Reply
RE: How to generate a json body string from an object?

List <Data__c> dList = [SELECT Id, Name FROM Data__c WHERE Name = 'John']; String jsonStr = JSON.serialize(dList); System.Debug('jsonStr: ' ...

3 years ago
Forum
Topic
Reply
RE: Find and replace characters in a string in Apex

String str = 'anything in a string'; System.Debug(str.replace('a','$').replace('i', '@'));

3 years ago
Forum
Topic
Forum
Replies: 2
Views: 1513
Reply
RE: How to delete site specific cookies from Microsoft Edge?

1. Right click on the web page which you want the cookie deleted. 2. Click >> to expand the tabs on top and select Application. 3. Select Co...

3 years ago
Forum
Topic
Reply
RE: Salesforce CLI not responding/taking time to start in VSCODE

If you experience slow response from Salesforce CLI, it could be because your computer might be low on memory. You could try issuing some cli commands...

3 years ago
Forum
Reply
RE: AWS S3 connection error PermanentRedirect

Actually it could be because of not including the bucket name in the URL and it might have been given as Try the url as:/p> You shoud get 200 Stat...

3 years ago
Forum
Topic
Reply
RE: Unable to retrieve source files using Retrieve source in manifest from org

Once you have created your project with manifest in VS Code, Authorized your org in Visual studio code and set it as the default org, then if you have...

3 years ago
Forum
Reply
RE: How would you stop editing of a closed won opportunity except for certain profiles.

AND(AND($Profile.Name <> 'System Administrator',$Profile.Name <> 'Some Other Profile'),Text(PRIORVALUE(StageName)) = 'Closed Won' )

3 years ago
Forum
Reply
RE: How to open the Salesforce Developer Console in the tab, instead of a new window.

Instead of left clicking on the Developer Console link, right click on it instead and select Open in new Tab. Hope this helps.

3 years ago
Forum
Page 12 / 14