Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8453297
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:44:03+00:00 2026-06-10T11:44:03+00:00

I’m struggling with this situation.. I have a Standard Object in SFDC (Opportunity) that

  • 0

I’m struggling with this situation.. I have a Standard Object in SFDC (Opportunity) that has a custom look up field pointing to the User object what I’m trying to do is populate this field with the name of the user that creates a custom object that is available in the Opportunity layout…

i.e. New GOP Checklist — Then choose the type of checklist— and then fill all the required fields and click save, this is pointing back to the Opportunity view. To start with is this something doable ? i know that look up fields can be tricky.
and my second question is what’s the best way to do this Programatically (trigger) or using the workflow and field update functionality ?

Thanks !!

trigger TR_OrderChecklist on Order_Checklist__c (before insert) {

//----------------------------------------------------------------------------------
// Function 1: Update COS Operations Attribute in Opportunity
//----------------------------------------------------------------------------------

for(Order_Checklist__c o : trigger.new){
  if(o.Opportunity__r.CARE_Operations__c == null) {
    o.Opportunity__r.CARE_Operations__c = UserInfo.getUserId();
  }
}

}

This is what they came up with. In the Standard Opportunity Object we have a lookup field tied to the user.. CARE_Operations__c.. Now what the trigger is supposed to do is the following..

1.- When creating a new GOP Checklist if the user populate a new custom lookup field in the GOP object named COSOperations_c then keep that name,
2.- If the User didn’t populate the COSOperations
_c field but the field in the Opp level CARE_Operations__c is populated use that name.
3.- If neither CARE_Operations_c or COSOperations_c are populated (user input) then COSOperations__c is going to be the person that just create the GOP Object.

This is what i have so far..

trigger TR_OrderChecklist on Order_Checklist__c (before insert) {
List<Opportunity> COS_Op = new List<Opportunity>();
COS_Op = [select CARE_Operations__c from Opportunity where id in (select   Opportunity__c from Order_Checklist__c where COSOperations__c != null)];
for(Order_Checklist__c OC : trigger.new) {
    if(OC.COSOperations__c != null) {
       break;}
    if(COS_Op != null){
       OC.COSOperations__c = OC.Opportunity__r.CARE_Operations__c;} 
    if(OC.COSOperations__c == null){
       OC.COSOperations__c = UserInfo.getUserId();}
}       
} 

My problem is in the second if statement.. the other 2 conditions are working properly.. ! Any ideas ? Thanks !!!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T11:44:05+00:00Added an answer on June 10, 2026 at 11:44 am

    My (second) take on fixing up the trigger code you posted:

    trigger TR_OrderChecklist on Order_Checklist__c (after update) {
        List<Opportunity> opptsToUpdate = new List<Opportunity>();
        for(Order_Checklist__c o : trigger.new) {
            if(o.Opportunity__r.CARE_Operations__c == null) {
                o.Opportunity__r.CARE_Operations__c = UserInfo.getUserId();
                // Queue it up for one update statement later
                opptsToUpdate.add(o.Opportunity__r);
            }
        }
        // Commit any changes we've accumulated for the opportunity records
        if (opptsToUpdate.size() > 0)
            update opptsToUpdate;
    }
    

    Assuming you have Opportunity.My_User__c as lookup(User) and My_Object__c.Opportunity__c as lookup(Opportunity) this trigger is a good start:

    trigger HandleMyObjectInsert on My_Object__c (before insert) {
        User actingUser = [SELECT id FROM User WHERE Id = :UserInfo.getUserId()];
        List<Opportunity> oppts = new List<Opportunity>();
        for (My_Object__c myobj : trigger.new) {
            Opportunity o = new Opportunity();
            o.Id = myobj.Opportunity__c;
            o.My_User__c = actingUser.Id;
            oppts.add(o);
        }
        update oppts;
    }
    

    For proof that Lookup(User) is really just an Id field, try out this exercise. Create a new Lookup(User) field on the Opportunity object named “My User.”

    • Data Type: Lookup Relationship
    • Related To: User
    • Field Label: My User
    • Field Name: My_User (turns into My_User__c and also available through My_User__r)

    From the Salesforce web page, pick an existing opportunity record and set the My User field to some random user and save the record. Now from the Developer Console, execute this anonymous APEX:

    Opportunity[] oppts = [
        SELECT id, My_User__c, My_User__r.Name
        FROM Opportunity
        WHERE My_User__c != null
    ];
    for (Opportunity o : oppts) {
        system.debug('##### Opportunity.My_User__c = ' 
            + o.My_User__c 
            + ', o.My_User__r.Name = ' 
            + o.My_User__r.Name);
    }
    

    Close the fancy log view and click the “Open Raw Log” and you’ll see a line like this:

    16:42:37.077 (77645000)|USER_DEBUG|[7]|DEBUG|##### Opportunity.My_User__c = 00530000000grcbAAA, o.My_User__r.Name = John Doe
    

    See, Salesforce thinks of __c lookup fields as Id fields. In this case, it’s a Foreign Key relationship to the Id of the User object. Salesforce makes you think the Name field is the Primary Key but really it’s the Id field (ok I haven’t actually seen Salesforce’s ERD, but I’m pretty sure that’s correct). Notice that you can get to the lookup object’s fields through the __r construct.

    Updating the field is just a matter of changing the My_User__c id:

    Opportunity[] oppts = [
        SELECT id, My_User__c
        FROM Opportunity
        WHERE My_User__c != null
        LIMIT 1
    ];
    for (Opportunity o : oppts) {
        o.My_User__c = :UserInfo.getUserId();
    }
    update oppts;
    

    Or, you can get the User Id from a soql query like this:

    // Let's query all users and use the 3rd one in the list (zero-index 2)
    User[] users = [select id from user];
    Opportunity o = new Opportunity(My_User__c = users[2].id, Name='Testing', StageName = 'Prospecting', CloseDate = System.today());
    insert o;
    

    Or, look up a user by their email address:

    User[] users = [select id from user where email = 'first.last@company.com' and IsActive = true];
    if (users.size() > 0) {
        Opportunity o = new Opportunity(My_User__c = users[0].id, Name='Testing', StageName = 'Prospecting', CloseDate = System.today());
        insert o;
    }
    

    This is just a really good way to get the Id of the current user:

    UserInfo.getUserId()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
That's pretty much it. I'm using Nokogiri to scrape a web page what has
this is what i have right now Drawing an RSS feed into the php,
I've got a string that has curly quotes in it. I'd like to replace
I have a small JavaScript validation script that validates inputs based on Regex. I
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have a French site that I want to parse, but am running into
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
This could be a duplicate question, but I have no idea what search terms

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.