Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- General Development
- :
- What is the api field xxx__cSpecified?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
What is the api field xxx__cSpec ified?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-20-2012 12:32 AM
Hi All,
I'm doing a project with SFDC api, to upload object values. See some objects have fields as xx__cSpecified, which is a bool type.
If there si a field a__c, there should be a new field a__cSpecified
b__c, b__cSpecified
c__c, c__cSpecified.
if I upload a field value to SFDC, I ned to write
obj.a__c = "xx";
Should I set value for a__cSpecified? such as below code:
obj.a__cSpecified = true;
Thanks
Kunlun
Solved! Go to Solution.
Re: What is the api field xxx__cSpec ified?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-20-2012 01:41 AM
You should set the xx_cSpecified field to true.
By default the xx_cSpecified fields are set to false.
If you want the value of field xx_c to be part of the soap message, then the xx_cSpecified field should be set to true, else it will not be part of SOAP message.
- Imran
Re: What is the api field xxx__cSpec ified?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-20-2012 02:19 PM
Thanks very much.
Can you tell me why there are these fields xx_cSpecified? Is there some way to remove or create them in SFDC?
Re: What is the api field xxx__cSpec ified?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-20-2012 02:37 PM
Re: What is the api field xxx__cSpec ified?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-20-2012 02:58 PM
Got it, is there a way to set all them to true? It is too much work to set them one by one.

