user964819
user964819

Reputation: 353

Creating products dynamically in Hybris

We have a hybris set up without any product data,Products are stored in MDM and displayed on front-end using another system(Java app).The request is sent to hybris when the user clicks checkout on the upstream system to create products in Hybris . Is there an OOTB API in hybris which allows us to create the products with all mandatory fields dynamically.

Upvotes: 0

Views: 1467

Answers (2)

droidment
droidment

Reputation: 555

"we do not want to store any products in Hybris " - You can probably fetch product detail information from MDM, on Demand, either by lazy loading or by the hybris server acting as proxy to the MDM server. You will still need to maintain atleast a few product attributes in Hybris to be able to add a product to a cart/order, like product id or name.

Upvotes: 0

Benoit Vanalderweireldt
Benoit Vanalderweireldt

Reputation: 2989

You have different options to import new products within Hybris :

  • Use OCC, and update the existing ProductController to have a new API method to add a new product
  • Use the ant 'importimpex' target (Hybris V6)
  • Use the hot folder (CSV to Impex)
  • Use Hybris Data-Hub

Are you using Hybris to place the orders only ? Why are your products not already synchronized with Hybris ?

Upvotes: 1

Related Questions