August, 2021 - gettectonic.com
Salesforce Chat GPT

Salesforce API Field Types

Fields on objects represent the details of each object and are analogous to columns in a database table. Each field on each object has one or more of the following properties: Property Description Aggregatable Can be used by one of the SOQL aggregate functions. Autonumber The API creates an autonumber. Create Value for the field can be specified during create using the API. Defaulted on create If no other value is specified when created, a default value is supplied. Delete Value for the field can be deleted using the API. Filter Can be used as filter criteria in a SOQL query FROM or WHERE clause. Group Can be included in the GROUP BY clause of a SOQL query (true) or not (false). Available in API version 18.0 and later. idLookup Can be used to specify a record in an upsert call. The Id field of each object has this property and some Name fields. There are exceptions, so check for the property in any object you wish to upsert. Namepointing Indicates whether the field’s value is the Name of the parent of this object (true) or not (false). Used for objects whose parents can be more than one type of object. For example, a task can have an account or a contact as a parent. Nillable The field can contain a null value. Query The field can be queried with SOQL using the API. Restricted picklist A picklist whose values are restricted to those values defined by a Salesforce admin. Users can’t load unapproved values through the API. Retrieve Value of the field can be retrieved using the API. Sort Indicates whether a query can sort on this field (true) or not (false). Update Can be updated using the API. Like1 Related Posts Salesforce OEM AppExchange Expanding its reach beyond CRM, Salesforce.com has launched a new service called AppExchange OEM Edition, aimed at non-CRM service providers. Read more The Salesforce Story In Marc Benioff’s own words How did salesforce.com grow from a start up in a rented apartment into the world’s Read more Salesforce Jigsaw Salesforce.com, a prominent figure in cloud computing, has finalized a deal to acquire Jigsaw, a wiki-style business contact database, for Read more Health Cloud Brings Healthcare Transformation Following swiftly after last week’s successful launch of Financial Services Cloud, Salesforce has announced the second installment in its series Read more

Read More
Nonprofit

Nonprofit Marketers Invest in Technology to Support and Drive Strategy

While the demand for the creativity of marketers remains steadfast, the evolving digital landscape of constituent engagement necessitates an increased understanding of technology and automation among marketers. Although most marketers possess Customer Relationship Management (CRM) and Marketing Automation capabilities, a significant portion indicated that different departments use disparate CRM systems, leading to the creation of siloes. Nonprofit marketers invest in technology for increased engagement, success, and automation. Technology for Nonprofits Technology stands out as the second most influential factor shaping marketing strategy, trailing closely behind customer engagement. The digital realm has gained unprecedented importance, with 83% of respondents acknowledging that people’s preferences are reshaping their digital strategies. Meeting expectations is heavily dependent on digital capabilities, as stated by 82% of participants. Moreover, 79% of nonprofit marketers anticipate a more technology-driven approach post-pandemic compared to the pre-pandemic era. Collaboration emerges as the second-highest challenge for marketers this year, with enhancing collaboration ranking sixth on their list of priorities. A considerable 68% of nonprofit marketers find collaboration more challenging now than before the pandemic. The lasting impact of the pandemic on collaboration and communication methods is evident, with organizations acknowledging a permanent shift. Despite physical separation, marketers feel a heightened connection to managers, supporters, marketing colleagues, and partners, although this sentiment is less pronounced across different departments. 75% of nonprofits are implementing new remote work policies, slightly less than the 82% observed in corporations. Nonprofit Marketers Invest in Technology Marketers have recognized a significant shift during the prolonged period of varying shelter-in-place orders – employees can effectively work from anywhere with the right tools and processes. This shift, initiated in 2020 and 2021, is expected to persist, although its extent may vary by region. Nonprofit marketers are adapting by reassessing the tools used for connectivity, with 77% adopting new work collaboration technology due to the pandemic. Real-time and video conferencing apps remain the most widely used, while newer technologies like virtual whiteboards are gaining traction within nonprofits. Tectonic is please to announce our new Nonprofit Cloud Salesforce Implementation Solution. Content updated June 2024. Like1 Related Posts 50 Advantages of Salesforce Sales Cloud According to the Salesforce 2017 State of Service report, 85% of executives with service oversight identify customer service as a Read more Marketing Cloud Account Engagement and Salesforce Campaigns The interplay between Account Engagement and Salesforce Campaigns often sparks confusion and frustration among users. In this insight, we’ll demystify Read more Consent Management Analytics and Data Quality Understanding Data Analytics Consent and Consent Management Why Consent Management is Crucial Consent Management Analytics and Data Quality. With laws Read more Mapping Your Customer Journey Creating a customer journey map is a crucial undertaking for businesses aiming to improve the customer experience and foster long-term Read more

Read More
Salesforce Document Generation

Apex Salesforce

Apex is a strongly typed, object-oriented programming language that enables developers to execute flow and transaction control statements on Salesforce servers in conjunction with calls to the API. Using syntax that looks like Java and acts like database stored procedures, Apex helps developers add business logic to most system events, including button clicks, related record updates, and Visualforce pages. Apex Salesforce code can be initiated by Web service requests and from triggers on objects. As a language, Apex is: Integrated Apex provides built-in support for common Lightning Platform idioms, including: Easy to use Apex is based on familiar Java idioms, such as variable and expression syntax, block and conditional statement syntax, loop syntax, object and array notation. Where Apex introduces new elements, it uses syntax and semantics that are easy to understand and encourage efficient use of the Lightning Platform. Apex produces code that is both succinct and easy to write. Data focused Apex Salesforce is designed to thread together multiple query and DML statements into a single unit of work on the Salesforce server. Developers use database stored procedures to thread together multiple transaction statements on a database server in a similar way. Like other database stored procedures, Apex does not attempt to provide general support for rendering elements in the user interface. Rigorous Apex is a strongly typed language that uses direct references to schema objects such as object and field names. It fails quickly at compile time if any references are invalid. It stores all custom field, object, and class dependencies in metadata to ensure that they are not deleted while required by active Apex code. Hosted Apex is interpreted, executed, and controlled entirely by the Lightning Platform. Multi Tenant aware Like the rest of the Lightning Platform, Apex runs in a multitenant environment. So, the Apex runtime engine is designed to guard closely against runaway code, preventing it from monopolizing shared resources. Any code that violates limits fails with easy-to-understand error messages. Easy to test Apex provides built-in support for unit test creation and execution. It includes test results that indicate how much code is covered, and which parts of your code could be more efficient. Salesforce ensures that all custom Apex code works as expected by executing all unit tests prior to any platform upgrades. Versioned You can save your Apex code against different versions of the API. This enables you to maintain behavior. Apex is included in Salesforce Performance Edition, Unlimited Edition, Developer Edition, Enterprise Edition, and Database.com. Like Related Posts Salesforce OEM AppExchange Expanding its reach beyond CRM, Salesforce.com has launched a new service called AppExchange OEM Edition, aimed at non-CRM service providers. Read more The Salesforce Story In Marc Benioff’s own words How did salesforce.com grow from a start up in a rented apartment into the world’s Read more Salesforce Jigsaw Salesforce.com, a prominent figure in cloud computing, has finalized a deal to acquire Jigsaw, a wiki-style business contact database, for Read more Health Cloud Brings Healthcare Transformation Following swiftly after last week’s successful launch of Financial Services Cloud, Salesforce has announced the second installment in its series Read more

Read More
Public Group vs Queue in Salesforce

Public Group vs Queue in Salesforce

What distinguishes a public group from a queue in Salesforce? In Salesforce, public groups and queues serve different purposes. Public Group vs Queue in Salesforce: What is a queue in Salesforce? A queue in Salesforce is a collection point for records awaiting assignment. Queues allow users with access to review and claim ownership of records. They help prioritize, distribute, and assign records to team members, facilitating effective workload management. Constraints of Queues in Salesforce Salesforce does not limit the number of queues you can create. Queues can support various objects, including cases, leads, service contracts, and custom objects. There is no maximum limit on the number of queues, and you can set email notifications for queue members. Can a queue own a task in Salesforce? Yes, a queue can own a task in Salesforce. Tasks assigned to a queue appear in a list where any member can take ownership. This setup helps teams share and manage their workload effectively. Can a queue own a record in Salesforce? Yes, a queue can own a record in Salesforce. However, when creating new lead records, you cannot initially assign them to a lead queue. You can change the record’s owner to a queue after it has been created. How do Salesforce Queues streamline workloads? Salesforce Queues streamline workloads by: Groups vs. Public Groups in Salesforce Roles vs. Public Groups in Salesforce Joining a Public Group in Salesforce Anyone can join a public group in Salesforce. However, private groups restrict visibility and membership to group members only. Unlisted groups provide complete privacy, where only invited members can join and interact. Limits on Public Groups in Salesforce Creation of Public Groups Salesforce does not impose a limit on the number of public groups you can create within an organization. Public Group vs Queue in Salesforce Like Related Posts Salesforce OEM AppExchange Expanding its reach beyond CRM, Salesforce.com has launched a new service called AppExchange OEM Edition, aimed at non-CRM service providers. Read more The Salesforce Story In Marc Benioff’s own words How did salesforce.com grow from a start up in a rented apartment into the world’s Read more Salesforce Jigsaw Salesforce.com, a prominent figure in cloud computing, has finalized a deal to acquire Jigsaw, a wiki-style business contact database, for Read more Health Cloud Brings Healthcare Transformation Following swiftly after last week’s successful launch of Financial Services Cloud, Salesforce has announced the second installment in its series Read more

Read More
Marketing Cloud for Nonprofits

Marketing Cloud for Nonprofits

Introducing Marketing Cloud for Nonprofits: A Comprehensive Overview A brand-new edition of Salesforce Marketing Cloud tailored specifically for nonprofit organizations has arrived – Marketing Cloud for Nonprofits. This specialized edition comes with discounted licensing and includes pre-defined email templates and journeys crafted for nonprofit use cases, with more exciting features planned for future releases. So, how can nonprofits leverage Salesforce Marketing Cloud? What sets Marketing Cloud apart from other digital marketing tools? And most importantly, is Marketing Cloud the right fit for your nonprofit? Marketing Cloud for Nonprofits Utilizing Marketing Cloud for Nonprofits For those involved in nonprofit work, this offering brings significant advantages: Why Choose Marketing Cloud Over Other Tools? Salesforce Marketing Cloud (SFMC) stands out for leveraging your supporter data effectively for marketing purposes. Is Marketing Cloud for Nonprofits Suitable for You? Consider using Salesforce Marketing Cloud if your nonprofit: Pricing and Investment The introductory pricing for Marketing Cloud for Nonprofits starts at £400/€500 per month and offers flexibility to scale as your marketing needs grow. Explore additional contact allowances and sending capabilities as you expand your fundraising efforts. In the nonprofit sector, value for money is essential. The Marketing Cloud for Nonprofits edition provides an opportunity to explore SFMC’s potential with an initial investment. As you witness the fundraising benefits, consider scaling up and exploring advanced features offered by SFMC. Engage with Salesforce partners to navigate your Marketing Cloud journey effectively, and consult with your Salesforce Account Executive (AE) to assess if Marketing Cloud for Nonprofits aligns with your organization’s goals. To learn more about Salesforce products tailored for nonprofits, visit Salesforce.org and kickstart your journey towards impactful fundraising and supporter engagement. To discuss installing and implementing Marketing Cloud for Nonprofits, contact Tectonic today. Like1 Related Posts Health Cloud Brings Healthcare Transformation Following swiftly after last week’s successful launch of Financial Services Cloud, Salesforce has announced the second installment in its series Read more Top Ten Reasons Why Tectonic Loves the Cloud The Cloud is Good for Everyone – Why Tectonic loves the cloud You don’t need to worry about tracking licenses. Read more 50 Advantages of Salesforce Sales Cloud According to the Salesforce 2017 State of Service report, 85% of executives with service oversight identify customer service as a Read more CRM Cloud Salesforce What is a CRM Cloud Salesforce? Salesforce Service Cloud is a customer relationship management (CRM) platform for Salesforce clients to Read more

Read More
Salesforce Service Cloud

Salesforce Service Cloud Quickstart

Salesforce Service Cloud stands out as the premier Customer Service platform suitable for companies of all sizes from the number one CRM provider – Salesforce. Boasting a robust console to centralize and handle cases from various channels, coupled with a predictive Knowledge base and seamless integration with phone systems through CTI, launching your new Service Cloud might seem like a daunting task, especially after investing in licenses. The need to realize a return on investment (ROI) weighs heavy on the Salesforce team. Salesforce Service Cloud Quickstart is the solution for you. A Salesforce Service Cloud quickstart plan is great, but it has to be executed correctly or all your work will be in vain and you will never achieve user buy-in on the platform. Salesforce Quickstarts have become a bit of a buzzword in the Salesforce ecosystem. When selecting a quickstart implementation partner you want to ensure they aren’t just doing a cookie cutter roll out of the platform but customizing it to work with your business model. For a swift and efficient start, we advocate opting for an official Salesforce.com Implementation Partner (SI) for your Service Cloud implementations. In house attempts are not uncommon, and unfortunately, they can result in less-than-optimal outcomes. Choosing a Salesforce Consulting Partner ensures access to certified professionals with substantial experience in Service Cloud implementation. Some, like Tectonic, provide Service Cloud Quickstarts tailored to expedite company setups in as little as two weeks, all at a fixed price. Tectonic Salesforce Service Cloud Quickstart Our Salesforce Service Cloud Quickstart encompasses essential elements such as case queues, assignment and escalation, web-to-case, email-to-case, configuration of the Service Console, and visibility into Sales Cloud Account and Contact data (with reciprocal Sales visibility into cases). Equally critical for implementation success is comprehensive user training, guaranteeing smooth user adoption, and ongoing support to address any necessary adjustments and respond to subsequent queries. To ensure that Service Cloud implementations align seamlessly with the evolving needs of the companies they serve, Tectonic additionally offers a managed services solution. This encompasses continuous support, administration, and customization throughout the entire lifecycle of the product. The Servicve Cloud Quickstart is now known as the Service Cloud Salesforce Implementation Solution. Content updated April 2024. Like1 Related Posts Salesforce OEM AppExchange Expanding its reach beyond CRM, Salesforce.com has launched a new service called AppExchange OEM Edition, aimed at non-CRM service providers. Read more The Salesforce Story In Marc Benioff’s own words How did salesforce.com grow from a start up in a rented apartment into the world’s Read more Salesforce Jigsaw Salesforce.com, a prominent figure in cloud computing, has finalized a deal to acquire Jigsaw, a wiki-style business contact database, for Read more Health Cloud Brings Healthcare Transformation Following swiftly after last week’s successful launch of Financial Services Cloud, Salesforce has announced the second installment in its series Read more

Read More
Salesforce

Mobile Connect Salesforce

Create, send, receive, and track SMS and MMS text messages using MobileConnect. Send alerts and transactional messages to subscribers using templates and a drag-and-drop interface. How does mobile connect work? Simple. By matching the end user to their mobile phone number, Mobile Connect empowers the user to confirm his/her identity online, and authorize transactions such as payments, sharing only the personal data that’s essential for completing the transaction. A list of essential tasks to help you get started using MobileConnect. Like Related Posts Salesforce OEM AppExchange Expanding its reach beyond CRM, Salesforce.com has launched a new service called AppExchange OEM Edition, aimed at non-CRM service providers. Read more The Salesforce Story In Marc Benioff’s own words How did salesforce.com grow from a start up in a rented apartment into the world’s Read more Salesforce Jigsaw Salesforce.com, a prominent figure in cloud computing, has finalized a deal to acquire Jigsaw, a wiki-style business contact database, for Read more Health Cloud Brings Healthcare Transformation Following swiftly after last week’s successful launch of Financial Services Cloud, Salesforce has announced the second installment in its series Read more

Read More
gettectonic.com