SC 0011008450M7 503 No storage location data for 544_0612_13 in  gm01 gm01

Hi All ,
              After the creating a Reservation shopping cart for the inventory material , there is no follow on document (Reservation)is   created for the shopping cart. when we view the SC it is showing   the message :Contains errors. when i gone and checked in the RZ20 it is giving the error as below
        Shopping cart 0011008450 (Res. 0041001082): M7 503 No storage location data for 522_0602_10 in  gm01 gm01.
We  maintained the all the view for  this material in material master (MM03).
Please hlep.
Regards
Channappa Sajjanar

Hi,
1)Please check for user's extended attribute is assigned with correct storage location.
2) while creation of the SC, under basic data tab, correct storage location must be populated.
Regards
Bhupendra

Similar Messages

  • Storage location Data is not saving in table MARD using BAPI method.

    Hi Experts,
    TABLES: T001L, "Storage Locations
            MARA,  "General Material Data
            MAKT,  "Material Descriptions
            MBEW,  "Material Valuation
            MARC,  "Plant Data for Material
            MARD.  "Storage Location Data for Mate
    DATA: BAPI_HEAD   LIKE BAPIMATHEAD,  "MATERIAL
          BAPI_MAKT   LIKE BAPI_MAKT,    "Material Description
          BAPI_MARA1  LIKE BAPI_MARA,    "Client Data
          BAPI_MARAX  LIKE BAPI_MARAX,
          BAPI_MARC1  LIKE BAPI_MARC,    "Plant View
          BAPI_MARCX  LIKE BAPI_MARCX,
          BAPI_MBEW1  LIKE BAPI_MBEW,    "Accounting View
          BAPI_MBEWX  LIKE BAPI_MBEWX,
          BAPI_MARD1  LIKE BAPI_MARD,    "Storage location
          BAPI_MARDX  LIKE BAPI_MARDX,
          BAPI_RETURN LIKE BAPIRET2.
    DATA: BEGIN OF INT_MAKT OCCURS 100.
            INCLUDE STRUCTURE BAPI_MAKT.
    DATA: END OF INT_MAKT.
    DATA: BEGIN OF INT_MAT OCCURS 100,
             WERKS(4),     "Plant
             LGORT(4),     "Storage location
             MTART(4),     "Material type
             MATNR(18),    "Material number
             MAKTX(40),     "Material description
             MATKL(9) ,    "Material group
             MBRSH(1),     "Industry sector
             MEINS(3),     "Base unit of measure
             GEWEI(3),     "Weight Unit
             SPART(2),     "Division
             EKGRP(3),     "Purchasing group
             VPRSV(1),     "Price control indicator
             STPRS(12),    "Standard price
             PEINH(3),     "Price unit
             SPRAS(2),     "Language key
             BKLAS(4),     "VALUATION CLASS
             VERPR TYPE VERPR_BAPI,    "MOVING PRICE
             BWTTY(1),     "Valuation Catogory
             MLAST(1),     "Price determination
             MLMAA(1),     "Material Ledger
             EKLAS(4),     "Valuation Class for sales order stock
             QKLAS(4),     "Valuation Class for Project Stock
             ZKPRS TYPE DZKPRS, "Future price
             ZKDAT TYPE DZKDAT, "Valid From Date
             BWPRS TYPE BWPRS,  "Tax price 1
             BWPS1 TYPE BWPS1,  "Tax price 2
             VJBWS TYPE VJBWS,  "Tax price 3
             ABWKZ TYPE ABWKZ,  "Devaluatin indicator
             BWPRH TYPE BWPRH,  "Commercial price 1
             BWPH1 TYPE BWPH1,  "Commercial price 2
             VJBWH TYPE VJBWH,  "Commercial Price 3
             XLIFO(1),          "LIFO/FIFO revelant
             MYPOL(4),          "Pool no for LIFO
             MMSTA(2),          "Plant specific material status
             AUSME TYPE AUSME,  "Unit of issue
             QMATA(6),          "Material Authorization group
             RBNRM(9),          "Catalog Profile
             WEBAZ TYPE WEBAZ,  "Goods reciept processing time in days
             PRFRQ TYPE PRFRQ,  "Recurring Insepction
             SSQSS(8),          "QM Control key
             QZGTP(4),          "Certificate Type
             QSSYS(4),          "Required QM system for vendor
           END OF INT_MAT.
    DATA: V_MATNR TYPE MARA-MATNR.
    SELECT-OPTIONS:
                PLANT    FOR  MARC-WERKS OBLIGATORY MEMORY ID PLT,
                S_LGORT  FOR  MARD-LGORT MEMORY ID STL,
                MATERIAL FOR  MARA-MATNR MEMORY ID MAT,
                MATLTYPE FOR  MARA-MTART MEMORY ID MTY,
                DIVISION FOR  MARA-SPART MEMORY ID DIV.
    PARAMETERS:  F_FILE LIKE RLGRAP-FILENAME
                 DEFAULT 'C:\DATA\ZMATERIAL.XLS' MEMORY ID F_FILE,
    GETDATA AS CHECKBOX, "Tick to download materials data to local harddisk
             UPDDATA AS CHECKBOX. "Tick to update date to Materials Master
    IF GETDATA = 'X'.
       PERFORM DOWNLOAD_DATA.
       PERFORM DOWNLOAD_FILE.
    ENDIF.
    IF UPDDATA = 'X'.
       PERFORM UPLOAD_FILE.
       PERFORM UPDATE_MM.
    ENDIF.
    FORM DOWNLOAD_DATA.
    SELECT * FROM MARC  WHERE LVORM EQ ' '
                          AND WERKS IN PLANT
                          AND MATNR IN MATERIAL.
        CLEAR MARA.
        SELECT SINGLE * FROM MARA WHERE MATNR =  MARC-MATNR.
        CHECK MATLTYPE.
        CHECK DIVISION.
        CLEAR MBEW.
        SELECT SINGLE * FROM MBEW WHERE MATNR =  MARC-MATNR
                                    AND BWKEY =  MARC-WERKS.
        CLEAR MAKT.
        SELECT SINGLE * FROM MAKT WHERE SPRAS =  'EN'
                                    AND MATNR =  MARC-MATNR.
        CLEAR MARD.
        SELECT SINGLE * FROM MARD WHERE WERKS IN PLANT
                                  AND   LGORT IN S_LGORT.
        WRITE:/ MARC-WERKS,    "Plant
                MARD-LGORT,    "Storage location
                MARA-MTART,    "Material type
                MARA-MATNR,    "Material number
                MARA-MATKL,    "Material group
                MARA-MBRSH,    "Industry sector
                MARA-MEINS,    "Base unit of measure
                MARA-GEWEI,    "Weight Unit
                MARA-SPART,    "Division
                MARC-EKGRP,    "Purchasing group
                MBEW-VPRSV,    "Price control indicator
                MBEW-STPRS,    "Standard price
                MBEW-PEINH,    "Price unit
                MBEW-BKLAS,    "VALUE CLASS
                MAKT-SPRAS,    "Language key
                MBEW-BKLAS,    "Valuation Class
                MBEW-VERPR,    "Moving price
                MAKT-MAKTX,    "Material description
                MBEW-BWTTY,    "Valutaion Catogorey
                MBEW-MLAST,    "Price Determination
                MBEW-MLMAA,    "Material Ledger
                MBEW-EKLAS,    "Valuation class for Sales order stock
                MBEW-QKLAS,    "Valutaion Class for Project Stock
                MBEW-ZKPRS,    "Future Price
                MBEW-ZKDAT,    "Valid From Date
                MBEW-BWPRS,    "Tax price 1
                MBEW-BWPS1,    "Tax price 2
                MBEW-VJBWS,    "Tax price 3
                MBEW-ABWKZ,    "Devaluatin indicator
                MBEW-BWPRH,    "Commercial price 1
                MBEW-BWPH1,    "Commercial price 2
                MBEW-VJBWH,    "Commercial Price 3
                MBEW-XLIFO,    "LIFO/FIFO revelant
                MBEW-MYPOL,    "Pool no for LIFO
                MARC-MMSTA,    "Plant specific material status
                MARC-AUSME,    "Unit of issue
                MARC-QMATA,    "Material Authorization group
                MARA-RBNRM,    "Catalog Profile
                MARC-WEBAZ,    "Goods reciept processing time in days
                MARC-PRFRQ,    "Recurring Insepction
                MARC-SSQSS,    "QM Control key
                MARC-QZGTP,    "Certificate Type
                MARC-QSSYS.    "Required QM system for vendor
                INT_MAT-WERKS = MARC-WERKS.    "Plant
                INT_MAT-LGORT = MARD-LGORT.    "Storage Location
                INT_MAT-MTART = MARA-MTART.    "Material type
                INT_MAT-MATNR = MARA-MATNR.    "Material number
                INT_MAT-MAKTX = MAKT-MAKTX.    "Material description
                INT_MAT-MATKL = MARA-MATKL.    "Material group
                INT_MAT-MBRSH = MARA-MBRSH.    "Industry sector
                INT_MAT-MEINS = MARA-MEINS.    "Base unit of measure
                INT_MAT-GEWEI = MARA-GEWEI.    "Weight Unit
                INT_MAT-SPART = MARA-SPART.    "Division
                INT_MAT-EKGRP = MARC-EKGRP.    "Purchasing group
                INT_MAT-VPRSV = MBEW-VPRSV.    "Price control indicator
                INT_MAT-STPRS = MBEW-STPRS.    "Standard price
                INT_MAT-PEINH = MBEW-PEINH.    "Price unit
                INT_MAT-SPRAS = MAKT-SPRAS.    "Language key
                INT_MAT-BKLAS = MBEW-BKLAS.    "VALVATION CLASS
                INT_MAT-VERPR = MBEW-VERPR.    "MOVING price
                INT_MAT-BWTTY = MBEW-BWTTY.    "Valutaion Catogorey
                INT_MAT-MLAST = MBEW-MLAST.    "Price Determination
                INT_MAT-MLMAA = MBEW-MLMAA.    "Material Ledger
                INT_MAT-EKLAS = MBEW-EKLAS.    "Valuation class forS.O Stock
                INT_MAT-QKLAS = MBEW-QKLAS.    "Valutaion Class for Project
                INT_MAT-ZKPRS = MBEW-ZKPRS.    "Future Price
                INT_MAT-ZKDAT = MBEW-ZKDAT.    "Valid From Date
                INT_MAT-BWPRS = MBEW-BWPRS.    "Tax price 1
                INT_MAT-BWPS1 = MBEW-BWPS1.    "Tax price 2
                INT_MAT-VJBWS = MBEW-VJBWS.    "Tax price 3
                INT_MAT-ABWKZ = MBEW-ABWKZ.    "Devaluatin indicator
                INT_MAT-BWPRH = MBEW-BWPRH.    "Commercial price 1
                INT_MAT-BWPH1 = MBEW-BWPH1.    "Commercial price 2
                INT_MAT-VJBWH = MBEW-VJBWH.    "Commercial Price 3
                INT_MAT-XLIFO = MBEW-XLIFO.    "LIFO/FIFO revelant
                INT_MAT-MYPOL = MBEW-MYPOL.    "Pool no for LIFO
                INT_MAT-MMSTA = MARC-MMSTA.    "Plant specific material
                INT_MAT-AUSME = MARC-AUSME.    "Unit of issue
                INT_MAT-QMATA = MARC-QMATA.    "Material Authorization group
                INT_MAT-RBNRM = MARA-RBNRM.    "Catalog Profile
                INT_MAT-WEBAZ = MARC-WEBAZ.    "Goods reciept processing
                INT_MAT-PRFRQ = MARC-PRFRQ.    "Recurring Insepction
                INT_MAT-SSQSS = MARC-SSQSS.    "QM Control key
                INT_MAT-QZGTP = MARC-QZGTP.    "Certificate Type
                INT_MAT-QSSYS = MARC-QSSYS.    "Required QM system for
                APPEND INT_MAT.
                CLEAR  INT_MAT.
    ENDSELECT.
    ENDFORM.
    FORM DOWNLOAD_FILE.
    call function 'WS_DOWNLOAD'
      EXPORTING
        FILENAME                      = F_FILE
        FILETYPE                      = 'DAT'
      FILETYPE                      = 'WK1'
      tables
        data_tab                      = INT_MAT
      EXCEPTIONS
        FILE_OPEN_ERROR               = 1
        FILE_WRITE_ERROR              = 2
        INVALID_FILESIZE              = 3
        INVALID_TYPE                  = 4
        NO_BATCH                      = 5
        UNKNOWN_ERROR                 = 6
        INVALID_TABLE_WIDTH           = 7
        GUI_REFUSE_FILETRANSFER       = 8
        CUSTOMER_ERROR                = 9
        OTHERS                        = 10.
    IF SY-SUBRC = 0.
       FORMAT COLOR COL_GROUP.
       WRITE:/ 'Data Download Successfully to your local harddisk'.
       SKIP.
    ENDIF.
    ENDFORM.
    FORM UPLOAD_FILE.
    call function 'WS_UPLOAD'
      EXPORTING
        FILENAME                      = F_FILE
        FILETYPE                      = 'DAT'
      FILETYPE                      = 'WK1'
      tables
        data_tab                      = INT_MAT
      EXCEPTIONS
        FILE_OPEN_ERROR               = 1
        FILE_WRITE_ERROR              = 2
        INVALID_FILESIZE              = 3
        INVALID_TYPE                  = 4
        NO_BATCH                      = 5
        UNKNOWN_ERROR                 = 6
        INVALID_TABLE_WIDTH           = 7
        GUI_REFUSE_FILETRANSFER       = 8
        CUSTOMER_ERROR                = 9
        OTHERS                        = 10.
    IF SY-SUBRC = 0.
       FORMAT COLOR COL_GROUP.
       WRITE:/ 'Data Upload Successfully from your local harddisk'.
       SKIP.
    ENDIF.
    ENDFORM.
    FORM UPDATE_MM.
    LOOP AT INT_MAT.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
      EXPORTING
        INPUT              = INT_MAT-MATNR
    IMPORTING
       OUTPUT             = INT_MAT-MATNR
    EXCEPTIONS
      LENGTH_ERROR       = 1
      OTHERS             = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Header
        BAPI_HEAD-MATERIAL        = INT_MAT-MATNR.
        BAPI_HEAD-IND_SECTOR      = INT_MAT-MBRSH.
        BAPI_HEAD-MATL_TYPE       = INT_MAT-MTART.
        BAPI_HEAD-BASIC_VIEW      = 'X'.
        BAPI_HEAD-PURCHASE_VIEW   = 'X'.
        BAPI_HEAD-ACCOUNT_VIEW    = 'X'.
    Material Description
        REFRESH INT_MAKT.
        INT_MAKT-LANGU           = INT_MAT-SPRAS.
        INT_MAKT-MATL_DESC       = INT_MAT-MAKTX.
        APPEND INT_MAKT.
    Client Data - Basic
        BAPI_MARA1-MATL_GROUP     = INT_MAT-MATKL.
        BAPI_MARA1-BASE_UOM       = INT_MAT-MEINS.
        BAPI_MARA1-UNIT_OF_WT     = INT_MAT-GEWEI.
        BAPI_MARA1-DIVISION       = INT_MAT-SPART.
        BAPI_MARAX-MATL_GROUP = 'X'.
        BAPI_MARAX-BASE_UOM   = 'X'.
        BAPI_MARAX-UNIT_OF_WT = 'X'.
        BAPI_MARAX-DIVISION   = 'X'.
    Plant - Purchasing
        BAPI_MARC1-PLANT      = INT_MAT-WERKS.
        BAPI_MARC1-PUR_GROUP  = INT_MAT-EKGRP.
        BAPI_MARC1-PUR_STATUS = INT_MAT-MMSTA.
        BAPI_MARC1-ISSUE_UNIT = INT_MAT-AUSME.
        BAPI_MARC1-QM_AUTHGRP = INT_MAT-QMATA.
        BAPI_MARC1-GR_PR_TIME = INT_MAT-WEBAZ.
        BAPI_MARC1-INSP_INT   = INT_MAT-PRFRQ.
        BAPI_MARC1-CTRL_KEY   = INT_MAT-SSQSS.
        BAPI_MARC1-CERT_TYPE  = INT_MAT-QZGTP.
        BAPI_MARC1-QM_RGMTS   = INT_MAT-QSSYS.
        BAPI_MARCX-PLANT      = INT_MAT-WERKS.
        BAPI_MARCX-PUR_GROUP  = 'X'.
        BAPI_MARCX-PUR_STATUS = 'X'.
        BAPI_MARCX-ISSUE_UNIT = 'X'.
        BAPI_MARCX-QM_AUTHGRP = 'X'.
        BAPI_MARCX-GR_PR_TIME = 'X'.
        BAPI_MARCX-INSP_INT   = 'X'.
        BAPI_MARCX-CTRL_KEY   = 'X'.
        BAPI_MARCX-CERT_TYPE  = 'X'.
        BAPI_MARCX-QM_RGMTS   = 'X'.
    Accounting 1
        BAPI_MBEW1-VAL_AREA      = INT_MAT-WERKS.
        BAPI_MBEW1-PRICE_CTRL    = INT_MAT-VPRSV.
        BAPI_MBEW1-STD_PRICE     = INT_MAT-STPRS.
        BAPI_MBEW1-PRICE_UNIT    = INT_MAT-PEINH.
        BAPI_MBEW1-MOVING_PR     = INT_MAT-VERPR.
        BAPI_MBEW1-VAL_CLASS     = INT_MAT-BKLAS.
        BAPI_MBEW1-VAL_CAT       = INT_MAT-BWTTY.
        BAPI_MBEW1-ML_SETTLE     = INT_MAT-MLAST.
        BAPI_MBEW1-ML_ACTIVE     = INT_MAT-MLMAA.
        BAPI_MBEW1-VM_SO_STK     = INT_MAT-EKLAS.
        BAPI_MBEW1-VM_P_STOCK    = INT_MAT-QKLAS.
        BAPI_MBEW1-FUTURE_PR     = INT_MAT-ZKPRS.
        BAPI_MBEW1-VALID_FROM    = INT_MAT-ZKDAT.
    *ACCOUNTING 2
       BAPI_MBEW1-TAXPRICE_1    = INT_MAT-BWPRS.
       BAPI_MBEW1-TAXPRICE_2    = INT_MAT-BWPS1.
       BAPI_MBEW1-TAXPRICE_3    = INT_MAT-VJBWS.
       BAPI_MBEW1-DEVAL_IND     = INT_MAT-ABWKZ.
       BAPI_MBEW1-COMMPRICE1    = INT_MAT-BWPRH.
       BAPI_MBEW1-COMMPRICE2    = INT_MAT-BWPH1.
       BAPI_MBEW1-COMMPRICE3    = INT_MAT-VJBWH.
       BAPI_MBEW1-LIFO_FIFO     = INT_MAT-XLIFO.
       BAPI_MBEW1-POOLNUMBER    = INT_MAT-MYPOL.
        BAPI_MBEWX-VAL_AREA   = INT_MAT-WERKS.
        BAPI_MBEWX-PRICE_CTRL = 'X'.
        BAPI_MBEWX-STD_PRICE  = 'X'.
        BAPI_MBEWX-PRICE_UNIT = 'X'.
        BAPI_MBEWX-MOVING_PR =  'X'.
        BAPI_MBEWX-VAL_CLASS =  'X'.
        BAPI_MBEWX-VAL_CAT       = 'x'.
        BAPI_MBEWX-ML_SETTLE     = 'X'.
        BAPI_MBEWX-ML_ACTIVE     = 'X'.
        BAPI_MBEWX-VM_SO_STK     = 'X'.
        BAPI_MBEWX-VM_P_STOCK    = 'X'.
        BAPI_MBEWX-FUTURE_PR     = 'X'.
        BAPI_MBEWX-VALID_FROM    = 'X'.
       BAPI_MBEWX-TAXPRICE_1    = 'X'.
       BAPI_MBEWX-TAXPRICE_2    = 'X'.
       BAPI_MBEWX-TAXPRICE_3    = 'X'.
       BAPI_MBEWX-DEVAL_IND     = 'X'.
       BAPI_MBEWX-COMMPRICE1    = 'X'.
       BAPI_MBEWX-COMMPRICE2    = 'X'.
       BAPI_MBEWX-COMMPRICE3    = 'X'.
       BAPI_MBEWX-LIFO_FIFO     = 'X'.
       BAPI_MBEWX-POOLNUMBER    = 'X'.
    *Storage Locations
        BAPI_MARD1-PLANT      = INT_MAT-WERKS.
        BAPI_MARD1-STGE_LOC   = INT_MAT-LGORT.
        BAPI_MARDX-PLANT      = INT_MAT-WERKS.
        BAPI_MARDX-STGE_LOC   = INT_MAT-LGORT.
       WRITE:/ BAPI_HEAD-MATERIAL, BAPI_MARC1-PLANT ,BAPI_MARD1-STGE_LOC.
        call function 'BAPI_MATERIAL_SAVEDATA'
          exporting
            HEADDATA                   = BAPI_HEAD
            CLIENTDATA                 = BAPI_MARA1
            CLIENTDATAX                = BAPI_MARAX
            PLANTDATA                  = BAPI_MARC1
            PLANTDATAX                 = BAPI_MARCX
          FORECASTPARAMETERS         =
          FORECASTPARAMETERSX        =
          PLANNINGDATA               =
          PLANNINGDATAX              =
    <b>      STORAGELOCATIONDATA        =  BAPI_MARD1
           STORAGELOCATIONDATAX       =  BAPI_MARDX</b>
            VALUATIONDATA              = BAPI_MBEW1
            VALUATIONDATAX             = BAPI_MBEWX
          WAREHOUSENUMBERDATA        =
          WAREHOUSENUMBERDATAX       =
          SALESDATA                  = BAPI_MVKE1
          SALESDATAX                 = BAPI_MVKEX
          STORAGETYPEDATA            =
          STORAGETYPEDATAX           =
          IMPORTING
            RETURN                     = BAPI_RETURN
          TABLES
            MATERIALDESCRIPTION        = INT_MAKT
          UNITSOFMEASURE             =
          UNITSOFMEASUREX            =
          INTERNATIONALARTNOS        =
          MATERIALLONGTEXT           =
          TAXCLASSIFICATIONS         =
          RETURNMESSAGES             =
          PRTDATA                    =
          PRTDATAX                   =
          EXTENSIONIN                =
          EXTENSIONINX               =
    IF BAPI_RETURN-TYPE = 'E'.
       WRITE:/ 'Error Message ', BAPI_RETURN-MESSAGE.
    ENDIF.
    ENDLOOP.
    ENDFORM.
    <b>i am using this bapi method to copy materials from one plant to another plant using storage location so here what happenig is everyting is going correct but only the storage location data is not saving in table mard so any body faced this kind of problem please tell me.... and one more dbt
    bapi_marcx-pur_status = 'x' what is 'X' here??? is that mandatory field or required field ???
    points wil be rewarded.
    reagrds,
    sunil k airam.

    In the HEADDATA structure, STORAGE_VIEW should also be set as 'X' , in order to update storage location data
    for example
    BAPI_HEAD-STORAGE_VIEW = 'X'.
    Also, PUR_STATUS corresponds to field MARA-MSTAE whose domain has value table T141, therefore values in the field are checked against T141
    Edited by: Harris Veziris on May 12, 2008 12:37 PM

  • Automatic creation of Storage Location data with GR to Project stock (Q)

    Hello,
    during "normal" Plant stock GR (mvmt type 101) for a material, the Storage Location data gets automatically created, but this doesn't happen for Project stock (Q) material receipts.
    Is there a way to influence this either through customizing (of mvmt type?) or through an exit/enhancement/BadI?
    Thanks for the tips, br
    LK

    369468 - Storage location segment (MARD) in the case of special stock
    The special stocks sales order stock. and project stock. are not managed in a material/plant storage location segment (MARD). The existence of the MARD segment is thus irrelevant to a goods movement. Neither the checking nor the creation of the MARD segment is desirable with regard to performance and physical inventory aspects in particular. For this reason, this MARD segment is not read, checked or created automatically in the course of goods movements. We regard this as being in the best interests of our customers.

  • Create storage location automatically for movement type 261

    Hi Experts,
    Currently we're inprocess of implementing "create storage location automatically" for reservation, and I've done with the configuration for both reservation side (Define Default Values) and movement type side (GI/transfer posting - Create Storage Location Automatically).
    For movement type 201, new storage location successfully extended/created using T-Code MB21 (Create Reservation). But we found an error message while conducting the same thing for movement type 261 (which only can be created using T-Code IW31 (Create material reservation form Work Order).
    Did we missed any required configuration? Pls kindly advice on what we should do.
    Thanks a lot. Really appreciate the prompt response.
    Rgds,
    MD

    Here's the current situation,
    We configured the plant/storage view (SPRO), most of materials already extended to desired plant and storage location. Commonly, we can extend or create any materials for certain plant and/or storage location by maitain material master data (using T-Code MM01).
    Recently, we develop the additional configuration to activate "automatic create storage location" for reservation, aligning with the movement type for Goods Issue (201,221,261,301,etc).
    Let's say we have material number 123456789 and currently assigned to plant YYYY, but not extended to storage location XXXX. By performing T-Code MB21 (create reservation) with movement type 201 inputted, the respective material (123456789) is automatically created for the XXXX storage location.
    But the above condition is not effected while performing the same thing using T-Code IW31 (create material reservation via Work Order) with movement type 261 (GI for Order).
    Any idea to perform create storage location automatically while creating reservation for movement type 261? is there any possible configuration or procedure to be added?
    Thank you

  • Storage location updation for account assigned PO

    Hi All,
    Our requirement is that for an internal order assigned and subcontracting PO (Account assignment-F & item category-L) we want to create outbound deliveries for which we need to have stock in storage location after doing GR.
    But, I found that for the some of these kinds of POs while doing GR though MIGO system is updating storage location but for some POs it's not.
    Can you please suggest what should be the reason for this?

    Hi Jurgen,
    Thanks for your reply.
    You are correct. As per my knowledge also if there is account assigned PO then system will not update SL.
    But, I have one PO for internal order assigned (Acct Aggt Cat-F) but for this SL got updated.
    Can you tell me what setting should be there to facilitate this?

  • Storage location selection for variable size item

    Hi All
    There is a BOM of finished good Material "XYZ" and there is a component "A" in the BOM. This Component A is a variable size item, its a metallic bar of length 4 meters.  In BOM XYZ, only 1.5 meters is consumed.
    Now when a production order is made for XYZ and the confirmation is done with movement type 261. All the materials are backflushed along with component A . The client's requirement is to transfer the remaining length of component A (i.e. 4 - 1.5 = 2.5 meters ) to a different storage location at the time of confirmation.
    Please let me know how is it possible.
    Thanks in Advance
    Rohit

    FULL STEPS:
    1.first do mb1b 311 mvmt transfer posting  for the components from raw-stor location to prod stor location. you can do for A
    2.  do GI for the components. for A for that final product . consume 1.5 so. the remaining component will be (3 ) there in the stor. location as per sap. (check in mmbe)
    3. then do mb1b 311   transfer posting for the A component to raw-stor location. from the prod stor location.
    or rever the  transfer posting mb1b 312.

  • Storage location mandatory for inter stock transfer

    Hi,
    Document where only issuing plant has storage location and user has not entered storage location in destination tab.
    It is observed that where u201Cstorage locationu201D is missing  in u201Cdestination tabu201D, system is not able to determine batch no ( mvty 351 ). Since batch number is not fetched it gives further error in Batch level valuation and subsequent issue at some different price.
    Please analyze the above issue suggest us as to making storage location mandatory to solve batch valuation problem.
    I have tried to add storage location field LGOBE in the mvt type 351.  I am getting error field LGOBE is not allowed with mvt type 351.
    Please help me urgent.
    Thanks in Advance,

    Hi,
       With mov type 351 you issue the material from the supplying plant. This material is then get transfeered to the INTRANSIT stock.
    Once you do goods receipt against the STO this Intransit stock is moved to the Receiving Plante.
    Hence, no destination storage location will be allowed for mov type 351.
    Rajesh

  • Making storage location mandatory for one plant.

    Hi All ,
           I want to make storage location field mandatory in ME21N for only one plant .Like in our organisation structure two comp codes 1000 and 3000 are there .Under each comp code one plant like under 1000 1000plant is there and under 3000 3000 plant is there  .I want to make storage location field mandatory for only 3000 plant during creation of PO.Is it possible ?
           Plz reply .

    Hi Abhijit,
    Suggestions:
            1) As per your last comment, new document type is used for doing PO for that particular plant. Check the Field Selection Group in the respective document type. (SPRO -> Materials Management -> Purchasing --> PO --> Define Document Type)
            2) Then SPRO -> Materials Management -> Purchasing --> PO --> Define Screen Layout at document level, Select the Field selection group. Then goto to Supplying plant and make the Issuing storage location as a "Mandatory field".
    Note: But you can use this document type for this particular plant only. For the other plants, use the general document type.
              Please revert if you need any clarification.

  • Storage location extension for Blocked and Quality inspection stocks

    Hi All,
    Could any one explain how to extend a Storage location (which is actually maintained for the Returns) to make use for the Blocked and Quality inspection stocks. Does this require any config settings.
    Thanks in advance.
    Kalyan

    Hi,
    Thanks for the Reply.
    Let me be more clear,in describing my requirement. Actually the present Storage location is maintained for only Returns. But in addition to this I require to make use of this storage location for the purpose of the maintianing Blocked Stock or QI stock.
    Therfore to achieve above what are necessary steps or do i need to maintain any config settings for this.
    Thank You,
    Kalyan.

  • CO27 list doesnot show storage location stock for special stock E

    Dear All,
    In MTO scenario, in CO27 (Pick List) , if storage location has to be selected with drop-down list , system diplays the storage locations with which this item in CO27 is maintained, but with "0" stock disply... even if the item stock is available in Sales Order unrestricted stock (E).
    And it is observed that in CO27 system displays storage location along with stock only in case of item without special stock; (stock available in the unrestricted location only...)
    So, even if the special stock (E) is available in the storage location, why the system is showing "0" against the storage location drop-down in CO27..??
    please clarify at the earliest...
    With Regards,
    Laxminarayana

    Hi Maria..
    I would like to thank you for reply.
    As I mentioned earlier, if material stock is available as a FREE stock , this will appear in CO27. But when material stock is available  and it is in sales order stock, system will show "0" stock in drop down list of CO27 line item storage location field. Is there any customization required to enable system to show the special stock in CO27 line item storage location filed drop down..??
    awaiting your valuable inputs,
    With Regards,
    Laxminarayana
    Bangalore

  • Different Storage Location required for RGA

    Hi,
    My requirement is that whenever Returns is done for SO, different Storage location should default, which is currently not happening.
    For ex - Standard Storage location(0001) is determined whenever SO is created but we want that different storage location(say 0096 which is created for Returns) should be determined whenever Returns is created.
    For these I have made the following config settings :
    Defined 1000(Shipping Point Std) which is assigned to Plant(BPX1)
    Also 1100(Shipping Point for Returns) is assigned to Plant(BPX1)
    Storage loc (0001- std) is assigned to Plant(BPX1) and warehouse no (BP1)
    Storage loc (0096 - for Returns) is assigned to Plant(BPX1) and Warehouse no (BP1)
    In OVL3 following settings done:
    Shipping Point (1000) , Plant (BPX1) than storage loc - 0001(Std)
    Shipping Point (1100) , Plant (BPX1) than storage loc - 0096(Returns)
    Still when we are creating returns storage loc 0001 is defaulting in Returns and NOT 0096 (Which is my requirement).
    Kindly advise which config settings are still missing to determine 0096 storage loc in RGA.
    Thanks in advance

    Hi,
    I have ticked the Plant and movement type in OMJ8, but still same storage location is coming while posting the Returns.
    Thanks

  • Storage Location Default for Components in IW31

    When I add a Non-stock item to the Work Order under the Components tab, I want it to default in the one and only Storage Location we have. 
    I read where I should be able to do that by going in SU3 under the parameters tab and inserting LAG along with the value I want (TH1).    I did that part successfully, and exited and logged back in.   However, now when I add a component to the work order, it still comes up and asks me to enter a Storage Location.  It's not defaulting the value I put in.
    Is there another step to make this work?

    Hi,
    When ever you use 'N' type material, the storage location defaults from material master, if maintained in 'Org data'.
    If you use 'L' type, system will not be able to decide the storage location, if multiple storage locations are maintained. If the field is mandatory, you have to select the location, otherwise order can be processed without the same.
    However, when material movement is done through 261, storage location will be asked.
    James Prabaharan

  • Ability to correct or insert location Data for photo's

    I have some photo's that either do not have location data or are wrong due to the camera not being accurate.
    I can get the location map displayed but cannot drop a pin or change existing pins to locate the photo.
    I find this is really frustrating.
    Please can something be done about this?
    Thanks.

    To those of you who want to add a location to your photos using google earth. There is a plug in that allows you to simply drag and drop the photos from iPhoto to the dock icon of Geotager plug in.
    http://craig.stanton.net.nz/code/geotagger/
    The photos are tagged with the data and you can use them with Places. It is a 2 step process that will allow you to geotag old photos or new ones you rescan. I have even used Geotagger to tag photos that I have scanned in from vacations long ago.
    It is FREE
    You need the latest version of Google earth. I also recommend the crosshairs google earth plug-in
    I plan to get a nikon gp-1 as soon as I can to eliminate this step.

  • Updating Order  Functional location data for equipment

    We have scenarios where we keep de-installing equipments from one FL to another . We have mapped standing orders in equipment . The FL in standing order of this equipment doesn't change automatically . We have to manually do this  (rightclick---update refrence object).
    Is there any way we can update order's FL  directly when we change equipment's FL in equipment.
    NPB

    USER  EXIT : IEQM0003
    FM-EXIT_SAPMIEQ0_001
    Transaction code=IE02
    Logic
                    Before equipment update (save)
    1.     Find value in standing order field. (EQUZ(put equipment number in EQUNR field)  get ILOAN  value  put  it in  ILOA field and get DAUFN (standing order) )
    a.     If standing order value  data found
    i.     Find functional location of the equipment (EQUZ (Table-input field EQUNR-fetch  ILOAN) table (input field ILOAN to table ILOA output TPLNR) (A)
    ii.     Find the functional location of the order AFHI(Table)u2014(EQUNR is  inut) u2013output ILOAN numberInput ILOAN in ILOA get TPLNR  (B)
    1.     If A=B matching with that of FL of equipment being updated
    a.     u2013No action
    b.     Save equipment changes
    2.     If not matching  A <> B
    a.     Save equipment
    b.     Update orderu2019s FL with that of equipmentu2019s FL through BDC  (input order number DAUFN)
    b.     If standing order value not found
    i.     Do not take any action
    ii.     Save equipment changes
    I can't update tables directly . I don't think any BAPI's exist to update objects in order . I can not execute a BDC from user exit . Now How to  automate this ?
    NPB
    NPB

  • Data for Storage Location of Material Doc. stored in table QAMB

    Hi,
    I am developing a report in which i have to fetch data on the basis of inspection lot and i want to have the STORAGE LOCATION data for inspection present in the QAMB table(QM: Link Between Inspection Lot and Material Document).
    I am not able acess the data which stores info. about the storage location about it.I had tried to reterive the data for it through MSEG table but it is having large amount of data in it as i will not retirive through it and i am able to acess the desierd data through QAMB.
    Is there any way to reterive the data for the storage location..

    Hi Sanku,
    I had checked the table T001L  you had mentioned but it does not have any  link with the table QAMBor material present in the material document... The storage location present in QALS is when the material is for the Mvt Type 101 but when it is move to *unrestricted(321 Mvt.Type) *it goes to some other specified location.. that storage location i am looking for ...
    I hope you will guide me out for it...
    Edited by: nav009 on Nov 17, 2009 11:39 AM
    Edited by: nav009 on Nov 17, 2009 11:41 AM

Maybe you are looking for

  • Very Early Days, 2mbps - Billion 7800n and SnR Twe...

    Hi there,  Broadband's only been activated 2 days ago, and whilst I cannot run BT's speedtest.net for some reason, I have these stats from the router, plus I am running the Billion SNR tweak lowering SnR margin by 4.5db... Upstream 448 Downstream 812

  • Iphoto issue: images not showing up

    When importing photos to my iPhoto 9.6 to my iMac OS X Yosemite 10.10.1, and even some preexisting photos, from my iPhone 4Sthe pictures do not show up.  Instead a black box appears but the image cannot be viewed.  Why is this?  Someone told me it ha

  • Bookmarks from safari not transferring over properly

    Using intel mac pro, I am having problem moving my bookmarks into FireFox 4 . Trying to migrate my windows base bookmarks saved in a file directly using the import feature in Firefox. it only allows bookmarks already in browser. (Safari on a Mac. No

  • Hi i want to how to use DTO in struts frame work.

    hi all, i want to display content on jsp pages using DTO object. in my application one jsp page for user input. foruser input i am creating one action form for this. and also one DTO class for handing action form . my main aim is elimunate the action

  • New-MailboxSearch with AQS for special characters

    I've been asked to perform a specific query for a term with a leading dollar sign ('$'): $123,123.00.  When I run the query for a leading dollar sign the keyword search term in the result appears as: Body:',123.00'  It doesn't work if I use a backsla