cancel
Showing results for 
Search instead for 
Did you mean: 

Storage type SU managed confusion

0 Kudos

I have some confusion related to SU managed storage type

1. I have a plant 0001 and SLOC 1000 which is HU managed.

2. SLOC 1000 is also WM managed.

3. Warehouse 'ODS' is assigned to SLOC 1000. ODS has two storage types: 001 and 002.

4. 001 storage type is SU managed. And 002 is not.

5. I want to putaway my material in storage type 002.

6. In inbound, I have packed my material in HU since SLOC is HU managed, therefore packing was mandatory. But when I am trying to putaway my material in storage type 002, I am getting error

My question is Storage unit activation is done at storage type level. I can post my material in 001. But why am I not able to post it in 002?

Does that mean that for a warehouse which is SU active, all storage types have to be SU active?

Accepted Solutions (0)

Answers (2)

Answers (2)

DominikTylczyn
Active Contributor
0 Kudos

Hello truptirathi123

truptirathi123The point is that the storage location is HU-managed. Therefore SU-management is mandatory for all storage types with putaway strategies. It doesn't mean that all the storage types need to be SU-managed, only those with putaway strategies, e.g. intermediate storage types (number in standard with 9*) don't need to be SU-managed.

The check is implemented among others in the NACHTYP_PRUEFEN form routine, include LL03AF1O:

*.......HU's mit Strategie erfordert Lagereinheitenverwaltung...........

  IF NOT LTAP-FHUTA IS INITIAL AND
     NOT T331-STEIN IS INITIAL AND
         T331-LENVW IS INITIAL.
    P_SUBRC = R_HU_OHNE_LENVW.
    EXIT.
  ENDIF.

and then if RETURNSCODE = R_HU_OHNE_LENVW, you get the L3802 error message:

    CASE RETURNCODE.
      WHEN R_LETYP_NICHT_DA.
        PERFORM PROT_MESSAGE USING '043' BL BL BL BL.
        MESSAGE E043.
      WHEN R_LETYP_VERBOTEN.
        PERFORM PROT_MESSAGE USING '012' LTAP-NLTYP BL BL BL.
        MESSAGE E012 WITH LTAP-NLTYP.
      WHEN R_WGK_VERBOTEN.
        PERFORM PROT_MESSAGE USING '072' I_MGEF-WGFKL LTAP-NLTYP BL BL.
        MESSAGE E072 WITH I_MGEF-WGFKL LTAP-NLTYP.
      WHEN R_LGK_VERBOTEN.
        PERFORM PROT_MESSAGE USING '073' I_MGEF-LAGKL LTAP-NLTYP BL BL.
        MESSAGE E073 WITH I_MGEF-LAGKL LTAP-NLTYP.
      WHEN R_LGK_ZZ_VERBOTEN.
        PERFORM PROT_MESSAGE USING '074' I_MGEF-LAGKL LTAP-NLTYP BL BL.
        MESSAGE E074 WITH I_MGEF-LAGKL LTAP-NLTYP.
      WHEN R_SPERRE_EINLAG.
        PERFORM PROT_MESSAGE USING '188' LTAP-NLTYP BL BL BL.
        MESSAGE E188 WITH LTAP-NLTYP.
    WHEN R_HU_OHNE_LENVW.
      PERFORM PROT_MESSAGE USING '802' LTAP-NLTYP BL BL BL.
      MESSAGE E802 WITH LTAP-NLTYP.
* Begin correction 08.11.2012 1784696 **********************************
      WHEN R_HSM_CHECK.
        PERFORM PROT_MESSAGE USING '670' BL BL BL BL.
        MESSAGE E670.
* End correction 08.11.2012 1784696 ************************************
    ENDCASE.
Best regards

Dominik Tylczynski

DominikTylczyn
Active Contributor
0 Kudos

Hello truptirathi123

The message says it all - you need to activate storage unit management in the 002 storage type configuration:

Best regards

Dominik Tylczynski

0 Kudos

Hi Dominik.. Thank you for commenting. I understand that if I putaway my material in SU active storage type, I will get no error. My question is: why am I not able to putaway my material in 002.