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

Parent Case - Related Case fields
I am trying to update Parent Case through an S-Control. The field does not appear to be visible in the "Case" object, and I have looked through other objects in Apex Explorer and cant find it. Has anyone found a way to populate this field through code? If so, what is the fields name and what object is it stored in?
Thanks.
Thank you for your reply.
We do have a custom field that we had used for a similar purpose, but the field I am referring to is in the default field section, meaning it is included in SF. This field is in the same section as Subject, Description, Owner etc. The field name is 'Parent' but it does not appear to be available to me through code. :(
it's hidden by default.
go into
and you should be able to make this visible, then access it via it's API name "Parent"
Code:
if it does not show up in Apex Explorer, use another tool or go directly to the WSDL to see the field name, i suspect ParentId is actualy the field you want.
Hi
I am facing the same problem but I am still not able to query the ParentCase field data in sfExplorer by useing Parent and ParentId. Please let me know how i can retrieve the data which get stored in ParentCase Field with api.
No luck getting the Parent of a Case:
Code:
Gives the error:
Code:
The following query gives the same error even though 'ParentId' isn't even in the query:
Code:
Is there some sample SOQL that can find the parent case? Or is this a bug?
Thanks in advance,
-Roger
Those all probably work off a similar or the same basic functions. Try writing your own query and print the results using any of the API or internally in salesforce.com it should work. I dont know why it is not exposed to any of those tools, that drove me crazy too.