0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SOQL for Admins > Create Relationship Queries with Custom Objects

Last updated at Posted at 2023-06-13

SOQL for Admins > Create Relationship Queries with Custom Objects

Method does not exist or incorrect signature: void newListedProperties() from the type PropertyUtility

Make sure you have an Apex class called PropertyUtility saved.

his package can’t be installed.

There are problems that prevent this package from being installed.

Package Not Found | The requested package doesn't yet exist or has been deleted. If this is a recently created package version, please try again in a few minutes or contact the package publisher.

よく見るエラー

image.png

global with sharing class DreamHouseSampleDataController {

    @RemoteAction
    global static void deleteAll() {
        DELETE [SELECT ID FROM favorite__c];    
        DELETE [SELECT ID FROM property__c];    
        DELETE [SELECT ID FROM broker__c];
        DELETE [SELECT ID FROM bot_command__c];
    }
    
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?