dennysutanto
01/25/2024, 11:16 AM[
{ iteminternalid: 123, itemtype:"itemgroup", memo: "The header of item group" },
{ iteminternalid: 124, itemtype:"inventoryitem", memo: "1st component of group" },
{ iteminternalid: 125, itemtype:"inventoryitem", memo: "2nd component of group" },
]
My item Group has 4 components as below:
Item internal id 123
1. internalid 124
2. internalid 125
3. internalid 126
4. internalid 127
The expectation is that i will see 4 line items in SO as below
1. item 123
2. item 124
3. item 125
4. End group
but instead i see
1. item 123
2. item 124
3. item 125
4. item 126
5. item 127
6. End group
7. item 124
8. item 125
I know the the problem is that when i insert the Item Group netsuite will auto add all the components, but i don't know the solution.
Help is really appreciated
Thanksalien4u
01/25/2024, 12:40 PMdennysutanto
01/25/2024, 3:55 PMalien4u
01/25/2024, 5:43 PMdennysutanto
01/26/2024, 1:52 AMalien4u
01/26/2024, 1:55 AMpostSourcing
otherwise you can try lineInsert
or validateLine
to determine when the End Group line is being added, then determine de Group Members and delete the ones you don’t need.dennysutanto
01/26/2024, 1:56 AMdennysutanto
01/26/2024, 3:17 AMlineInsert
= validateInsert
?