• Vishu Sri 6
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
How to avoid before trigger to fire on quote Object when any of the related quotelines are getting deleted.

I have a trigger on quote trigger which has soql to fetch quotelines from db, but I don't want to fire this trigger when quotelines are getting deleted.
Hi All, Good Day! I want to run batch apex on a list of records provided. I don't want to  have run any SOQL in start() method. How to achieve this?
Hi Guys, I want to write a trigger to restrict bankers to create opportunities worth more than 10000 dollars in a single day.
We have a custom lightning component (titled NavBar) which was built to function as a header/navigation bar for our Koa community. Awhile back, an update broke the mobile responsiveness of this. i.e. when a desktop browser window was shrunk or when viewed on a smaller screen (such as a phone or tablet), the menu would compress and options would be under a hamburger icon. Now, the the menu items no longer compress and the bar breaks visibility on anything less than a full browser page. I did not write this and am barely into learning CSS, Bootstrap, lightning, etc. so was hoping to maybe get some assistance. The code in its basest form is as follows:
<aura:component implements="forceCommunity:availableForAllPageTypes" >
	<div class="hcss-header">
		<div class="hcss-header-color"> 
			<a class="hcss-header-logo" href="/"><img src="https://hcss.force.com/customer/s/HCSS-Logo2.png?v=1" style="height:55px; padding-top:7px;"/></a>
			<div class="hcss-header-links">
				<a class="item" href="/">Home</a>
				<a class="item" href="/s/contactsupport" target="_blank">Contact Support</a>
				<a class="item" href="https://support.hcss.com/" target="_blank">Download Portal</a>
				<a class="item" href="http://community.hcss.com" target="_blank">HCSS Community</a>
				<a class="item" href="/s/webinars" target="_blank">Webinars</a>
				<a class="item" href="http://chat.hcss.com" target="_blank">Live Chat</a>
				<a class="item hcss-active" href="http://bomgar.hcss.com" target="_blank">Start A Remote Session</a>
			</div>
		</div>
	</div>
</aura:component>
Hi Guys, I want to write a trigger to restrict bankers to create opportunities worth more than 10000 dollars in a single day.