2013-04-10 56 views

回答

1

當您說「與salesforce用戶關聯的機會」時,我假設您需要一個salesforce所有者是機會記錄所有者的機會列表。 你可以這樣做:

user u = [select id, name from user where id='put the user id here']; 
list<opportunity> listOfOpportunity = [select id, name from opportunity where ownerId=: u.Id]; 

還有其他的方法,用戶可以關聯到一個機會:createdBy和lastmodifiedBy ..你也可以有你的自定義loopup到用戶對象

希望它可以幫助

+0

這是Apex代碼嗎? – Rockstart 2013-04-10 05:17:19

+0

是的,它只是一個查詢..你可以打開開發人員控制檯,轉到查詢編輯器,只粘貼編輯中的查詢並執行查詢。你會看到結果 – Anamadeya 2013-04-10 05:39:50