function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ThimoThimo 

Created a Task using PHP Toolkit, but no display in Chatter

Hi folks,

 

I just created a Task using the PHP Toolkit, with all appropritate Data:

 

      $aObject->OwnerId = $_sfUserId;
      $aObject->WhatId = $_sfAccountId;
      $aObject->WhoId = $_sfContactId;
      $aObject->Subject = "Angebot per E-Mail";
      $aObject->Description = $message;
      $aObject->ActivityDate = date("c");
      $aObject->Status = "Abgeschlossen";

But the Chatter doesn't display the change or the new Task.

What can I do?

 

Do I have to create a separate Chatter message?

 

 

Thanks for help!

 

Thimo

ThimoThimo

push