Problem Note 41856: Copying or adding a SKU level member in a worksheet sets an incorrect record type in the LV10MAST table
Copying or adding a SKU level member in a worksheet sets an incorrect record type in the LV10MAST table with a Record_Type of 'L' (LIVE) instead of a Record_Type of ‘M’ (MODEL).
This problem only exist in SAS® Merchandise Planning 6.1.3 M5 HF1 and later.
Circumventing this problem requires modifying the code in the BEF_UPD_LV10MAST trigger. The steps for modifying the code are listed on the Full Code tab of this note.
A fix for this issue is planned for a future software release.
Operating System and Release Information
SAS System | SAS Merchandise Assortment Planning | 64-bit Enabled AIX | 6.1.3M5 | 6.4 | 9.1 TS1M3 SP4 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 6.1.3M5 | | 9.1 TS1M3 SP4 | |
SAS System | SAS Merchandise Financial Planning | 64-bit Enabled AIX | 6.1.3M5 HF1 | 6.4 | 9.1 TS1M3 SP4 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 6.1.3M5 | | 9.1 TS1M3 SP4 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Modify the following code in the BEF_UPD_LV10MAST trigger:
ELSE
:new.record_type := 'L';
For Oracle modify to:
ELSIF v_replace <> 1 THEN
:new.record_type := 'L';
For UDB DB2 modify to:
ELSEIF v_replace <> 1 THEN
SET new.record_type = 'L';
Type: | Problem Note |
Priority: | high |
Date Modified: | 2013-10-02 12:32:52 |
Date Created: | 2010-12-15 08:22:09 |