Similar Posts
Custom Metadata – User friendly Tech help
How to compare values in Custom Metadata with a given object field in Apex learn more share more Problem- Admin wants some value as configurable and set in custom metadata, now as a developer, we want to perform an action based on the matching of this mdt with values in say platform field on the…
VB-Scripting CDate v/s IsDate function – User friendly Tech help
Function Name:- CdatennMeaning :- Returns expression in the form of variant date.n Syntax:- Cdate(date) n n date argument should be valid date format n CDate recognizes date formats according to the locale setting of your system. n n Function Name:- IsDatennMeaning :- Returns Boolean value, telling whether date conversion of expression is possible or notnnSyntax:- IsDate(expression) n…
AngularJS $watch() ,$digest() and $apply() – User friendly Tech help
This post is meant for novice AngularJS programmers to enlighten them with basic comprehension of how data-binding works. To deep-dive into data-binding, you need a clear vision of how $watch(), $digest(), $apply() and dirty checking works.Lets go step by step on this topic.nnDo folow us on FB page, Twitter or G+ for more updates and learning.nn“It is not about doing so…
Understanding Add-in manager in UFT – User friendly Tech help
What is Addin Manager? It is a software which prepares UFT/QTP to provide support for multiple technologies. As we know UFT supports for wide range of environment like Windows (.Net, Java), Web, SAP,Oracle.Thus Addin manager assist UFT to work with various platforms.nnn Example:- n In case we want to automate web application (Say facebook), and…
Call to Existing Action in UFT ? – User friendly Tech help
What is a Action in UFT ? n Action is a logical set of statements which provides structure to our automation testing.In simple words,Actions help us divide our test into logical parts.For instance our Application = ‘Booking Tickets”, can have action’s like Login to application, Book the ticket, Credit card payment and Logout .nThus we…
How to compare values in Custom Metadata with given object in Apex – User friendly Tech help
Problem- Admin wants some value as configurable and set in custom metadata, now as a developer, we want to perform an action based on the matching of this mdt with values in say platform field on the account object n public Boolean validatePlatform() {n System.debug(‘Inside validatePlatform’);n List lstOfPlatforms = new List(); n Boolean isValidPlatform =…