BusinessProcessesData.xml
13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<?xml version="1.0" encoding="UTF-8"?>
<!--
This software is in the public domain under CC0 1.0 Universal plus a
Grant of Patent License.
To the extent possible under law, the author(s) have dedicated all
copyright and related and neighboring rights to this software to the
public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication
along with this software. If not, see
<http://creativecommons.org/publicdomain/zero/1.0/>.
-->
<entity-facade-xml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://moqui.org/xsd/entity-facade-3.xsd" type="seed">
<!-- Business Processes Wiki Space -->
<moqui.resource.wiki.WikiSpace wikiSpaceId="BUSINESS_PROCESSES"
description="Business Process Workflows - Step-by-step guides for common business operations"
restrictView="N"
restrictUpdate="Y"
rootPageLocation="dbresource://WikiSpace/BUSINESS_PROCESSES.md"/>
<!-- WikiSpace Root Page -->
<moqui.resource.DbResource
resourceId="WIKI_BUSINESS_PROCESSES"
parentResourceId="WIKI_SPACE_ROOT"
filename="BUSINESS_PROCESSES.md"
isFile="Y"/>
<moqui.resource.DbResourceFile
resourceId="WIKI_BUSINESS_PROCESSES"
mimeType="text/markdown"
versionName="v1">
<fileData><**: Create new product variants with proper features, pricing, and associations
## How to Use These Guides
These workflows are designed to be **executable by LLMs**. Each step provides:
1. **Exact Tool Call**: The complete `moqui_browse_screens` or `moqui_get_screen_details` call
2. **Parameters**: All required and optional parameters with example values
3. **Expected Result**: What the response looks like and how to extract needed data
4. **Next Step**: How to use the result in the next operation
Copy the tool calls exactly as shown, replacing example values with your specific data.
## Key Concepts
- **productId vs pseudoId**: Always use internal `productId` (returned from create operations), NOT user-visible `pseudoId`
- **Action vs Service**: Use screen `action` parameters, not direct service calls
- **Feature Application**: Use `applyProductFeatures` for existing features, `createProductFeature` only for new features
- **Variant Associations**: Link variants to virtual parent using `PatVariant` association type
## Getting Help
- Use `moqui_get_screen_details` to see available fields and dropdown options
- Use `moqui_get_help` with `wiki:service:EntityName` for service documentation
- Check `validationErrors` in action responses for failure reasons]]></fileData>
</moqui.resource.DbResourceFile>
<!-- Root Wiki Page -->
<moqui.resource.wiki.WikiPage
wikiPageId="BUSINESS_PROCESSES/root"
wikiSpaceId="BUSINESS_PROCESSES"
pagePath="root"
publishedVersionName="v1"
restrictView="N">
</moqui.resource.wiki.WikiPage>
<moqui.resource.wiki.WikiPageHistory
wikiPageId="BUSINESS_PROCESSES/root"
historySeqId="1"
versionName="v1"
userId="EX_JOHN_DOE"
changeDateTime="2026-01-23 00:00:00.000"/>
<!-- ========================================== -->
<!-- Product Variant Creation Workflow -->
<!-- ========================================== -->
<!-- Product Variant Creation Page -->
<moqui.resource.DbResource
resourceId="WIKI_BP_PRODUCT_VARIANT"
parentResourceId="WIKI_BUSINESS_PROCESSES"
filename="Product-Variant-Creation.md"
isFile="Y"/>
<moqui.resource.DbResourceFile
resourceId="WIKI_BP_PRODUCT_VARIANT"
mimeType="text/markdown"
versionName="v1">
<fileData><![CDATA[# Add Product Variant
Complete workflow for creating a new product variant with features, pricing, and association to parent.
## Prerequisites
- A virtual parent product exists (e.g., `DEMO_VAR`)
- Parent has selectable features defined (e.g., Color, Size options)
- You know the feature IDs to apply (e.g., `ColorPurple`, `SizeSmall`)
## Overview
This workflow creates a new variant product by:
1. Finding the parent product
2. Cloning parent to create the variant (or creating a new product)
3. Applying distinguishing features to identify this variant
4. Setting pricing (Current and List prices)
5. Linking variant to virtual parent
## Step 1: Find Parent Product
Locate the virtual parent product to clone from.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/FindProduct",
parameters={productId: "DEMO_VAR"}
)
```
**Expected Result:**
- Product list showing `DEMO_VAR` with its pseudoId
- Note the internal `productId` from the response (or use pseudoId for search)
- Click product link to navigate to EditProduct screen
**Next Step:** Use the parent product ID for cloning.
## Step 2: Clone Product to Create Variant
Clone the parent product to create a new variant. This copies features and prices.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/FindProduct",
action="cloneProduct",
parameters={
productId: "DEMO_VAR",
newProductId: "DEMO_VAR_PUR_SM",
newProductName: "Demo with Variants Purple Small",
copyFeatures: "Y",
copyPrices: "Y",
copyCategories: "Y",
copyAssocs: "N",
copyContent: "N",
copyInventory: "N",
copyFacilities: "N",
copyProductStore: "N"
}
)
```
**Parameters:**
- `productId`: Parent product to clone (use pseudoId or internal ID)
- `newProductId`: New product's pseudoId (user-visible identifier)
- `newProductName`: Display name for the variant
- `copyFeatures`: "Y" to copy features from parent
- `copyPrices`: "Y" to copy pricing from parent
**Expected Result:**
- Response with `status: "executed"`
- `actionResult.result.productId` contains the **internal product ID** of the new variant
- Save this `productId` for all subsequent operations
**Next Step:** Find the new variant product to get its internal `productId`.
## Step 3: Find New Variant Product
Search for the newly created variant to get its internal `productId`.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/FindProduct",
parameters={productId: "DEMO_VAR_PUR_SM"}
)
```
**Expected Result:**
- Product list shows `DEMO_VAR_PUR_SM`
- Click product link to navigate to EditProduct
- The response includes the `productId` field - **use this internal ID for all next steps**
**Next Step:** Apply distinguishing features to the variant.
## Step 4: Apply Distinguishing Features
Apply features that make this variant unique (e.g., Purple color, Small size).
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/EditProduct",
action="applyProductFeatures",
parameters={
productId: "100000",
productFeatureIdList: ["ColorPurple", "SizeSmall"],
applTypeEnumId: "PfatDistinguishing",
fromDate: "2026-01-23"
}
)
```
**Parameters:**
- `productId`: **Internal product ID** from Step 3 (NOT the pseudoId!)
- `productFeatureIdList`: Array of feature IDs to apply
- Must be existing features (use `moqui_get_screen_details` to list available options)
- Example: `["ColorPurple", "SizeSmall"]`
- `applTypeEnumId`: "PfatDistinguishing" for variants (NOT "PfatSelectable")
- `fromDate`: Optional, defaults to current date
**Expected Result:**
- Response with `status: "executed"`
- ProductFeatures grid shows the applied features
**Available Feature Types:**
- Colors: `ColorRed`, `ColorBlue`, `ColorGreen`, `ColorPurple`, `ColorBlack`, `ColorWhite`
- Sizes: `SizeSmall`, `SizeMedium`, `SizeLarge`, `SizeXL`
**Next Step:** Set pricing for the variant.
## Step 5: Add Current Price
Set the selling price for the variant.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/EditPrices",
action="createProductPrice",
parameters={
productId: "100000",
priceTypeEnumId: "PptCurrent",
pricePurposeEnumId: "PppSales",
price: "26.99",
priceUomId: "USD",
minQuantity: "1",
fromDate: "2026-01-23"
}
)
```
**Parameters:**
- `productId`: **Internal product ID** from Step 3
- `priceTypeEnumId`: "PptCurrent" for selling price
- `pricePurposeEnumId`: "PppSales" for sales transactions
- `price`: Decimal amount (e.g., "26.99")
- `priceUomId`: Currency code (default: "USD")
- `minQuantity`: Minimum quantity for this price (1 for standard pricing)
**Expected Result:**
- Response with `status: "executed"`
- ProductPrice record created
**Next Step:** Add list price for MSRP display.
## Step 6: Add List Price
Set the list price (MSRP) for the variant.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/EditPrices",
action="createProductPrice",
parameters={
productId: "100000",
priceTypeEnumId: "PptList",
pricePurposeEnumId: "PppSales",
price: "31.99",
priceUomId: "USD",
minQuantity: "1",
fromDate: "2026-01-23"
}
)
```
**Parameters:**
- `priceTypeEnumId`: "PptList" for list price
- All other parameters same as Step 5
**Expected Result:**
- Response with `status: "executed"`
- Variant now has both Current and List prices
**Next Step:** Link variant to virtual parent.
## Step 7: Link Variant to Parent
Create an association between the variant and the virtual parent product.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/EditAssocs",
action="createProductAssoc",
parameters={
productId: "DEMO_VAR",
toProductId: "100000",
productAssocTypeEnumId: "PatVariant",
fromDate: "2026-01-23"
}
)
```
**Parameters:**
- `productId`: Parent product pseudoId or internal ID (the virtual product)
- `toProductId`: **Internal product ID** of the variant (from Step 3)
- `productAssocTypeEnumId`: "PatVariant" for variant relationship
- `fromDate`: Optional, defaults to current date
**Expected Result:**
- Response with `status: "executed"`
- ProductAssoc record created linking parent to variant
**Next Step:** Verify the complete setup.
## Step 8: Verify Setup
Verify that the variant is properly configured.
```bash
moqui_browse_screens(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/EditProduct",
parameters={productId: "100000"}
)
```
**Check:**
1. **Features tab**: Shows `ColorPurple` and `SizeSmall` with `PfatDistinguishing` type
2. **Prices tab**: Shows both Current ($26.99) and List ($31.99) prices
3. **Assocs tab**: Shows association to `DEMO_VAR` with type `PatVariant`
**Expected Result:**
- All features, prices, and associations are visible
- Variant is ready for use in catalog
## Quick Reference: Common Variant Patterns
### Purple Small (Example)
- PseudoId: `DEMO_VAR_PUR_SM`
- Features: `["ColorPurple", "SizeSmall"]`
- Current: $26.99, List: $31.99
### Purple Medium
- PseudoId: `DEMO_VAR_PUR_MD`
- Features: `["ColorPurple", "SizeMedium"]`
- Current: $28.99, List: $33.99
### Purple Large
- PseudoId: `DEMO_VAR_PUR_LG`
- Features: `["ColorPurple", "SizeLarge"]`
- Current: $30.99, List: $35.99
### Purple XL
- PseudoId: `DEMO_VAR_PUR_XL`
- Features: `["ColorPurple", "SizeXL"]`
- Current: $32.99, List: $37.99
## Troubleshooting
### Error: "Product already has feature"
The feature is already applied. Check existing features and remove or use different features.
### Error: "No product found with ID"
You're using `pseudoId` instead of internal `productId`. Always use the internal `productId` returned from create operations.
### Error: "Invalid productFeatureId"
The feature ID doesn't exist. Use `moqui_get_screen_details` on EditProduct to see available features:
```bash
moqui_get_screen_details(
path="PopCommerce/PopCommerceAdmin/Catalog/Product/EditProduct",
fieldName="productFeatureIdList"
)
```
### Variant not showing on parent
Check that:
1. `PatVariant` association exists (Step 7)
2. Parent has `PfatSelectable` features for the same feature type
3. Variant has `PfatDistinguishing` features, not `PfatSelectable`
### Missing pricing
Prices are optional. If not set, the variant will use parent's default pricing or no pricing.]]></fileData>
</moqui.resource.DbResourceFile>
<moqui.resource.wiki.WikiPage
wikiPageId="BP/ProductVariant"
wikiSpaceId="BUSINESS_PROCESSES"
pagePath="Product-Variant-Creation"
publishedVersionName="v1"
restrictView="N">
</moqui.resource.wiki.WikiPage>
<moqui.resource.wiki.WikiPageHistory
wikiPageId="BP/ProductVariant"
historySeqId="1"
versionName="v1"
userId="EX_JOHN_DOE"
changeDateTime="2026-01-23 00:00:00.000"/>
</entity-facade-xml>