SCsapcommercejobs

Tag

occ

SSR-Safe Coding Practices Every SAP Spartacus Developer Should Know

sap spartacus

SSR-Safe Coding Practices Every SAP Spartacus Developer Should Know

One of the biggest mindset shifts developers experience while working with SAP Spartacus SSR is realizing that frontend code no longer runs only inside the browser.

AvBy Avinash Jadhav6 min read
Common SSR Issues in SAP Spartacus (And How Senior Teams Actually Fix Them)

sap spartacus

Common SSR Issues in SAP Spartacus (And How Senior Teams Actually Fix Them)

Server-Side Rendering in SAP Spartacus often looks deceptively successful in the beginning. The storefront renders. SEO visibility improves. Lighthouse scores look healthier. Initial page loading feels faster. Teams feel confident that SSR is working correctly. And then production traffic starts revealing problems. Some pages suddenly fall back to CSR. Certain PDPs render inconsistently. Hydration creates layout shifts. Node memory usage spikes unexpectedly. TTFB becomes unstable during peak traffic. Occasionally the storefront behaves perfectly in QA but becomes unreliable in production.

AvBy Avinash Jadhav7 min read
SSR vs CSR in SAP Spartacus: The Mistake Most Teams Make

sap spartacus

SSR vs CSR in SAP Spartacus: The Mistake Most Teams Make

One of the most common mistakes I’ve seen in enterprise SAP Spartacus projects is the assumption that every page should use SSR. At first, that idea sounds logical. SSR improves SEO. SSR improves perceived performance. SSR improves Core Web Vitals. So naturally, many teams start thinking: “Why not server-render the entire storefront?” But this is usually the point where performance problems quietly begin. Because in real enterprise commerce applications, SSR is not something you blindly enable everywhere. It is something you strategically apply.

AvBy Avinash Jadhav3 min read
How to Reset Order Number Sequence in SAP Commerce Using Groovy Script

sap commerce cloud

How to Reset Order Number Sequence in SAP Commerce Using Groovy Script

During development, testing, or data correction in SAP Commerce Cloud, you may need to reset or update the order number sequence. Instead of changing code or database entries manually, SAP Commerce provides a powerful way to do this using Groovy scripting in hAC. In this article, we’ll walk through how to safely reset order numbers using NumberSeriesManager.

AvBy Avinash Jadhav2 min read
Multi-Site Order Code Generation in SAP Commerce (US vs IN Real Example)

sap commerce cloud

Multi-Site Order Code Generation in SAP Commerce (US vs IN Real Example)

In real-world SAP Commerce Cloud projects, businesses often run multiple websites (multi-site setup) and require different order number formats per region. For example, US orders may start with “U” while India orders start with “I”. In this article, we’ll implement a practical solution for multi-site order code generation.

AvBy Avinash Jadhav2 min read
How Order Code Generation Works in SAP Commerce Cloud (Step-by-Step Guide)

sap commerce cloud

How Order Code Generation Works in SAP Commerce Cloud (Step-by-Step Guide)

Order numbers (order codes) are a critical part of any eCommerce system. In SAP Commerce Cloud (formerly SAP Hybris), order code generation is highly configurable, scalable, and extensible. Whether you’re a developer debugging an issue or implementing custom business logic, understanding how order codes are generated will give you a strong edge. In this guide, we’ll break down the complete flow of order code generation in SAP Commerce Cloud, along with configuration, internal working, and customization points.

AvBy Avinash Jadhav3 min read