Function module to get WM storage bin,storage type based on Matnr

Logic to pick the storage bn (LQUA-LGPLA)based on MATNR and CHARG(batch).
The TO qaunt table LQUA is populated when a TO is created.So we need the same logic to get to be implemented .
Please provide the Function module or logic for the same

Hello Vikram,
What you want to do? When you need to use this functional module.
The following are the user exit available for WM.
o   MWMTO001 Update own data after TO creation
o   MWMTO002 Update own data after TO confirmation
o   MWMTO003 Own stock removal strategy
o   MWMTO007 Palletization and storage type search for stock placements
o   MWMTO004 Own stock removal strategy
o   MWMTO008 Storage type search for stock removals
o   MWMTO005 TO-related underdelivery
o   MWMTO006 Bin-related overdelivery and underdelivery
o   MWMTO009 Prevents deletion of TO items
o   MWMTO010 Determines total planned TO processing time
o   MWMTO011 Correction of processing time for TO item
o   MWMTO012 Transfer order split
o   MWMTO013 Enhancements of stock removal strategy "Stringent FIFO"
o   MWMPP001 WM/PP interface: Automatic TR creation
o   MWMRP001 Replenishment control: Selection of delivery items
o   MWMRP002 Replenishment control: TR quantity allocation
o   MWM2S001 Redetermining 2-step picking
o   MWMD0001 TO printing using print program RLVSDR40
o   MWMD0002 TO printing (multiple processing) through print program RLKOMM40
Hope this helps.
Please explain more about your business process to have accurate response.
Regards
Arif Mansuri

Similar Messages

  • Getting list of Sales condition types based on matnr , vkorg,vtweg

    Hi ,
               I would like to know if there are any FM that retrieve condition values similar to transaction:VK13 based on access sequence.What I mean by access sequence is if there are no records maintained for the first key combination then it should search for the next key combination until a condition value exist.
    I have all the mandatory information like VKORG,VTWEG,MATNR,VKGRP..etc similar to VK13
    for all the key combinations of VK13.
    i tried using FM's
       WV_KOMK_FILL_V
       WV_KOMP_FILL_V
       CONDITION_RECORD_READ
       SALES_PRICE_COND_TYPE_GET
       PRICING_GET_CONDITIONS
       PRICING_LOAD_CONDITION_TYPS
      SD_COND_TYPES_OF_PRICING_PROC
      WB2_SD_MAUNAL_PRICING_COND_GET
    CONDITION_TYPS_FOR_PRICING
    SALES_PRICE_CALCULATE_01
    SD_COND_AUTH_CHECK
    SD_GET_ALL_CONDTYPE_FROM_KOTAB
      But i couldn't get the solution . Plz guide me in using these FM's  in which order.
      My input will be MATNR(Article Number),Sales Organisation(VKORG),Division(VTWEG),Customer(kunnr) .
    I want to list all the condition types . 
    Thanks in advance .
    Regards,
    S.Sivakumar
    Edited by: sivakumar subramaniam on Oct 31, 2009 4:29 PM

    You can try the function : SD_CONDITION_TIME_INTERVAL_GET
    This func reture condition records and types:
          KOMG-VKORG = P_VKORG.
          KOMG-VTWEG = P_VTWEG.
          KOMG-MATNR = P_MATNR.
          KOMG-VKGRP = P_VKGRP.
          CALL FUNCTION 'SD_CONDITION_TIME_INTERVAL_GET'
            EXPORTING
              KOMG_I      = KOMG
              DATVO_I     = S_DATAB-LOW
              DATBI_I     = S_DATAB-HIGH
            TABLES
              PERIODS_TAB = GT_PREDATE
              KSCHL_TAB   = GT_TKSCH
            EXCEPTIONS
              OTHERS      = 1.
          READ TABLE GT_PREDATE INDEX 1.
          CHECK SY-SUBRC = 0.
          LOOP AT GT_PREDATE.
            SELECT SINGLE H~ERNAM H~ERDAT P~KBETR
                INTO (GT_ITAB-ERNAM, GT_ITAB-ERDAT,GT_ITAB-KBETR)
                FROM KONH AS H
                JOIN KONP AS P
                  ON P~KNUMH = H~KNUMH
               WHERE H~KNUMH = GT_PREDATE-KNUMH.
            APPEND GT_ITAB.
          ENDLOOP.
    Edited by: Song Huang on Jan 20, 2010 11:46 AM

  • BAPI or Function Module to get MSEG table data based on PO Number (EBELN)

    Hi
    1. Is there any BAPI /  Function Module to get PO details based on Plant and PO date?
    2. Is there any BAPI / Function Module to get Material document details(MSEG data) based on PO number?
    Thanks
    Narendra

    Hi,
    check the Bapis Givem below
    BAPI_PO_GETITEMS
    http://abap.wikiprog.com/wiki/BAPI_PO_GETDETAIL1
    you will get the detail.
    Regards

  • Function module for getting Vendor Address details

    Hi,
    Im new to this group,and new to ABAP
    plz hep me out by solving ABAP Query...
    i want to generate a report for getting Vendor Details
    like Vendor address,Ph num and Email
    input fields are Company code,country key and Account Group.
    im Using Smart Forms for this..
    but im not getting the Exact Function module to get All Required Details..
    regards
    Smitha

    thanks for ur quick reply...
    SELECT SINGLE LIFNR
      FROM LFB1
      INTO V_LIFNR
      WHERE BUKRS EQ V_BUKRS.
      CALL FUNCTION 'VENDOR_READ'
        EXPORTING
          i_bukrs         = V_BUKRS
          i_lifnr         = V_LIFNR
        EXCEPTIONS
         NOT_FOUND       = 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.
    this is the code i have written...
    but my problem is there no table in the Function module....
    for Example...
    CALL FUNCTION 'QPAX_PLMKB_READ_FROM_PLKO'
        EXPORTING
          i_plnty            = 'Q'
          i_plnnr            = V_PLNNR
          I_PLNAL            = V_PLNAL
          i_sttag            = V_DATUV
       TABLES
        T_PLMKB_TAB        = IT_TAB
    i want the function modules with tables and proper input...

  • Function module for getting the open qty

    HI experts,
                      I have a PO quantity(EKPO_MENGE).against same PO and item item(EBELN and EBELP) if Goods receipt has happened (MSEG_ERFMG) then i need to calculate the open qty.and also by netting the open quantity if multiple GRs has done against the same PO and item.
    Can you suggest any function module to get this open PO quantity.

    Hello,
    Hope this link can help you.
    [Po Open Quantity;
    Thanks
    Jayant

  • ABAP - Function module to get the number of working days between 2 days

    Hi gentlemen,
    I have been asked to produce a report that gives the number of working days between 2 days, based on a calendar.
    I didn't find anything...
    Has any of you already written a function module to get this ?
    A great thanks in advance.
    Jacques Lagrif

    Hi ,
    you can try this ,
    when you require the number of working days between D1 and D2
    Total No of Days will be
    D2 - D1
    No of holidays between D1 and D2 , use the FM HOLIDAY_GET
    Pass the From date , to date , and the factory calendar to get the of Holidays
    Total no of days - Number of Holidays will your Working days
    Regards,
    Sathya

  • Function Module to get the Screen

    Hello All,
    Can anybody provide me a Function Module to get the Screen by giving Program Name and Screen Number.
    Thanks,

    Hello
      check FM  RS_IMPORT_DYNPRO
       CALL FUNCTION 'RS_IMPORT_DYNPRO'
          EXPORTING
            dylang = pmlang
            dyname = programname
            dynumb = screen
          IMPORTING
            header = header
          TABLES
            ftab   = ifields
            pltab  = iflowlogic.
    or you have to create join b/w table reposrc and tadir .
    Thanks
    Anirudh

  • Function module to get the details (WTGBTR) from table COEP

    Hi all,
    I have to select the data from COEP table based on OBJNR, KSTAR and KOKRS.I want  WTGBTR from COEP Table.
    Right now Iam using select query.But i want to use function module.
    Can any one please tell me is there any function module to get  WTGBTR from COEP table.
    Thanks.

    This'll work:
    SELECT objnr bukrs wtgbtr
      INTO CORRESPONDING FIELDS OF TABLE gt_coep
      FROM coep
      WHERE lednr = '00'                               "<========
        and kokrs = '1000'
        AND kstar IN ('0000810001' , '0000830001')
        AND objnr IN s_objnr
        AND bukrs IN s_bukrs.
    Rob

  • Function  module to get pernt by passinf objid and otype

    Hi,
    Help me to find any function module to get pernr by using objid and otype.or table name from which we can get pernr by passing objid and otype.
    thanks,
    satish.

    You are talking about on the OM side and obtain the perner via object P?
    You can through a few method. One is using evaluation path. There is a function module called HR_STRUC_GET which allow you to pass evaluation path to get the result.
    Using that, you could create a simple evaluation path from position (object s) to person (object p). The object ID of object P is your pernr.
    Unless you have central person functionality, that might no longer be the case.

  • Function module to get table description

    Is there any function module to get table description on passing table name

    Hi,
    We need to use : 'G_RW_TABLE_DESCRIPTION_GET' function module.
    we pass the table name and the language.
    call function 'G_RW_TABLE_DESCRIPTION_GET'
        exporting
          rw_table = p_table
          langu    = sy-langu
        importing
          tab_text = l_tabtext
        exceptions
          others   = 1.
    thanx.

  • Table or Function module to get Internal order planning and Cost element pl

    Dear All,
    Table or Function module to get Internal order planning and Cost element planning.
    Internal order planning from T-code KO13.
    Thanks in advance.
    Regards,
    Ravi
    Edited by: Ravi Chandra on Sep 13, 2011 8:08 AM

    BPEJ, BPEG, BPEP

  • Function Module to get pernr number based on first name and last name

    Hi All,
    What is the Function Module to get pernr number based on first name and last name.
    Could you please help me.
    T@R.
    Vidya

    hi Vidya,
    you can get perner from PA0002 based on firs name and last name.
    use select query and get perner.

  • Function module to get customer balances

    Hello , is there a FM to get customer balances?

    hi Sooness,
      i am not sure but you can check with the BAPI:
    BAPI_AR_ACC_ GETKEYDATEBALANC E
    function module to get AR (customer balance).
      and also have a look in the link below:
    http://www.sapbapi.com/bapi-list/
    http://www.erpgenie.com/abap/functions.htm
    With luck,
    Pritam.

  • Function module to get BOM which WOULD be created if I open a production

    Is there a function module to get the BOM which WOULD be created if I open a production order?
    note that I don't have the produciton order created.
    I already tried with the FM CS_BOM_EXPL_MAT_V2 and CSAP_MAT_BOM_READ.
    I debuged the CO01, but I did not find it.
    This BOM should include materials which are under a phantom component.
    Edited by: Rodrigo Pelos on Jul 20, 2011 6:55 PM

    Hi Greetson Shunmugasundaram,
    thanks for the reply, but for the FMs CO_SD_RESB_FROM_BOM_CREATE and CO_SD_NEW_BOM_ASSIGNEMENT it's necessay to have an production order but I don't have it. And with CS_ALT_SELECT_COUPLED_PRODUCT I could not get a BOM.
    Let me explain in more details how I'm going to use this information, I think I was not clear in my post.
    I'm creating a report to compare the BOM of a production order with BOM which would be created today if I open a production order.
    Then I can check if there was changes in the reservation (RESB) of the production order. If this changes happened, how many pieces. I'll check also if there was differences in consumption, because during the production order confirmation it is possible to make changes.
    I would not like to make the BOM explosion "manually" because there are too many variables in the BOM like phantom, alternative, scrap and so on, but I don't know if the function module that I'd like to use exists.

  • Function Module for getting address from address number

    Hi all,
    Is there any function module for getting address from address number. kindly reply.
    regards,
    siya

    HI,
    just try this function module:
    CALL FUNCTION 'HR_GET_ADDRESS'
        EXPORTING
          ankey          = ankey
          anart          = anart
          molga          = '01'
        IMPORTING
          address_detail = adr_data
        EXCEPTIONS
          not_found      = 1
          OTHERS         = 2.
    HOPE IT WILL HELP YOU
    regards
    rahul

Maybe you are looking for

  • Apache Server nec. to see & edit PHP files in DW CS3

    I am trying to edit open source phpBB2 in DW CS3 . Does the Apache local host server need to be installed for the design view to be funtional in DW?

  • Ipod touch in France

    Hello everyone, I am considering buying an ipod touch to use on a trip to France. One feature that is of particular interest is the maps function. Will I be able to use it in Paris and elsewhere in France or is it hopeless to find an open Wifi there

  • Clock badge since ios8

    I have a badge with 7:30 on my clock icon. How to disable it ?

  • WSAD 5.1 DB2 Datasource creation help

    I'm new to WSAD 5.1. I'm using DB2 database. I would like to know how to create datasource and use it in my jsp application. Please help me out. Is there any resource is available through which I can go through. Thanks in advance. Regards, Sudheer

  • How do I add a selection screen parameter to get a application server file

    Hi All.. Can you please suggest how can we add a selection screen parameter to get a application server file ? Thanx in Advance... Regards, Deepak