• Larry Wieskopf
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Just installed our App in Summer 14 for the first time and it fails with only a cryptic error message.

 

ORG (00DA0000000BD2Q)

User: Larry Wieskopf (005A0000001n3V8)

Package: iaRetirement (04tA0000000XzBM)

Error Number: 657333137-44602 (-1275709950)

 

Package Install Failed

 

And in another ORG 

Error Number: 1002007348-60085 (1758805011)


Does anyone know what these messages mean or where we can trace them

Thanks
Larry

Is there a way to execute a trigger when a post is liked?  

Feedlike is restricted but we looked at the FeedCount in feeditem.

Created an after update trigger on FeedItem that tests for a Likecount >0.

I could be doing something wrong but it doesn't appear that updating the LikeCount causes the trigger to fire.

 

 

trigger FeedItem_Update_Payable_Status on FeedItem (after insert,after update) {

for (FeedItem FI : trigger.new)
{
if (FI.LikeCount != 0)
{

Action required goes here

}

 

Larry

 

 

 

Just installed our App in Summer 14 for the first time and it fails with only a cryptic error message.

 

ORG (00DA0000000BD2Q)

User: Larry Wieskopf (005A0000001n3V8)

Package: iaRetirement (04tA0000000XzBM)

Error Number: 657333137-44602 (-1275709950)

 

Package Install Failed

 

And in another ORG 

Error Number: 1002007348-60085 (1758805011)


Does anyone know what these messages mean or where we can trace them

Thanks
Larry

I posted this in formulas and validation rules -- was wondering if there is a away to know what post is most popular -- of all time, for the day, etc, based on the number of likes a post gets.

 

Thanks for the help!

  • March 04, 2011
  • Like
  • 0