You need to sign in to do that
Don't have an account?

How to access and update CampaignMemberStatus via Java API?
We want to add new campaign member status records to the CampaignMemberStatus object in Developer Edition from a Java program. However, when we try to create the records, we get "sObject type 'CampaignMemberStatus' is not supported...". Also, describeGlobal does not return CampaignMemberStatus in the list of supported objects. However, we see it in the schema from Eclipse and Apex Explorer. We can also add new campaign member status records from the UI, and verify them in Apex Explorer and Eclipse. How can we make CampaignMemberStatus visible and updateable to the Java API?
the object is accessible only to those users that are enabled as marketing users. If the organization does not have the marketing
feature or valid marketing licenses, this object does not appear in the describeGlobal call, and you cannot use describeSObjects
or query with the CampaignMember object."
Is this the reason that I am not able to see the "CampaignMemberStatus" in the describeGlobalCall?