• Sneha Bhatkande 1
  • NEWBIE
  • 5 Points
  • Member since 2015
  • Senior Salesforce Developer
  • Whitehat Jr

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hey!

 So we installed Box app, and enabled all permissions, signed in with service account and personal accounts but still unable to see anything on the box files tab as well as box component panel on standard and custom objects .

Does the installation apply to the new salesforce lightning version?  Or are there specific admin settings that need to be changed as well for it to show up?

FYI:  box files tab is completely empty without any box  references as well as component boxes in standard and custom objects.  It looks as though it is not even connecting to Box.com 

 All help would be greatly appreciate it !
How to place a placeholder for <apex:inputTextArea richtext="true"/> (richtext enabled)?
  • September 16, 2015
  • Like
  • 0

I have an interesting ask from the business, where they want to know all the accounts of a specific type that do not have any children.

 

Based on that, I thought a left anti join would work:

SELECT Name,Id FROM Account

WHERE   Id NOT IN
        (SELECT ParentId FROM Account)

 

But I get an error message:

MALFORMED_QUERY:
        (SELECT ParentId FROM Account)
                              ^
ERROR at Row:3:Column:31
The inner and outer selects should not be on the same object type

 

 

Is there a way to run this is a soql query?