cancel
Showing results for 
Search instead for 
Did you mean: 

Re: Error during manual stock posting

Former Member
0 Kudos

Dear all,

I faced the following error in MB1C when performing initial upload of stock with mvt type 561.

Stor. Location S001 not supported (check your entry)

Message no. M7146

Diagnosis

The specified objekt (Stor. Location S001) is not supported.

Procedure

Make sure your entries are correct.

As such, I could not upload any stock to the storage location.

I do not face this error with any other storage location which was setup in the same manner.

Please advise what could be the problem?

I could not find any other threads with the similar error.

Thanks.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Check the Plant and Storage Location combination you are entering while posting the documents. Since there is mismatch between them so system is throwing the error message.

Former Member
0 Kudos

check your PLANT and Store Location combination.

Lakshmipathi
Active Contributor
0 Kudos

Have you maintained that storage location in MMSC ??

thanks

G. Lakshmipathi

JL23
Active Contributor
0 Kudos

did you enter any special stock indicator?

Former Member
0 Kudos

No.. No special stock indicator was set. Did not require it.

At Initial screen:

1. Enter mvt type 561

2. Enter Plant

3. Enter SLoc

At detailed screen:

1. Enter Material number

2. Enter quantity

3. Hit ENTER key

Results: Error as mentioned above..

Thanks.

JL23
Active Contributor
0 Kudos

do you have the storage location field in the in the detailed screen?

the initial screen always has this field, as it is just a default for the detailed screen.

but is this field available in the detailed screen? or is it greyed.

csaba_szommer
Active Contributor
0 Kudos

It's very likely the error message is triggered from program "FM07MEW0"....so you can put a breakpoint and when trying to do the posting you can do some debugging...


CALL FUNCTION 'DDIF_FIELDINFO_GET'
    EXPORTING
      tabname             = l_tab
      lfieldname          = l_field
    IMPORTING
      dfies_wa            = ls_dfies
    EXCEPTIONS
      OTHERS              = 1.
  IF SY-SUBRC IS INITIAL.
* If Special Stock Indicator is left empty, and no entry exists
* in T156B, error message should come up.
    IF w_wert IS INITIAL.
      IF w_msgty EQ w.
        MESSAGE w018 WITH ls_dfies-scrtext_m.
      ELSE.
        MESSAGE e018 WITH ls_dfies-scrtext_m.
      ENDIF.
    ENDIF.

    IF w_msgty EQ w.
      MESSAGE w146 WITH ls_dfies-scrtext_m w_wert.
    ELSE.
      MESSAGE e146 WITH ls_dfies-scrtext_m w_wert.
    ENDIF.
  ELSE.
    IF w_msgty EQ w.
      MESSAGE w001 WITH 'T156' w_wert.
    ELSE.
      MESSAGE e001 WITH 'T156' w_wert.
    ENDIF.
  ENDIF.

Former Member
0 Kudos

Hi,

1. SLoc is not greyed out in the detailed screen. Amendment is possible.

2. Yes, the SLOC has been extended for the Material and also exist in MMSC.

Have checked all the possible areas related, config and master data maintenance, all is okay, but none of this seems to work..

Could be a product error, hence will raise an OSS ticket..

Thanks.

govind_ramesh
Active Participant
0 Kudos

Hi,

Please check if the Article/Site combination in MM43 has the storage location mentioned (Storage Data Section - Logistics DC/Store view).

If not try selecting the storage location and save it there. Finally try to post the document.

Regards

Govind

Edited by: Govind Ramesh on Aug 4, 2010 12:00 PM

Former Member
0 Kudos

did you check note:305582?

or any own coding exist in the posting?

Regards

Lauren

Former Member
0 Kudos

Hi Lauren,

Thanks for your reply.

The note is not relevant for my case. I have also checked other relevant notes, but none like this.

No, there are no additional coding exist. The standard SLoc was defined using the standard SLoc in SAP, renamed with "Z"..

While other SLoc has been defined in the same manner, this particular SLoc has the error (as highlighted earlier) and the other SLoc does not encounter any errors as such.

Thanks..

csaba_szommer
Active Contributor
0 Kudos

Does the plant / storage location combination (which was typed by you in MB1C) exist in data table T001L?

Former Member
0 Kudos

Please ensure that "Qty/Value update" is active for the particular storage location and Material type combination.

Former Member
0 Kudos

Hi all,

Yes, it exist in T001L table and quantity/value update is checked.

Doesn't seems like it is helping.

All has been checked and working, but it is not allowing stocks to be uploaded to the given Plant + Storage Loc in MB1C.

However, in MIGO, with the CORRECT sequence of hitting the ENTER key and entering details, then it is allowing.

I do not understand why this is happening.