カスタムオブジェクトに関連するOpenActivitiesのリストを取得する必要がありますアクティビティはカスタムオブジェクトに対して有効になっています。リストを取得するには、次のようなクエリを使用しています
public List<OpenActivity> getActivity1(){
return [SELECT Subject from OpenActivities Where WhatId= :ApexPages.currentPage().getParameters().get('id') ];
}
保存するとエラーが発生します
Error: Compile Error: sObject type 'OpenActivities' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names. at line 44 column 8
特定のレコードオブジェクトに関連するセールスフォースで開いているアクティビティのリストを取得する方法を教えてもらえますか?