The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
23 views

Updating Data On PARENT Via Custom Button

This is loosely related to a recent question: Standard Button CODE Available? Does anyone know of any examples/tutorials on creating a custom button which will set values into the PARENT record of ...
2
votes
1answer
36 views

Are you required to have access to all parent-records in order to access the child-record where all relationships are master-detail?

Let's say you have a child object Child__c that has 2 master-detail relationships and assume you don't have Modify/View All access to the child object or overall. Also assume that all object OWDs are ...
2
votes
1answer
35 views

Can you add relationships to knowledge articles?

It seems like the answer to this is no but I wanted to ask anyway. Knowledge articles themselves dont allow a lookup or a mater-detail field. And from what i can tell you cant add a lookup field ...
1
vote
1answer
49 views

Can Detail Objects trigger Master Object Workflows?

I want changes to detail objects to trigger a workflow on the master object. The master object has a rollup summary field which COUNTs how many detail objects have a certain field set. When I change ...
3
votes
3answers
123 views

Master-Detail Relationship Limit

Salesforce says "As a best practice, don't exceed 10,000 child records for a master-detail relationship." here : http://na1.salesforce.com/help/doc/en/relationships_considerations.htm What does "for ...
-2
votes
1answer
48 views

Detail Object in a M-D relationship as part of M-J-M relationship

Can a detail object in Master-Detail relationship be made master object in a M-J-M relationship (Master - Junction - Master). My opinion : No. If answer to above question is No, can we have ...
1
vote
1answer
43 views

Filter on Child Records (in a M-D Relationship)

Scenario: Two custom Objects having a MD relationship as Opportunity Mgmt (Master) - Deal (Detail). I have a Standard User Lookup Field "Solution Lead" in Deal Object. The OWD for Opportunity Mgmt is ...
0
votes
1answer
27 views

Can I reference a custom object from a standard object

Say I have a custom object, Division, that has two fields: name and address. Say I want to make 2 custom fields in User (standard object): field 1 is the User's Division: a picklist, populated by ...
0
votes
2answers
123 views

Non-selective queries and lookup/master-detail relationships

Does including a where clause that refers to a field on a related object in a query mean that the query is selective? An example: We have Object A and Object B. Object B has a field that is a lookup ...
1
vote
1answer
65 views

Deleting all child records of an object without knowing child record ID with the API

I have two objects with a master-detail relation ship. Invoice and Invoice Lines. I am basically syncing this up from an external program into Salesforce. During updates, a lot of changes may be ...
3
votes
2answers
140 views

Is there a viable workaround to allow reporting on the history of a child in a master-detail relationship?

I am already using a workaround to allow reporting on approval process steps (field updates to the record, track the history of the field), except that now I can't report on the field history that is ...
3
votes
2answers
159 views

How to report on a master-detail relationship

I have a custom object named Milestones (with a field named MilestoneType) that has a Master-Detail relationship to Contact. I want to build a report where I can pull all contacts that have a ...
3
votes
3answers
346 views

How do you use an external ID in the import wizard to import child objects of a master/detail relationship?

OK, I need to import a few thousand records and import wizard seemed like a good choice. First I did some accounts - that went smoothly. Next I went to import some custom objects that have a ...
6
votes
1answer
456 views

Can you convert a Master-Detail relationship to a Lookup if it's referenced in code?

I've got a Master-Detail relationship on a custom object where the parent is the Account object. There are no roll-up summary fields on the Account object, and there are no formula fields on the ...