Is there a way to change an item from stock to non stock?
Thanks!
Is there a way to change an item from stock to non stock?
Thanks!
But we can do it with the below SQL Script. Also, I would recommend you to provide the script to Acumatica if you wanted to run in the SaaS enviornment.
Update InventoryItem set StkItem = 0 Where InventoryCD='AACOMPUT01'
Please refer to the below article. This option is available from 2022 R2
https://help-2022r2.acumatica.com/Help?ScreenId=ShowWiki&pageid=d03031ef-6fe6-47d4-9315-b79501cd10d5
Hi,
Thank you for your enquiry.
This feature was delivered in the 22R2 release. To find out more about it, please navigate to the link below for the Release Notes. The UI changes related to this new functionality do not appear if at least one of the following features is enabled on the Enable/Disable Features (CS100000) form: Manufacturing, Projects, Time Management, Service Management, and Payroll.
Dana
Hi
Note - there are settings that prevent it from being used. Not just limitations on the item, but features enabled.
Double checking in the Graph Extension to enable this feature:
public static bool IsActive()
=> PXAccess.FeatureInstalled<FeaturesSet.inventory>() &&
!PXAccess.FeatureInstalled<FeaturesSet.manufacturing>() &&
!PXAccess.FeatureInstalled<FeaturesSet.projectAccounting>() &&
!PXAccess.FeatureInstalled<FeaturesSet.timeReportingModule>() &&
!PXAccess.FeatureInstalled<FeaturesSet.serviceManagementModule>() &&
!PXAccess.FeatureInstalled<FeaturesSet.payrollModule>();
We have the Service Management module enabled, so we cannot use this feature. I am sure this will be updated as they test this feature and figure out the kinks in changing items.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.