お気に入りshubham sengar (JanBask LLC) が「#Apex」で質問2015年8月12日 13:04trigger problem 4To update the owner of a case based on the values selected with in a picklist and papulate the owner field with the creaded by the field data when we have seleted any field name = status..?? 1 件の回答並び替え役に立った順で並び替え役に立った順で並び替え日付で並び替え承認された回答shubham sengar (JanBask LLC)2015年8月12日 22:12trigger CaseTrigger on Case(before update) { for(Case c:Trigger.new) { if(c.Status == 'Priced – (Initial)' || c.Status == 'Priced – (Re-Priced)' || c.Status == 'Price File Loaded') { c.OwnerId = c.CreatedById; } }}表示件数を増やす回答を記入...太字斜体下線取り消し線箇条書き番号付きリストリンクを追加コードブロック画像を挿入ファイルを添付リンク URLキャンセル保存0/9000返信
承認された回答shubham sengar (JanBask LLC)2015年8月12日 22:12trigger CaseTrigger on Case(before update) { for(Case c:Trigger.new) { if(c.Status == 'Priced – (Initial)' || c.Status == 'Priced – (Re-Priced)' || c.Status == 'Price File Loaded') { c.OwnerId = c.CreatedById; } }}表示件数を増やす