Hi All
According to the adobe analytics documentation you can send multiple product information with different events associated with it.
https://docs.adobe.com/content/help/en/analytics/implementation/vars/page-vars/products.html
I followed the syntax and I sent a request like this:
s.events = "event1,event2,event20,event21"
s.products = "Example category 3;12345;4;12.60;event1|event21=9;eVar1=Merchandising value|eVar2=Another merchandising value,Example category 4;12346;1;59.99;event2|event20=1;eVar3=Merchandising value 3|eVar4=Example value four";
counter events: event1,event2
numeric events: event20, event21
products: 12345(event1 and event21),12346 (event2,event20)
When I check the results in workspace, I see that both of the events1 and 2 are associated with both the products.

According to my expectation,
event1 should only be associated with product 12345
event2 should only be associated with product 12346.
It seems all the counter events (not numeric events) mentioned in s.events is getting associated to all the products. This was not mentioned anywhere in the adobe analytics document
When passing multiple products, I want different events get associated with each product.
If my implementation is wrong, how would I achieve my expected result?