Posts
Showing posts from July, 2022
CPQ Specialist certification- Subscription Pricing part 1
- Get link
- X
- Other Apps
CPQ Specialist certification- Account based contracted pricing
- Get link
- X
- Other Apps
CPQ Specialist certification- Cost Plus Markup Pricing
- Get link
- X
- Other Apps
CPQ Specialist certification- Option Pricing Within Bundles
- Get link
- X
- Other Apps
CPQ Specialist certification- Percentage of total Pricing
- Get link
- X
- Other Apps
CPQ Specialist certification- Pricing method overview
- Get link
- X
- Other Apps
CPQ Specialist certification- Configure product bundle
- Get link
- X
- Other Apps
Bulk Update from List view using flow and invocable apex
- Get link
- X
- Other Apps
Selector class public class QuerySelector { public static sobject GetRecord (string sql, id Val) { return database.query(sql + ' :val'); } public static list<sobject> GetRecord (string sql) { return database.query(sql); } public static list<sobject> GetRecords(string sql, list<id> Val) { return database.query(sql + ' :val'); } public static list<sobject> GetRecords(string sql, set<id> Val) { return database.query(sql + ' :val'); } public static void UpdateRecords(list<sobject> UpdateList, boolean PartialUpdate) { list...