BAPI for displaying materian/description/Bin storage/ qty based on producti

Hii All,
please gv which bapi we use to display Bin storage, Material n qty based on production order number
its very urgent

Hi,
     You can try with user exit MWMBAP02
<b>Reward points</b>
Regards

Similar Messages

  • BAPI for displaying data of standard tables

    Dear All,
    Could anybody tell me the name for BAPI to display data in standard tables
    i.e. import :  table name  and
                       fields
         Output  : table entries ( data in those tables )
    thanks.........

    why dont u write ur own code for tht
    in the selection screen take the name of table now use a field symbol to create an internal table of type tht table now use select query to get the data

  • BAPI for Displaying all deliveries based on SalesArea

    Dear Experts,
          i want to display all the details of all deliveries based on SalesArea, but i couldn't found any BAPI for that, Plz tell me the BAPI name for my requirement
              Thanks in advance

    Hi Eswara,
    I hope you are fine.......
    Even I need bapi which can read all delivery data.
    In CRM I only have delivery number as follow up of sales order. so need to get all delivery data in CRM.
    If there is any Bapi then we can call it remotely and get all data in CRM.
    If you have any bapi please suggest.
    Thanks in advance,
    Dhanraj

  • BAPI for displaying and updating table KOTG001?

    Please suggest what BAPIs to use.
    Henning

    hi ,
    u dont have any bapis for updatign specific tables
    bapis are generally used for updating a transaction i mean number of tables
    where is the use of the tables u can search bapis in transaction bapi
    and where are the tables used i guess in fi/co so u can search under them
    regards
    afzal

  • BAPI for displaying stock

    hi,
    Is there a bapi/FM which gives us the stock of a material on a particular date.
    Satish

    Hi Satish,
    Sorry, it will give the requirement... you can try the following ...
    For Materials (MARD-MATNR) selected above, Plant (MARD-WERKS) = Input Plant and Storage Location (MARD-LGORT) NOT EQUAL TO “RT01”, determine all the un-restricted quantities (MARD-LABST) and Stock in Inspection (MARD-INSME). Sum up all the quantities. Let the sum be equal to “ST”.
    For Posting date (MKPF-BUDAT) = current date, determine all the Material documents (MKPF-MBLNR).
    For Documents (MSEG-MBLNR) determined above, Materials (MSEG-MATNR) selected above, Storage Location (MSEG- LGORT) NOT EQUAL “RT01”, Movement type (MSEG-BWART) NOT EQUAL to “321”, Debit / Credit indicator (MSEG-SHKZG) = “H” pick up all the quantities (MSEG-MENGE). Sum up all the quantities. Let the sum be equal to “H”.
    Similarly, For Documents (MSEG-MBLNR) determined above, Materials (MSEG-MATNR) selected above, Storage Location (MSEG- LGORT) NOT EQUAL “RT01” Movement type (MSEG-BWART) NOT EQUAL to “321”, Debit / Credit indicator (MSEG-SHKZG) = “S” pick up all the quantities (MSEG-MENGE). Sum up all the quantities. Let the sum be equal to “S”.
    Then On date Stock (Un-restricted + QI) = “ST” + “H” – “S”
    Thanks and Regards,
    Bharat Kumar Reddy.V

  • 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

  • Dynamic select list with displaying a description

    Hi,
    I want to have a select List, my list refer to a lov, and the lov refer to a table contaning 2 columns : code and description,
    The list must display only the code, but I want having an item beside the list dispaling the description....
    I have used a select list with the query :
    select code d, code r from prog_theme order by 1 desc
    and Now : what is the way for displaying the description
    Thanks!!
    Lila

    Ok, here goes the top down approach...
    In the HTML header of my page, i have this reference to a js file containing the javascript - <script src="#WORKSPACE_IMAGES#108.js" type="text/javascript"></script>
    Then in an HTML Region I have the following code to create the divs that will be shown and hidden - <div id="divREGION" class="divs">Select region to get list of countries.</div>
    <div id="divCOUNTRY" class="divs">Select country to get list of cities.</div>
    <div id="divCITY" class="divs">Select city and then press "Get Employees". </div>
    Note that these divs contain static content. You may be able to create dynamic content for these divs by creating dynamic query regions and putting div tags around the region (i havent tried this, it may require template modification).
    The select boxes have this code in the "HTML form elements attributes" - onFocus="javascript:showHideDiv(this,true)" onBlur="javascript:showHideDiv(this,false)"
    This onFocus and onBlur call the showHideDiv() function, passing in the object reference of the select box and a true/false to show/hide the related div.
    The actual javascript function that is contained in the 108.js file is:
    function showHideDiv(objThis, inBool){
         var divid = "div" + objThis.id.substring(3);
         if (inBool) {
         ShowDiv(divid);
         else {
    HideDiv(divid);
    That function in turn calls either the ShowDiv() or HideDiv() functions, depending on the true or false, passing in the ID of the div to be changed...
    function ShowDiv(divid){
         eval('document.all'+ '["' + divid + '"]' + '.style' +'.display = "inline"');
    function HideDiv(divid){
         eval('document.all'+ '["' + divid + '"]' + '.style' +'.display = "none"');
    Hope this helps.

  • BAPI for Getting details of outbound delivery or VL03N

    Hi,
    Can any one tell me whether there is a BAPI for display of outbound delivery.
    Can any one help me?
    thanks.

    Hi,
    Why do you need BAPI for displaying the delivery?
    Below 2 lines of code is enough.
    SET PARAMETER ID 'VL' FIELD 'delivery number'.
    CALL TRANSACTION 'VL03N' AND SKIP FIRST SCREEN.
    Thanks,
    Vinod.

  • Bapi for loading partners

    I am using MK02 for loading partners for a vendor, but i have various problems when there are some partners created, does anybody knows any function for loading them?
    thanks in advance

    Hai
    BAPI_BUSPARTNER_CHANGE         IS-H: BAPI BusPartner.Change - Change Business Partner        
    BAPI_BUSPARTNER_CREATE         IS-H: BAPI BusPartner.Create - Create Business Partner        
    BAPI_ISUPARTNER_CHANGE         BAPI for Changing Business Partner          
    BAPI_ISUPARTNER_CREATEFROMDATA BAPI for Creating a Business Partner        
    BAPI_ISUPARTNER_GETDETAIL      BAPI for Displaying a Business Partner      
    BAPI_ISUPARTNER_GETLIST        BAPI: generates list of business partners   
    Regards
    Sreenivasulu P

  • How do i create a multirecord Form for Display only.

    Hi,
    I am trying to create a multirecord form for display only.
    The form is based on one table only so when i try to create
    it using based on a Table or view i get the option of Tabular or
    custom.
    So if someone has faced or worked on a similar problem of creating
    multirecord form pls do reply.
    Thanks,
    Amit.

    Hi
    You can check this one. The previous link in turn points to this.
    Re: .NET application works OK on infrastructure, but has problems on midtie
    Thanks,
    Sharmila

  • Getlist bapi for customer based on sales org, distbtn chnl

    Hi,
        Is there any standard BAPI for customer Getlist , i want to filter based on distribution chanel and sales org and divison.
            Now am using BAPI_CUSTOMER_GETLIST  its showing all customer list i want to filter this based on distribution chanel and sales org and divison.
    Thanks ,
    Arun

    Hi Siva : )
    In VK11 we have a key combination radio button called Country/ Destination Ctr./Plant/TaxClCust/TaxClMat.
    I think it might be a custom key combination (so you might have to create a siliar one for yourself), but basically all I had to enter there was Country = GB, Destination Coutry = GB, plant SORG1 (it's called the same as the sales org and is linked 1-1), tax classification on Customer = 2 (because I want the central setting on the customer to be 2 = ICO, no tax), tax classification on material 1 = full tax goods and enter relevat tax code.
    Hope this helps.
    It worked for me.
    Kind regards,
    Tanja

  • Assign Gift Items and qty to a product in BCC

    Hi,
    I am facing an issue with repository design and BCC UI for assigning a gift items and qty to a product. Basically i dont want to maintain Gift items in scenario files for adding/deleting/updating. I am customizing cartmodifierformhandler to do that. But the requirement is i want to configure Gift SKU and qty to a product.
    So for product item descriptor. i added a table like this
    <table name="dcs_product_gift_item_cbi" id-column-name="product_id" type="multi" multi-column-name="sequence_id">
    <property name="giftList" display-name-resource="giftList" data-type="list" column-name="gift_sku_list" component-item-type="sku"/>
    <property name="quantity" display-name-resource="quantity" data-type="list" column-name="quantity" component-data-type="long"/>
    </table>
    But in BCC UI, qty property is not displaying. Can some one suggest a solution for it. Here is the BCC UI that looks in ATG 2007.
    [http://img846.imageshack.us/img846/6459/bccui.jpg]
    I initially planned to add a Map property (SKU, qty) instead of data-type list. But the problem is part of the map i.e key value should be of component-item-type="sku" and value should be of component data type long which I am facing difficulty to design the repository.

    OK, here is the definition file:
    <item-descriptor name="product">
    <table name="dcs_product_gift_item_cbi" id-column-name="product_id" type="multi" multi-column-name="sequence_id">
    <property name="giftList" display-name-resource="giftLists" data-type="list" column-name="gift_sku_list" component-item-type="giftlist" />
    </table>
    </item-descriptor>
    <item-descriptor name="giftlist">
    <table name="gift_item_cbi" id-column-name="gistlist_id" type="primary" >
    <property name="sku" item-type="sku" column-name="sku_id" />
    <property name="quantity" display-name-resource="quantity" data-type="long" column-name="quantity" />
    </table>
    </item-descriptor>
    I hope it helps.
    Peace
    Shaik

  • How to display F4 values in one field based on other field selection

    Hi All,
    How to hide a UI element (i.e Link to action) highlited for Normal User and display the same to super user.
    Component Name : /SAPSRM/WDC_DODC_SC_GAF_C
    2.Can i know how to display  the entries in supplier field based on Product category selection.
    Right now all the entries are getting displayed in the supplier field.
    I want to display only entries based on Product category.
    Search Help Name : BBP_BUPA_CLL_PARTNER
    Component Name : /SAPSRM/WDC_DODC_SC_I_LIM
    How to enhance the web dynpro component with the filtered values.
    Regards,
    Krish.

    Hi Ashvin,
                 Thanks for the document. In the search help there is a standard FM which is getting executed.
    Can i enhance that FM or should i copy and edit.
    BBP_F4IF_SHLP_EXIT_CLL_PARTNER
    If i creata a Z FM and make changes how to pass that values to my standard Component View UI Element.
    If not then suggest me some alternative.
    Regards,
    Krish

  • BAPI FOR STORAGE LOCATION

    hi all
    can anyone please help me out to find out the bapi that displays sto rage location details, that should give the output without taking any import parameter.
    Note: make sure that the bapi should not take any import(input values) parameters.
    regards
    prasanna kumar

    Hi Dude,
    Go through this Link:[Re: To change storage location for production order;

  • Update qty in delivery note through bapi for migo

    hi im using bapi for migo upload
    my requiremnt is to update QTY IN DELIVERY NOTE in migo.
    i got the folowing error if i dont pass the quantity.
    qty and/0r delivery indicator or final issue indicator missing
    if i pass the quantity field then it is changing quantity in unity of entity and qty in SKU i dnt want to change this field
    here is my code,
    gmcode-gm_code = '01'.
        ls_GOODSMVT_HEADER-pstng_date = tdate . "sy-datum.
        ls_GOODSMVT_HEADER-doc_date   = sy-datum.
        ls_GOODSMVT_HEADER-pr_uname   = sy-uname.
    loop at itab.
      ls_GOODSMVT_HEADER-REF_DOC_NO = itab-LFSNR.
      it_goodsmvt-move_type  = itab-BWART.
      it_goodsmvt-po_number  = itab-EBELN.
      it_goodsmvt-PO_ITEM  = '10'.
      it_goodsmvt-STGE_LOC  = itab-LGORT.
    it_goodsmvt-QUANTITY  = itab-LSMNG.
    it_goodsmvt-BASE_UOM = 'KG'.
    it_goodsmvt-material = 'RC1092'.
    it_goodsmvt-entry_qnt = itab-LSMNG.
    it_goodsmvt-ENTRY_UOM  = 'KG'.
      it_goodsmvt-mvt_ind = 'B'.
      it_goodsmvt-plant = 'G001'.
    it_goodsmvt-NO_MORE_GR = 'X'.
    append it_goodsmvt.
    clear it_goodsmvt.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
      EXPORTING
        goodsmvt_header               = ls_GOODSMVT_HEADER
        goodsmvt_code                 = gmcode-gm_code
      TESTRUN                       = ' '
      GOODSMVT_REF_EWM              =
    IMPORTING
      GOODSMVT_HEADRET              =
       MATERIALDOCUMENT              =  lf_MATERIALDOCUMENT
       MATDOCUMENTYEAR               = lf_MATERIALDOCYEAR
      tables
        goodsmvt_item                 = it_goodsmvt
      GOODSMVT_SERIALNUMBER         =
        return                        = return
      GOODSMVT_SERV_PART_DATA       =
      EXTENSIONIN                   =
    if return-type ca 'EA'.
          rollback work.
          message id '26' type 'I' number '000'
          with return-message.
        else.
          call function 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      WAIT          =
    IMPORTING
      RETURN        =
          wait up to 5 seconds.
        endif.
    select * fROM mseg
          INTO CORRESPONDING FIELDS OF TABLE IT_MSEG
                             where mblnr = lf_MATERIALDOCUMENT and
                                       MJAHR = lf_MATERIALDOCYEAR.
      LOOP AT IT_MSEG INTO WA_MSEG.
        IF WA_MSEG-LSMNG IS INITIAL.
          wa_mseg-lsmng = ITab-LSMNG.
          UPDATE MSEG from wa_mseg.
          commit work.
          wait up to 5 seconds.
        ENDIF.
      ENDLOOP.
    ENDLOOP.

    It is been done by implementing one implicit enhancement in FM: MAP2I_B2017_GM_ITEM_TO_IMSEG
    I have added the below functionality at the end of the function module.
    Just i have maped the ERFMG i.e ent_qnt(Received quanity) with LSMNG i.e qty.in del note
    All best for others.
    $$-Start: (1)----
    $$
    ENHANCEMENT 1  Z_EV_IMP_GOODSMOVEMENT.    "active version
    Populate the delivery note quantity and UoM
    IF IMSEG-ERFMG IS NOT INITIAL.
      MOVE IMSEG-ERFMG TO IMSEG-LSMNG.
      MOVE IMSEG-ERFME TO IMSEG-LSMEH.
    ENDIF.
    ENDENHANCEMENT.
    Thanks,
    Mahesh.Gattu
    Edited by: Maheshkumar gattu on Dec 3, 2010 4:35 PM

Maybe you are looking for

  • Problem with sun outlook connector,  Microsoft LDAP services

    Dear All I have big problem with sun outlook connector and I can find any way to fix the problem, I am using sun java system connector deployment to create installation script for my clients. in the tool I have specify the location of Microsoft LDAP

  • AdvancedDatagrid Tab Key issue

    Hello, I have an advancedDatagrid which contains many editable column (InpuText) and each column has an itemrender. I see that the normal TAB key navigation behaivor disapear, can any one told me what's the best way to keep the Tab (shift+Tab) naviga

  • Re: Status on RE:Reporting after many forte tasksrun

     

  • Incoming XML validation for SOAP adapter request

    Hi, Does anyone know of a method to validate incoming XML request against the relevant XSD definition and return a SOAP fault message to the calling application ? I guess this would involve BPM unless there is some sort of module that can be used. Pl

  • User language according to browser settings

    Hi all,I saw that is possible to display the guest page according to the browser language. This is done by leaving blank the <International><Locale> attribute in j_config.xml. If I want to use this mechanism for all the portal users, do you know what