Data - gettectonic.com - Page 28
Exploring Large Action Models

Exploring Large Action Models

Exploring Large Action Models (LAMs) for Automated Workflow Processes While large language models (LLMs) are effective in generating text and media, Large Action Models (LAMs) push beyond simple generation—they perform complex tasks autonomously. Imagine an AI that not only generates content but also takes direct actions in workflows, such as managing customer relationship management (CRM) tasks, sending emails, or making real-time decisions. LAMs are engineered to execute tasks across various environments by seamlessly integrating with tools, data, and systems. They adapt to user commands, making them ideal for applications in industries like marketing, customer service, and beyond. Key Capabilities of LAMs A standout feature of LAMs is their ability to perform function-calling tasks, such as selecting the appropriate APIs to meet user requirements. Salesforce’s xLAM models are designed to optimize these tasks, achieving high performance with lower resource demands—ideal for both mobile applications and high-performance environments. The fc series models are specifically tuned for function-calling, enabling fast, precise, and structured responses by selecting the best APIs based on input queries. Practical Examples Using Salesforce LAMs In this article, we’ll explore: Implementation: Setting Up the Model and API Start by installing the necessary libraries: pythonCopy code! pip install transformers==4.41.0 datasets==2.19.1 tokenizers==0.19.1 flask==2.2.5 Next, load the xLAM model and tokenizer: pythonCopy codeimport json import torch from transformers import AutoModelForCausalLM, AutoTokenizer model_name = “Salesforce/xLAM-7b-fc-r” model = AutoModelForCausalLM.from_pretrained(model_name, device_map=”auto”, torch_dtype=”auto”, trust_remote_code=True) tokenizer = AutoTokenizer.from_pretrained(model_name) Now, define instructions and available functions. Task Instructions: The model will use function calls where applicable, based on user questions and available tools. Format Example: jsonCopy code{ “tool_calls”: [ {“name”: “func_name1”, “arguments”: {“argument1”: “value1”, “argument2”: “value2”}} ] } Define available APIs: pythonCopy codeget_weather_api = { “name”: “get_weather”, “description”: “Retrieve weather details”, “parameters”: {“location”: “string”, “unit”: “string”} } search_api = { “name”: “search”, “description”: “Search for online information”, “parameters”: {“query”: “string”} } Creating Flask APIs for Business Logic We can use Flask to create APIs to replicate business processes. pythonCopy codefrom flask import Flask, request, jsonify app = Flask(__name__) @app.route(“/customer”, methods=[‘GET’]) def get_customer(): customer_id = request.args.get(‘customer_id’) # Return dummy customer data return jsonify({“customer_id”: customer_id, “status”: “active”}) @app.route(“/send_email”, methods=[‘GET’]) def send_email(): email = request.args.get(’email’) # Return dummy response for email send status return jsonify({“status”: “sent”}) Testing the LAM Model and Flask APIs Define queries to test LAM’s function-calling capabilities: pythonCopy codequery = “What’s the weather like in New York in fahrenheit?” print(custom_func_def(query)) # Expected: {“tool_calls”: [{“name”: “get_weather”, “arguments”: {“location”: “New York”, “unit”: “fahrenheit”}}]} Function-Calling Models in Action Using base_call_api, LAMs can determine the correct API to call and manage workflow processes autonomously. pythonCopy codedef base_call_api(query): “””Calls APIs based on LAM recommendations.””” base_url = “http://localhost:5000/” json_response = json.loads(custom_func_def(query)) api_url = json_response[“tool_calls”][0][“name”] params = json_response[“tool_calls”][0][“arguments”] response = requests.get(base_url + api_url, params=params) return response.json() With LAMs, businesses can automate and streamline tasks in complex workflows, maximizing efficiency and empowering teams to focus on strategic initiatives. 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
Co-opetition

Co-opetition

Tech companies frequently partner for mutual benefit-Co-opetition, but in the customer service and contact center sector, the competition is heating up. Established players like Genesys, Five9, and Nice are now facing significant competition from tech giants such as AWS, Microsoft, and Google. To strengthen their positions, longtime partners Genesys and Salesforce introduced a joint platform called CX Cloud earlier this year. This platform combines Salesforce’s advanced Service Cloud and CRM with Genesys’ leading contact center as a service (CCaaS) solution- the very epitome of Co-opetition. It integrates telephony, journey management, and employee-focused workforce engagement management tools to optimize contact center operations and track agent satisfaction. While both companies compete in areas like AI, digital engagement, and generative AI, the CX Cloud partnership exemplifies their “coopetition” strategy. Salesforce runs the desktop interface, while Genesys excels in workforce management. By integrating their technologies, the two companies offer customers a flexible solution, enabling them to use the tools that best suit their needs—whether it’s managing digital channels through Salesforce or Genesys. This collaboration eliminates competition in key areas, with both Salesforce and Genesys sales teams working closely together. The partnership between the two companies is not new; their integration dates back to 2015. However, the recent deeper integration, which now covers not just voice but also digital channels, offers customers a unified view of their data. This allows users to harness customer conversation data across both platforms more effectively, giving them the flexibility to use tools from either Genesys or Salesforce. In addition to competition from one another, both Genesys and Salesforce face challenges from cloud hyperscalers like AWS, Microsoft, and Google, which also offer contact center tools. Despite this, Genesys’ and Salesforce’s CX Cloud collaboration stands out by offering a unified framework that benefits customers through combined capabilities. As an example of this complex tech landscape, AWS is both a competitor and a top partner for reselling Genesys Cloud. Both companies agree that the real focus isn’t on competing with each other, but on helping customers solve challenges around customer engagement in an efficient and cost-effective way. The joint platform also integrates with other technologies, such as Google’s Contact Center AI and AWS tools like Lambda and Polly, making it adaptable to diverse enterprise needs. Both Genesys and Salesforce emphasize the importance of an open platform with pre-built integrations, allowing customers to get more value from both platforms faster than before. CX Cloud has seen adoption across various industries and company sizes, from large enterprises to smaller, faster-moving companies. Smaller businesses, in particular, have been quick to adopt this innovation, as it allows them to access enterprise-level integrations without needing to build custom solutions. Larger enterprises, such as ADP, have also benefitted from CX Cloud by using it to deliver proactive customer experiences, addressing potential issues before they arise. Overall, the partnership between Genesys and Salesforce exemplifies Co-opetition-a collaborative approach in a highly competitive market, enabling customers to leverage the strengths of both platforms for enhanced contact center operations. 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
Salesforce Data Quality Challenges and AI Integration

Salesforce Data Quality Challenges and AI Integration

Salesforce Data Quality Challenges and AI Integration Salesforce is an incredibly powerful CRM tool, but like any system, it’s vulnerable to data quality issues if not properly managed. As organizations race to unlock the power of AI to improve sales and service experiences, they are finding that great AI requires great data. Let’s explore some of the most common Salesforce data quality challenges and how resolving them is key to succeeding in the AI era. 1. Duplicate Records Duplicate data can clutter your Salesforce system, leading to reporting inaccuracies and confusing AI-driven insights. Use Salesforce’s built-in deduplication tools or third-party apps that specialize in identifying and merging duplicate records. Implement validation rules to prevent duplicates from entering the system in the first place, ensuring cleaner data that supports accurate AI outputs. 2. Incomplete Data Incomplete data often results in missed opportunities and poor customer insights. This becomes especially problematic in AI applications, where missing data could skew results or lead to incomplete recommendations. Use Salesforce validation rules to make certain fields mandatory, ensuring critical information is captured during data entry. Regularly audit your system to identify missing data and assign tasks to fill in gaps. This ensures that both structured and unstructured data can be effectively leveraged by AI models. 3. Outdated Information Over time, data in Salesforce can become outdated, particularly customer contact details or preferences. Regularly cleanse and update your data using enrichment services that automatically refresh records with current information. For AI to deliver relevant, real-time insights, your data needs to be fresh and up to date. This is especially important when AI systems analyze both structured data (e.g., CRM entries) and unstructured data (e.g., emails or transcripts). 4. Inconsistent Data Formatting Inconsistent data formatting complicates analysis and weakens AI performance. Standardize data entry using picklists, drop-down menus, and validation rules to enforce proper formatting across all fields. A clean, consistent data set helps AI models more effectively interpret and integrate structured and unstructured data, delivering more relevant insights to both customers and employees. 5. Lack of Data Governance Without clear guidelines, it’s easy for Salesforce data quality to degrade, especially when unstructured data is added to the mix. Establish a data governance framework that includes policies for data entry, updates, and regular cleansing. Good data governance ensures that both structured and unstructured data are properly managed, making them usable by AI technologies like Large Language Models (LLMs) and Retrieval Augmented Generation (RAG). The Role of AI in Enhancing Data Management This year, every organization is racing to understand and unlock the power of AI, especially to improve sales and service experiences. However, great AI requires great data. While traditional CRM systems deal primarily with structured data like rows and columns, every business also holds a treasure trove of unstructured data in documents, emails, transcripts, and other formats. Unstructured data offers invaluable AI-driven insights, leading to more comprehensive, customer-specific interactions. For example, when a customer contacts support, AI-powered chatbots can deliver better service by pulling data from both structured (purchase history) and unstructured sources (warranty contracts or past chats). To ensure AI-generated responses are accurate and contextual, companies must integrate both structured and unstructured data into a unified 360-degree customer view. AI Frameworks for Better Data Utilization An effective way to ensure accuracy in AI is with frameworks like Retrieval Augmented Generation (RAG). RAG enhances AI by augmenting Large Language Models with proprietary, real-time data from both structured and unstructured sources. This method allows companies to deliver contextual, trusted, and relevant AI-driven interactions with customers, boosting overall satisfaction and operational efficiency. Tectonic’s Role in Optimizing Salesforce Data for AI To truly unlock the power of AI, companies must ensure that their data is of high quality and accessible to AI systems. Experts like Tectonic provide tailored Salesforce consulting services to help businesses manage and optimize their data. By ensuring data accuracy, completeness, and governance, Tectonic can support companies in preparing their structured and unstructured data for the AI era. Conclusion: The Intersection of Data Quality and AI In the modern era, data quality isn’t just about ensuring clean CRM records; it’s also about preparing your data for advanced AI applications. Whether it’s eliminating duplicates, filling in missing information, or governing data across touchpoints, maintaining high data quality is essential for leveraging AI effectively. For organizations ready to embrace AI, the first step is understanding where all their data resides and ensuring it’s suitable for their generative AI models. With the right data strategy, businesses can unlock the full potential of AI, transforming sales, service, and customer experiences across the board. 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
Salesforce Nonprofit Cloud Focuses Resources

Salesforce Nonprofit Cloud Focuses Resources

The Pancreatic Cancer Action Network (PanCAN) is currently exploring how to harness the AI capabilities within Salesforce’s Nonprofit Cloud to enhance its mission-driven services. Salesforce Nonprofit Cloud Focuses Resources allowing PanCan to focus on cancer. Pancreatic cancer is among the most aggressive and deadly forms of cancer, with a five-year survival rate of just 12.8% in the U.S. Despite accounting for only 3.3% of new cancer cases, it is responsible for 8.5% of all cancer-related deaths, making it the third leading cause of cancer mortality after lung and colon cancer. Founded in 1999, PanCAN is dedicated to researching this devastating disease and advocating for patients nationwide. The organization also provides critical information and resources to help patients make informed decisions, thereby supporting a community of patients and their families. One of PanCAN’s key services is connecting patients with specialists in their area. Julie Fleshman, President, CEO, and PanCAN’s first employee, emphasizes the importance of this program: “Our patient service program, particularly our call center, is the cornerstone of what we offer. When someone is diagnosed, they are understandably scared. Our trained case managers provide support and recommend that each patient sees a specialist. We maintain a database of specialists across the U.S. and can provide a list of surgeons or oncologists based on how far patients are willing to travel.” This case management system allows patients and their families to work with the same case manager consistently, ensuring a seamless, free-of-charge service and simplifying the information-gathering process. Salesforce Nonprofit Cloud Focuses Resources PanCAN also helps patients find clinical trials in their area, an essential service given the current state of treatment for pancreatic cancer. Nonprofit Cloud focuses on technical resources allowing PanCAN to focus on patient services. Fleshman explains: “Clinical trials often offer the most cutting-edge treatments, which is why we recommend patients consider them. We maintain a database of trials and can quickly inform patients of their options during phone consultations. This allows them to discuss potential trials with their physician and determine the best course of action.” Evolving Technology to Better Serve Patients PanCAN’s initial case management system was developed in-house about a decade ago. As it neared the end of its life, searches could take up to two hours, prompting the organization to seek a more efficient solution. PanCAN enlisted a Salesforce consulting partner to evaluate options and develop a technology strategy aligned with its goals. In June, a new system based on Salesforce’s Nonprofit Cloud Person Accounts module was launched. The new system has significantly reduced the time required to search for information, enabling case managers to assist more patients daily—a crucial improvement given the projected 66,440 new pancreatic cancer diagnoses in the U.S. this year alone. Additionally, the system’s user-friendliness has led to higher job satisfaction among employees. Fleshman stresses the importance of involving a multifunctional team in the implementation process: “It’s essential to be clear about your objectives from the start, but it’s equally important to include the right people. If we had only involved the patient services team and not the tech team responsible for maintenance and security, or the finance team whose system needed to integrate with ours, the project would have been siloed and incomplete.” Salesforce Nonprofit Cloud Focuses Resources and Solutions for Nonprofits The updated system includes advanced features like the OmniStudio process automation tool, which has streamlined the patient questionnaire process, and an integrated data processing engine capable of saving multiple records simultaneously. Leveraging AI to Enhance Impact Looking ahead, PanCAN is assessing how to leverage the AI capabilities within Salesforce’s Nonprofit Cloud to further enhance its services. Fleshman outlines the next steps: “Providing information and resources to patients is crucial, but we also need to use data to optimize our programs and allocate our resources effectively. We hope AI will help us analyze data to better understand our impact and patient experiences. For instance, AI could reveal trends in how often we refer patients to specific doctors or studies, identify gaps in our services, or highlight areas where we should focus more of our efforts. Understanding these factors will help us allocate our time, energy, and resources more efficiently.” Despite the benefits, managing change has been key to addressing employee concerns about AI potentially threatening their jobs. Fleshman notes: “While there was excitement about getting a faster, more efficient tool, there was also anxiety about job security. Our focus was on demonstrating how AI could enhance our ability to provide better reports and insights rather than replacing jobs. We believe that even the best tools are useless if people aren’t trained to use them effectively.” A Vision for the Future PanCAN has developed a five-year technology roadmap that includes upgrading its grant management and financial systems, as well as introducing marketing applications to better understand its target audience, improve outreach, and personalize interactions. As Fleshman concludes: “Our executive team recognizes that without cutting-edge technology, we won’t achieve our ambitious goals. In our sector, technology often gets deprioritized, but updating systems allows us to deliver our mission more productively and efficiently, ultimately better serving those we’re here to help.” Our Take According to Salesforce’s sixth Nonprofit Trends Report, many charities view AI with a mix of optimism, curiosity, and caution. PanCAN’s approach to adopting AI—focusing on its potential to optimize resources and better support patients—demonstrates the organization’s forward-thinking and commitment to its mission. 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
Data Integration with AWS Glue

Data Integration with AWS Glue

The rapid rise of Software as a Service (SaaS) solutions has led to data silos across different platforms, making it challenging to consolidate insights. Effective data analytics depends on the ability to seamlessly integrate data from various systems by identifying, gathering, cleansing, and combining it into a unified format. AWS Glue, a serverless data integration service, simplifies this process with scalable, efficient, and cost-effective solutions for unifying data from multiple sources. By using AWS Glue, organizations can streamline data integration, minimize silos, and enhance agility in managing data pipelines, unlocking the full potential of their data for analytics, decision-making, and innovation. This insight explores the new Salesforce connector for AWS Glue and demonstrates how to build a modern Extract, Transform, and Load (ETL) pipeline using AWS Glue ETL scripts. Introducing the Salesforce Connector for AWS Glue To meet diverse data integration needs, AWS Glue now supports SaaS connectivity for Salesforce. This enables users to quickly preview, transfer, and query customer relationship management (CRM) data, while dynamically fetching the schema. With the Salesforce connector, users can ingest and transform CRM data and load it into any AWS Glue-supported destination, such as Amazon S3, in preferred formats like Apache Iceberg, Apache Hudi, and Delta Lake. It also supports reverse ETL use cases, enabling data to be written back to Salesforce. Key Benefits: Solution Overview For this use case, we retrieve the full load of a Salesforce account object into a data lake on Amazon S3 and capture incremental changes. The solution also enables updates to certain fields in the data lake and synchronizes them back to Salesforce. The process involves creating two ETL jobs using AWS Glue with the Salesforce connector. The first job ingests the Salesforce account object into an Apache Iceberg-format data lake on Amazon S3. The second job captures updates and pushes them back to Salesforce. Prerequisites: Creating the ETL Pipeline Step 1: Ingest Salesforce Account Object Using the AWS Glue console, create a new job to transfer the Salesforce account object into an Apache Iceberg-format transactional data lake in Amazon S3. The script checks if the account table exists, performs an upsert if it does, or creates a new table if not. Step 2: Push Changes Back to Salesforce Create a second ETL job to update Salesforce with changes made in the data lake. This job writes the updated account records from Amazon S3 back to Salesforce. Example Query sqlCopy codeSELECT id, name, type, active__c, upsellopportunity__c, lastmodifieddate FROM “glue_etl_salesforce_db”.”account”; Additional Considerations You can schedule the ETL jobs using AWS Glue job triggers or integrate them with other AWS services like AWS Lambda and Amazon EventBridge for advanced workflows. Additionally, AWS Glue supports importing deleted Salesforce records by configuring the IMPORT_DELETED_RECORDS option. Clean Up After completing the process, clean up the resources used in AWS Glue, including jobs, connections, Secrets Manager secrets, IAM roles, and the S3 bucket to avoid incurring unnecessary charges. Conclusion The AWS Glue connector for Salesforce simplifies the analytics pipeline, accelerates insights, and supports data-driven decision-making. Its serverless architecture eliminates the need for infrastructure management, offering a cost-effective and agile approach to data integration, empowering organizations to efficiently meet their analytics needs. 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
Salesforce to Acquire PredictSpring

Salesforce to Acquire PredictSpring

Salesforce to Acquire PredictSpring, Enhancing Omnichannel Capabilities Last month, Salesforce finalized an agreement to acquire PredictSpring, a leading provider of point-of-sale (POS) software. PredictSpring, known for its omnichannel commerce solutions, offers a suite of mobile POS systems along with clienteling, inventory management, and order management tools tailored for the retail sector. Insights from Industry Analysts In a recent episode of CX Today’s BIG News Update, key analysts shared their perspectives on the acquisition, highlighting three major points. Filling a Critical Gap Rebecca Wetteman, CEO & Principal Analyst at Valoir, noted that while Salesforce has effectively assisted many B2B clients, such as Fiserv and Peloton, in transitioning to B2C strategies, one crucial component was missing: order management. PredictSpring’s solutions address this gap, enhancing Salesforce’s data strategy and providing a more comprehensive customer view. Wetteman stated, “This addition is a significant move for Salesforce, strengthening their position beyond B2B and bridging the B2B to B2C divide.” Advancing Omnichannel Retail Simon Harrison, Founder & CEO at Actionary, emphasized that the acquisition represents a major step forward in delivering effective omnichannel solutions. PredictSpring’s technology promises to solve challenges associated with integrating in-store and digital experiences, enhancing overall customer interactions. Harrison praised the investment, stating, “This is a smart move, addressing real-world issues and increasing value for both staff and customers in today’s dynamic retail environment.” Expanding Market Reach Martin Schnieder, VP and Principal Analyst at Constellation Research, pointed out that acquiring PredictSpring aligns with Salesforce’s strategy to expand its total addressable market (TAM). He highlighted retail as a sector with unique challenges and opportunities, where Salesforce’s Data Cloud and platform can create impactful vertical-specific solutions. Schnieder noted, “Retail offers a different model with constrained margins, and Salesforce can leverage its platform to provide substantial value.” Michael Fauscette, Founder, CEO, and Chief Analyst at Arion Research, observed that Salesforce is strategically acquiring startups to fill gaps in its vertical offerings. He remarked, “Salesforce’s approach involves identifying startups that address specific needs and integrating them into their ecosystem. This strategy has proven effective and allows Salesforce to go to market directly with these partners, a practice not always seen among enterprise vendors.” Conclusion Salesforce’s acquisition of PredictSpring is a strategic move to enhance its omnichannel capabilities and address key gaps in its offerings. By integrating PredictSpring’s advanced POS solutions, Salesforce aims to strengthen its position in the retail sector and continue its growth trajectory in both B2B and B2C markets. 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
Autonomous AI Sans Human

Autonomous AI Sans Human

Rise of Autonomous AI: Less Human Control and Increasing Adoption A recent Salesforce study reveals that nearly half of employees in Switzerland (46%) are either using or experimenting with AI technologies. While there is a general comfort with AI when it complements human efforts, many employees still prefer human oversight for tasks like training, data security, and onboarding. Despite this, the data indicates that increased investment in education and training could enhance trust in autonomous AI systems. Switzerland’s AI Adoption Compared to Other Countries Switzerland shows a higher openness to AI compared to other nations. In Germany, only 28% of respondents use AI confidently, compared to 46% in Switzerland. The UK (17%) and Ireland (15%) show even more skepticism. Conversely, India has the highest AI confidence, with 40% of respondents showing strong support. In Switzerland, however, 24% of employees are reluctant to use AI at work, and 25% are not keen on Generative AI. Sector-Specific AI Usage Trends The study also highlights significant sector differences. In the communications industry, 69% of employees are willing to use AI tools like ChatGPT and Gemini without hesitation. This contrasts with the life sciences and biotechnology sectors, where 72% of respondents are resistant to AI adoption. In the public sector, while there is general willingness, 56% express reservations due to a lack of expertise and guidelines. Notably, 39% of public sector respondents are completely opposed to using AI tools. Generational Insights on AI Proficiency Among different generations, Millennials and Gen X exhibit the highest proficiency and comfort with AI technology. In contrast, Gen Z appears more critical of AI, with 82% of this group avoiding AI assistants like IBM Watson or Microsoft Copilot. Millennials are more engaged, with 39% actively experimenting with or fully integrating AI assistants into their work routines. Gregory Leproux, Senior Director of Solution Engineering at Salesforce Switzerland, notes, “Our study reflects our customer experience: AI is widely used in Swiss companies, but human intervention remains prevalent. To fully leverage the benefits of AI, there is a need for robust control mechanisms and policies for responsible AI use, allowing for systematic review rather than piecemeal assessment. Thoughtfully designed AI systems can merge human and machine intelligence, marking the beginning of an exciting new era.” The survey, conducted by Salesforce in partnership with YouGov, took place from March 20 to April 3, 2024, with nearly 6,000 full-time employees from various industries and countries, including Switzerland (265 participants). The online survey covered nine countries: the US, UK, Ireland, Australia, France, Germany, India, Singapore, and Switzerland. Source: www.salesforce.com 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 Data Migration

Salesforce Data Migration

In today’s era of rapid digital transformation, efficient data migration has become increasingly important as cloud adoption gains momentum. Foundry’s research indicates that 63% of IT leaders have accelerated their cloud migrations, but 90% encounter challenges, often related to budget constraints. This emphasizes the need for meticulous planning and strategic execution. This insight focuses on Salesforce data migration, outlining why it’s essential and providing a nine-step plan for a successful migration. Additionally, we look into data preparation solutions and highlight Salesforce data migration tools, turning potential challenges into growth opportunities. Salesforce Data Migration Checklist Why is Data Migration Important? In 2011, we faced the challenge of transferring data from an old phone to a first smartphone. The contacts were especially important, but the outdated phone lacked any data transfer capabilities. Unwilling to manually re-enter everything, we researched extensively and discovered a method to extract the data into a CSV file. Converting it into vCard format, we successfully migrated all contacts. This personal experience illustrates the significance of data migration, not just for businesses but for everyday scenarios as well. For organizations, having a structured data migration plan is critical when transitioning from legacy systems to modern platforms like Salesforce. It enhances efficiency, scalability, and accessibility, supporting business growth through better data management, cost savings, and improved decision-making. Data migration also ensures integrity and security, aligning IT capabilities with evolving business needs and driving innovation in a fast-changing technological landscape. Learn how we helped Cresa migrate over 8,000 records to Salesforce with 100% accuracy. What is Salesforce Data Migration? Salesforce data migration refers to the process of transferring information from external systems—such as legacy CRM platforms or local databases—into Salesforce. This process not only preserves data integrity but also supports better decision-making, enhances customer service, and enables business growth. A well-planned Salesforce data migration strategy is critical for unlocking the full benefits of the platform and ensuring a seamless transition. Salesforce Data Migration Plan: 9 Key Steps Need Help with Data Migration to Salesforce?We offer consulting services to help you navigate your data migration challenges, from auditing to strategy execution. Contact Tectonic today. Practical Salesforce Data Migration ExampleUsing Data Loader, here’s a step-by-step guide to migrating a list of companies. After logging into Salesforce and selecting the Accounts object, you map fields from your CSV file, execute the migration, and review the logs to ensure accuracy. 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
Salesforce for Public Loan Management

Salesforce for Public Loan Management

Public Loan Management Solutions: Optimized with Salesforce Technology In the dynamic world of financial services, public loan management has become increasingly important as organizations aim to improve efficiency, transparency, and borrower satisfaction. Leveraging cutting-edge technology is key to achieving these goals, and Salesforce offers a powerful platform for optimizing public loan management. This article explores how Salesforce’s capabilities can streamline and enhance various aspects of public loan management. The Role of Loan Boarding in Public Loan Management Loan boarding is a critical step where approved loans are entered into the system. This process typically includes data entry, document verification, and compliance checks. Salesforce’s customizable objects and automation features simplify this process by automating workflows, ensuring all necessary documents are collected and verified before the loan is boarded. Integrating external systems allows real-time data updates, minimizing errors and reducing manual intervention. Streamlining Handoff and Approval Processes Loan applications often require multiple approvals from stakeholders, which can be time-consuming and prone to delays. Salesforce facilitates efficient communication and collaboration through tools like Chatter, which allows instant messaging and file sharing. This ensures all stakeholders stay informed about application status changes, eliminating the need to switch between different platforms and speeding up the approval process. Disbursement Efficiency Timely fund disbursement is vital for maintaining borrower trust. Salesforce can automate disbursement processes by integrating payment gateways, accelerating fund transfers while providing borrowers with real-time updates on their disbursements. This enhances transparency and improves borrower satisfaction. Effective Management of Amortization Schedules Amortization schedules detail the repayment of loans over time, including both principal and interest. Salesforce’s reporting tools, combined with custom formulas, enable organizations to generate accurate, customized amortization schedules. These schedules can be easily updated if loan terms change, ensuring borrowers and lenders have up-to-date information. Simplifying Repayment Schedules Repayment schedules are essential for managing loan payments. Salesforce’s task management features allow organizations to automate reminders for upcoming payments, while borrowers can access personalized portals to view their schedules, promoting transparency and accountability. Customizable Loan Templates In public lending, creating flexible yet standardized loan templates is essential. Salesforce allows organizations to design customizable templates that meet both organizational policies and borrower needs, reducing onboarding time and improving efficiency. Comprehensive Document Management Managing loan-related documents is often challenging due to regulatory requirements and varying documentation needs. Salesforce’s integrated document management tools, such as Files and Content Libraries, provide secure storage and easy retrieval of documents, ensuring compliance and simplifying audits. Automating Interest Accruals and Invoicing Interest accruals require accurate tracking to ensure transparency for both lenders and borrowers. Salesforce’s invoicing automation ensures that billing cycles align with interest accruals, reducing administrative overhead and improving financial accuracy. Efficient Payment Processing and Waterfall Management Payment processing is essential for collecting repayments and adhering to waterfall structures, which determine how funds are allocated (e.g., to principal vs. interest). Salesforce integrates with NACHA/ACH for seamless payment processing and offers batch import capabilities for external payment records, improving cash flow management. Portfolio Management and Risk Assessment Managing a large portfolio of loans involves monitoring performance and assessing risks. Salesforce’s real-time analytics, reports, and dashboards provide managers with insights into portfolio performance, enabling data-driven decisions regarding portfolio adjustments, repayment patterns, and borrower risk. Enhancing Borrower Communication Consistent, clear communication is vital throughout the loan lifecycle, from initial inquiry to final repayment. Salesforce automates alerts and task assignments to ensure no critical communications are missed, keeping borrowers engaged and informed at every stage. Conclusion Salesforce technology offers a transformative approach to public loan management by enhancing operational efficiency, improving borrower experiences, and streamlining processes. Whether through automating document management, optimizing approval workflows, or managing payment cycles, Salesforce provides public lending organizations with the tools they need to deliver reliable, transparent, and efficient loan services to their constituents. By adopting Salesforce for public loan management, organizations not only improve internal operations but also elevate the borrower experience, ultimately contributing to community development and financial inclusion on a national scale. 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
Healthcare IT and CrowdStrike

Healthcare IT and CrowdStrike

Learning from the CrowdStrike Outage: Enhancing Resilience and Incident Response Overview: In the wake of the CrowdStrike outage, businesses around the globe are focusing on restoring business continuity and bolstering their resilience for future incidents. On Friday, July 19, 2024, a faulty content update triggered crashes across approximately 8.5 million Windows devices, displaying the infamous blue screen of death. This affected a range of sectors, including hospitals and airlines. Although less than 1% of all Windows machines were impacted, the outage caused significant disruptions, particularly in healthcare. For instance, Mass General Brigham hospitals and clinics canceled all non-urgent visits on the day of the outage. Other major healthcare providers, such as Memorial Sloan Kettering Cancer Center, Cleveland Clinic, and Mount Sinai, also faced operational challenges. This incident was not a result of a cyberattack but rather a defective content configuration update to CrowdStrike’s Falcon threat detection platform. According to the company’s preliminary post-incident review, a bug in the content validator allowed the faulty update to pass through validation despite containing errors. “What we’re hearing is that the recovery is well underway. Most healthcare organizations I’ve been talking to are back up and running,” said David Finn, Executive Vice President of Governance, Risk, and Compliance at First Health Advisory, in an interview with TechTarget Editorial. “The scope was much smaller than some of the other issues we’ve seen in the recent past in healthcare, but the response was healthy. Still, I think there are a lot of lessons learned.” Health IT security experts suggest that this incident can serve as a valuable learning opportunity for improving future response and recovery strategies. Planning for the Inevitable “The bad thing is always going to happen,” Finn stated, drawing on his 40 years of experience in health IT security and privacy. “The trick is to plan for it, be prepared, and ensure your ability to recover and remain resilient.” Whether it’s a large-scale cyberattack, like the one at Change Healthcare in February 2024, or a global IT outage without malicious origins, healthcare organizations of all sizes must be ready to respond to a variety of incidents that could disrupt critical systems. Finn emphasized the importance of proactive due diligence and thorough incident response planning, particularly in identifying and addressing single points of failure. Preparing for potential operational challenges in advance can make all the difference when an incident actually occurs. “We have to change the way we think about deploying this stuff,” Finn added. “Software, fortunately or not, is written by human beings, and human beings will always make mistakes. It’s our job to protect against those kinds of mistakes.” The Importance of Resilience Cyber-resilience is essential for enabling organizations to quickly recover and restore operations. By understanding that incidents like the CrowdStrike outage are bound to occur, organizations can focus on building resilience to effectively manage such events. Finn highlighted the need for resilience and redundancy in response to incidents like the CrowdStrike outage. “I still trust CrowdStrike, but that trust doesn’t mean they’re going to be perfect every time,” Finn noted. Healthcare organizations responded quickly to the incident, despite the disruptions it caused. For instance, Mass General Brigham activated its incident command to manage its response, keeping clinics and emergency departments open for urgent cases. By Monday, July 22, they had resumed scheduled appointments and procedures. According to Erik Weinick, co-head of the privacy and cybersecurity practice at New York-based law firm Otterbourg, the CrowdStrike incident underscores the need for organizations to reassess their legal and technical risk protocols. “Although initial reports indicate that the incident was an accident, not an attack, organizations should use this incident as motivation to conduct information audits, penetration testing, update system mapping and software, including security patches, and remind users about best security practices like multifactor authentication and frequently changing difficult-to-guess passwords,” Weinick said. Essentially, organizations can leverage incidents like the CrowdStrike outage to strengthen their risk management strategies and enhance their cyber-resilience. Third-Party Risk Management Challenges Even with strict security controls in place, organizations are still vulnerable to risks from third-party vendors. As the interconnectedness of healthcare systems grows, so does the potential for third-party risks. The global IT outage highlighted the importance of third-party risk management and the associated challenges. In 2023 and 2022, some of the largest healthcare data breaches were caused by third-party vendors. “People probably did a lot of risk analysis around CrowdStrike, but I’ll bet no one ever asked what tools they use to produce their software,” Finn speculated. “Until we get standards in place for software development and certifications for software sold to critical infrastructure sectors, we’re going to have to dig a little deeper.” In response to the incident, CrowdStrike announced plans to enhance its software resilience and testing processes, including adding more validation checks to its Content Validator for Rapid Response Content to prevent the deployment of faulty content. The company also plans to conduct multiple independent third-party security code reviews to prevent similar incidents in the future. “On the legal front, organizations should review their vendor agreements to understand their obligations regarding privacy and data security, who their partners are working with, and what limitations exist on liability for incidents like the CrowdStrike outage,” Weinick advised. He also recommended checking business disruption insurance coverage and conducting tabletop exercises to rehearse business continuity and recovery procedures in the event of a systems outage. Key Takeaways The CrowdStrike outage reinforced essential IT and security considerations for organizations worldwide, particularly in the areas of resilience, third-party risk management, and incident response and recovery. By learning from this event, organizations can better prepare for future challenges and improve their overall cyber-resilience. 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

Read More
Converting 15-Character IDs to 18-Character in Salesforce

Converting 15-Character IDs to 18-Character in Salesforce

In Salesforce, every record is assigned a unique Record ID, which is essential for managing data, writing formulas, and referencing records as an admin or developer. There are two types of Record IDs: a 15-character version and an 18-character version, each suited for different scenarios. Converting 15-character IDs to 18-character ones can be time-consuming when done manually, but several tools and methods can simplify the process, allowing for instant conversion with just a click. Understanding Salesforce Record IDs 15-Character Record ID The 15-character Record ID is case-sensitive and typically used in Salesforce’s user interface for tasks like editing records and generating reports. However, its case sensitivity can create issues with systems that do not recognize differences between uppercase and lowercase letters. 18-Character Record ID To mitigate case sensitivity issues, Salesforce offers an 18-character ID, which is used in APIs and tools such as Data Loader. This ID adds three additional characters to the 15-character version and is always returned by these tools during data exports. When to Use Each ID For consistency, the 18-character ID is preferable, especially when working with external systems. It’s best practice to use the 18-character ID in formulas, API calls, or any data comparisons to avoid errors caused by case sensitivity. Converting IDs Using a Formula Field in Salesforce Salesforce recommends creating a formula field with the CASESAFEID(Id) function to convert the 15-character ID to an 18-character ID. Here are some key points to consider: Implementation Steps: Once completed, this formula field will display the 18-character ID on relevant records. APIs and Software DevelopmentIf you need a more scalable or efficient solution, consider using Salesforce APIs or third-party tools for ID conversion. While online tools may suffice for small tasks, they can become unwieldy when handling hundreds or thousands of records in a CSV or Excel file. Streamlining ID Conversion with Xappex Tools Imagine the frustration of manually copying and pasting IDs! That’s where the XL-Connector and G-Connector from Xappex come into play. These tools work directly in Excel or Google Sheets, simplifying the ID conversion process. Instead of juggling multiple tools or navigating complex processes, you can seamlessly convert Salesforce IDs within your spreadsheet, saving significant time and effort. Using XL-Connector for ID Conversion in Excel Using G-Connector (Google Sheets) for ID Conversion G-Connector is Xappex’s integration tool for Google Sheets and Salesforce. If you haven’t installed it yet, do so and log in to your Salesforce org. The sheet will automatically update with the new 18-character IDs and provide links to open the records directly in Salesforce. Conclusion In summary, managing Salesforce Record IDs doesn’t have to be a hassle. While converting 15-character IDs to 18-character IDs is crucial for consistency, doing it manually can be tedious. With XL-Connector and G-Connector, you can streamline ID conversion with just a click in Excel or Google Sheets, making your workflow much more efficient. 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
2024 AI Glossary

2024 AI Glossary

Artificial intelligence (AI) has moved from an emerging technology to a mainstream business imperative, making it essential for leaders across industries to understand and communicate its concepts. To help you unlock the full potential of AI in your organization, this 2024 AI Glossary outlines key terms and phrases that are critical for discussing and implementing AI solutions. Tectonic 2024 AI Glossary Active LearningA blend of supervised and unsupervised learning, active learning allows AI models to identify patterns, determine the next step in learning, and only seek human intervention when necessary. This makes it an efficient approach to developing specialized AI models with greater speed and precision, which is ideal for businesses aiming for reliability and efficiency in AI adoption. AI AlignmentThis subfield focuses on aligning the objectives of AI systems with the goals of their designers or users. It ensures that AI achieves intended outcomes while also integrating ethical standards and values when making decisions. AI HallucinationsThese occur when an AI system generates incorrect or misleading outputs. Hallucinations often stem from biased or insufficient training data or incorrect model assumptions. AI-Powered AutomationAlso known as “intelligent automation,” this refers to the integration of AI with rules-based automation tools like robotic process automation (RPA). By incorporating AI technologies such as machine learning (ML), natural language processing (NLP), and computer vision (CV), AI-powered automation expands the scope of tasks that can be automated, enhancing productivity and customer experience. AI Usage AuditingAn AI usage audit is a comprehensive review that ensures your AI program meets its goals, complies with legal requirements, and adheres to organizational standards. This process helps confirm the ethical and accurate performance of AI systems. Artificial General Intelligence (AGI)AGI refers to a theoretical AI system that matches human cognitive abilities and adaptability. While it remains a future concept, experts predict it may take decades or even centuries to develop true AGI. Artificial Intelligence (AI)AI encompasses computer systems that can perform complex tasks traditionally requiring human intelligence, such as reasoning, decision-making, and problem-solving. BiasBias in AI refers to skewed outcomes that unfairly disadvantage certain ideas, objectives, or groups of people. This often results from insufficient or unrepresentative training data. Confidence ScoreA confidence score is a probability measure indicating how certain an AI model is that it has performed its assigned task correctly. Conversational AIA type of AI designed to simulate human conversation using techniques like NLP and generative AI. It can be further enhanced with capabilities like image recognition. Cost ControlThis is the process of monitoring project progress in real-time, tracking resource usage, analyzing performance metrics, and addressing potential budget issues before they escalate, ensuring projects stay on track. Data Annotation (Data Labeling)The process of labeling data with specific features to help AI models learn and recognize patterns during training. Deep LearningA subset of machine learning that uses multi-layered neural networks to simulate complex human decision-making processes. Enterprise AIAI technology designed specifically to meet organizational needs, including governance, compliance, and security requirements. Foundational ModelsThese models learn from large datasets and can be fine-tuned for specific tasks. Their adaptability makes them cost-effective, reducing the need for separate models for each task. Generative AIA type of AI capable of creating new content such as text, images, audio, and synthetic data. It learns from vast datasets and generates new outputs that resemble but do not replicate the original data. Generative AI Feature GovernanceA set of principles and policies ensuring the responsible use of generative AI technologies throughout an organization, aligning with company values and societal norms. Human in the Loop (HITL)A feedback process where human intervention ensures the accuracy and ethical standards of AI outputs, essential for improving AI training and decision-making. Intelligent Document Processing (IDP)IDP extracts data from a variety of document types using AI techniques like NLP and CV to automate and analyze document-based tasks. Large Language Model (LLM)An AI technology trained on massive datasets to understand and generate text. LLMs are key in language understanding and generation and utilize transformer models for processing sequential data. Machine Learning (ML)A branch of AI that allows systems to learn from data and improve accuracy over time through algorithms. Model AccuracyA measure of how often an AI model performs tasks correctly, typically evaluated using metrics such as the F1 score, which combines precision and recall. Natural Language Processing (NLP)An AI technique that enables machines to understand, interpret, and generate human language through a combination of linguistic and statistical models. Retrieval Augmented Generation (RAG)This technique enhances the reliability of generative AI by incorporating external data to improve the accuracy of generated content. Supervised LearningA machine learning approach that uses labeled datasets to train AI models to make accurate predictions. Unsupervised LearningA type of machine learning that analyzes and groups unlabeled data without human input, often used to discover hidden patterns. By understanding these terms, you can better navigate the AI implementation world and apply its transformative power to drive innovation and efficiency across your organization. Tectonic 2024 AI Glossary 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 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 Alphabet Soup of Cloud Terminology As with any technology, the cloud brings its own alphabet soup of terms. This insight will hopefully help you navigate Read more

Read More
Salesforce Revenue Cloud

Transition from Salesforce CPQ to Revenue Cloud

As organizations look to optimize their revenue processes, Salesforce has been encouraging customers to transition from Salesforce CPQ (Configure, Price, Quote) to Revenue Cloud (Rev Cloud). However, while the advantages of Revenue Cloud are often highlighted, clear, actionable steps to make the migration worthwhile are not always readily available. After consulting with Salesforce teams and partners, it’s evident that many customers remain hesitant due to concerns about cost, disruption, and customization complexities.

Read More
gettectonic.com