• Adam Lederman 18
  • NEWBIE
  • 35 Points
  • Member since 2021

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 6
    Replies
public class accountdquarys 
{
public static void aaquary(string ratting)
    {
        if(ratting !=null && ratting !='')
        {
        list<account> acc=[ Select id, name, rating, industry, annualrevenue, active__C, customerPriority__C
                        from Account where rating =: ratting];
            system.debug('account total======='+acc.size());
            if(! acc.isEmpty())
            {
               for(account accs : acc)
               {
                  system.debug('rating is '+accs);  

               } 
            }
           }
    }
          
}
Hi Team,

Can you please guide for below issue,
there are 2 custiom objects let's take Parent and Child.
On child object there is field called step(picklist values: step1,step2,...)
Requirement is  there can only be one child record of each step per Parent.

Thank you!!.
 
 
public class accountdquarys 
{
public static void aaquary(string ratting)
    {
        if(ratting !=null && ratting !='')
        {
        list<account> acc=[ Select id, name, rating, industry, annualrevenue, active__C, customerPriority__C
                        from Account where rating =: ratting];
            system.debug('account total======='+acc.size());
            if(! acc.isEmpty())
            {
               for(account accs : acc)
               {
                  system.debug('rating is '+accs);  

               } 
            }
           }
    }
          
}
Hi Guys.

I'm trying to show different action buttons on desktop/mobile for Quote object.
I tried to do this with dynamic actions in the highlights panel, but when I enable dynamic actions, the buttons do not show up even when I add the buttons to it.
ALL standard/custom buttons failed to display (including edit, delete) regardless of the platform (mobile/desktop)

Is this a bug due to being a beta?
Is there any workaround or way to display different buttons according to the device?
Hi

I want to enter the link to an Opportunity Product into a junktion object within a process in the process builder. After this the useer could click at the link to oppen the opportunity product direct out of this new tab.

Its no problem to get the id of the opportunity object but how could i get the basic url to add it infront of the url?

BR

Mike