Rohit Alladi

I am a seasoned Senior Engineer with over 12 years of Enterprise software experience in the industry, including extensive work with Fortune 500 companies.
Demonstrating versatility and expertise across various technological domains, I have a proven track record in building cloud-native applications(Salesforce), Application Solution Design & development,
developing DevOps processes, engaging with AI and machine learning.
My comprehensive technical skill set, combined with the leadership and team-motivation abilities, have facilitated the delivery of high-quality software solutions.
This has significantly contributed to the advancement of the technology sector and the professional development of technologists under my mentorship throughout my career.
  • Skills: Salesforce, CRM, AWS, Python, Machine Learning

Technical Article

Creating a CSV Parser in Apex

Salesforce supports the conversion of only csv files utilizing Apex. However if you use their LWC - js platform that provides wide options to bring in libraries to parse all kinds of file types. Here in this script i would be providing basic idea of functions utilizing the parsing logic along with options to iterate […]

5 (1)

You rated this post out of 5. Change rating

2024-05-21

8,155 reads

Blogs

Big Queries, Big Money

By

I had been meaning to post this, so as I finished a piece that...

A New Word: Fardle-dun

By

fardle-din – n. a long-overdue argument that shakes up a relationship, burning wildly through...

Lukáš Karlovský: I got the green light from management and built Fabric specialization from scratch

By

The post Lukáš Karlovský: I got the green light from management and built Fabric...

Read the latest Blogs

Forums

Trigger After Update to Update the Updated Table

By Dennis Jensen

Okay I can easily see how to update a table field after an Insert...

The Pervasive Nature of Open Source

By Steve Jones - SSC Editor

Comments posted to this topic are about the item The Pervasive Nature of Open...

Group Delete

By Bruin

I have 2 tables which I need to cleanup old costkeys, based upon a...

Visit the forum

Question of the Day

Subqueries II

What is wrong (if anything) with this code?

SELECT *
 FROM Sales.SalesOrderHeader AS soh 
 WHERE customerid IN (SELECT soh.CustomerID 
                       FROM Sales.Customer AS C
   WHERE soh.CurrencyRateID = 1
   ORDER BY c.ModifiedDate)

See possible answers