• njd
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies

We have a package created in a developer org but our AppExchange listing submission was created from another org.

How can we have the publisher org see the managed package? On the Offering page of the submission we need to refer to our package created in the developer org.

 

Is there a way to link these? Or failing that is there a way to copy the package to the publisher org?

 

Going forward for future apps, what is best practice in this area? Is it to do the submission from the developer org?

  • May 21, 2010
  • Like
  • 0

We have a package created in a developer org but our AppExchange listing submission was created from another org.

How can we have the publisher org see the managed package? On the Offering page of the submission we need to refer to our package created in the developer org.

 

Is there a way to link these? Or failing that is there a way to copy the package to the publisher org?

 

Going forward for future apps, what is best practice in this area? Is it to do the submission from the developer org?

  • May 21, 2010
  • Like
  • 0

We use the API to SOSL search contacts based on a phone number as below:

 

"find {" + _utilities.EscapeSalesforceSpecialCharacters(clid) + "} in phone fields returning "
                                  + "contact(id, phone, firstname, lastname), "
                                  + "lead(id, phone, firstname, lastname), "
                                  + "account(id, phone, name)";

 

(We're also looking for accounts and leads).

 

Just recently it has stopped returning any contacts where the account field is not set. We have tested this on three developer orgs - all on NA7. 1 of the orgs returns contacts where no account is set, but the other two now don't. We've tested this by pointing the same bit of unit testing code at each org in turn and seeing which return contacts with no account. Seems strange that it would suddenly stop working.

 

Is there any setting in an org which would prevent contacts with no account from being searched in this way? Anyone have any ideas?

 

Thanks..