Bapi function to retrive the proposed put away bin by SAP?

Dear all,
   Is there any bapi function to retrive the proposed putaway bin by SAP like the one in LT06? ( during the creation of Transfer Order for material document ) thank you.
Regards,
Joan

Hi,
try this BAPI
BAPI_STANDING_ORDER_GET_DETAIL
BAPI_STANDING_ORDER_GET_LIST
Regards,
V.Balaji
Reward if Usefull...

Similar Messages

  • When I run a BAPI ,  then What is the out put?

    When I run a BAPI ,  then What is the out put format ?
    Is there anyone in Chennai regarding this ?

    the BAPI i am creating will fetch the sales order header data (along with partner details) and item data  and put it in the JMS que (JAVA MESSAGE SERVICE)  ....
    Can we use more than one internal table  where i will put the data
    i.e
    1.  for header data
    2. for partner (because the partners will be repeated
    3. for  item data
    and the BAPI will fetch the data from SAP tables and put it in these tables....and we can fetch the data by an integrator software and finally put it in the JMS queue.....

  • Bapi function module  for the transaction VBO2 in 4.6 version

    can u please tell me the how to proceed for the uploading rebate agreement data into transaction VBO2(change rebate agreement) USING the which bapi function module in 4.6c version.

    I am also looking for the same requirment . could you please let me know if you find any BAPI.

  • BAPI/FUNCTION  module for the configure varient data(MRP3 -MM02)

    Hi all,
    I have  a requirenent to send the configure varient data(MRP3 -MM02) to another system.Please guide me how it can be created in receving system.ie please provide a function module or BAPI for the same.
    Thanks.
    Edited by: sanu debu on May 11, 2009 11:01 AM

    I am also looking for the same requirment . could you please let me know if you find any BAPI.

  • Bapi Function module for the Credit management

    HI,
          Can anyone tell me the function moduleof the Credit Master Management.
    thanks
    Kiran

    Check out the FM
    <b>CREDITLIMIT_CHANGE</b>

  • All bapi functions for all modules

    hi frends where i cud have the list of all bap functions availbale for the all modules.PLz tell me the name of the bapi function used to get the data related to the accounting document like its no,PO no,PO item no,coressponding vendor no for the particular P item(not the vendor no in the PO header).

    Hi,
    you can spare some of your and our time if you [SEARCH|http://www.google.cn/search?hl=de&source=hp&q=%09allbapifunctionsforallmodules&btnG=Google-Suche&meta=&aq=f&oq=&cad=h] for a BAPI when you need it.
    Regards,
    Clemens

  • WM-QM interface - Put away the inspection sample

    Dearm WM-QM experts
    My question is: How can we automate the creation of a TR/TO from the sampling storage type to the final bin after entering a usage decision. The system creates a TR/TO to move the quality stock from storage type 902 to 917, but after UD the system doesn't create a TR/TO to move the stock from 917 to the final storage type/bin (say 001).
    The below are the details and configs for the issue:
    I have a materials that is flagged for inspection (say 100% sample).
    I created the QM-WM interface control "Q" with storage type = 917, bin = "QUALITY" and sample handling = 1 using the following config menu path:
    Logistics: Execution -> Warehouse Management -> Interfaces -> Define Quality Management -> Define Inspection Sample Control
    I assigned the above interface control "Q" to my warehouse with operation = E and stock category = Q using the following config menue path:
    Logistics Execution -> Warehouse Management -> Interfaces -> Define Quality Management -> Activate QM Interim Storage Type Search
    When posting the GR (mvt = 101 and qty = 10 as an example), the system create a TR or a TO to move the stock from storage type 902 to 917 as Q (the entire 10 pieces are selected).
    When entering a usage decision for the relevant inspection lot, the system creates a posting change notice (which I can automate to a TO) to remove the "Q" on the stock in storage type 917.
    However, I need to move the quality sample (which is the entire 10 pc) from 917 to the final bin (in storage type 001). Strange is that the system doesn't propose any TR for that movement. Am I missing a config or that final TR/TO has to be created manually?

    Dear YorkD,
    The PCN that was created from the approved UD contains 2 line items:
    Line 1: move the stock with Q indicator from 917 to 922
    Line 2: move the stock without the Q from 922 to 917
    Eventually, this PCN will remove the Q indicator from the stock in 917 (which is correct as the UD was approved), but it will not propose a transfer of the stock to the final bin (depending on the setup of the material master and put away strategies).
    So, unless I've missed something, the PCN doesn't help.
    Regards,
    Hani

  • HOw to find the BAPI function module

    Hi all,
    I have a field called IEVER in table EIKP.
    How to find the related BAPI function module and BAPI structure for this filed.
    Thanks in advance
    KP

    Hi KP,
       can you tell us the name of the transaction in which you saw this field?
    If it is in PO Creation or Change you can probably look at the bapis
    BAPI_PO_CREATE or BAPI_PO_CHANGE
    Regards,
    Ravi

  • Is there a BAPI function module which reverses the sign of an integer

    Hi Friends,
                     Could u plz tell me  a BAPI function module which can reverse the
    sign of an integer ?
    For example:       
    if i get the integer value in work area as <number> <sign> , i need to change it to <sign><number>. 
    i.e if i get the integer value in work area as    "248-" ("-" indicates minus sign) to " -248 ".
    i.e if i get the sign after the value , my requirement is to get the sign before the value.
    The actual ABAP query is:
    data: QTY_1 TYPE CHAR10,
            QTY_2  TYPE CHAR10,
            WA_DISTK_PORTLET-QUANTITY TYPE INT4.
    QTY_1 = WA_DISTK_PORTLET-QUANTITY.
                    SEARCH QTY_1 FOR '-'.
            IF SY-SUBRC = 0 AND SY-FDPOS <> 0.
              SPLIT  QTY_1 AT '-' INTO  QTY_1 QTY_2.
              CONDENSE  QTY_1.
              CONCATENATE '-'  QTY_1  INTO QTY_1.
              CONDENSE  QTY_1.
            ELSE.
              CONDENSE  QTY_1.
            ENDIF.
            CLEAR: WA_DISTK_PORTLET-QUANTITY.
         MOVE : QTY_1 TO  WA_DISTK_PORTLET-QUANTITY.
    when i move this QTY_1 to work area  quantity field The sign is coming after the numeric value.
    Note: There is no possibility to change the datatype of quantity field.
    I have tried my level best with 'CLOI_PUT_SIGN_IN_FRONT' function module.
    I will assign full points to the correct function module.

    Hi Ram,
    try this ang look into fields.
    data: fields type table of SVAL with header line.
    fields-tabname = 'MARA'. fields-fieldname = 'MATNR'. append fields.
    fields-tabname = 'BKPF'. fields-fieldname = 'BUDAT'. append fields.
    CALL FUNCTION 'POPUP_GET_VALUES'
      EXPORTING
        POPUP_TITLE           = 'Value Insert'
      TABLES
        FIELDS                = fields.
    Regards, Dieter

  • I've had my iMac put away for about a year, now I can not remember the admin password upon startup. And I don't have the installation cd's (of course)! Is there any way to re-boot, re-do, get into my Mac to change it.  I don't remember it even w/ the hint

    I've had my iMac put away for about a year, now I can not remember the admin password upon startup. And I don't have the installation cd's (of course)! Is there any way to re-boot, re-do, get into my Mac to change it.  I don't remember it even w/ the hint

    Call Apple with the Serial and they will send you the ones that came with the Mac. Or search the Net.

  • What is the difference between the normal function module and bapi function

    hi,
    what is the difference between the normal function module and bapi function module.

    Hi
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    Regards
    Anji

  • Bapi / Function module to change the status of transaction crmd_order

    Hello team,
    I am developing the utility in CHARM for which i need to change the
    Status of transaction CRMD_ORDER from "New to "In process" through
    report/BAPI / FM etc... I tried to use report
    CRM_socm_service_report.But it never puts status " In process" rather i
    updates only " "work in progress ".
    Also tried FM "CRM_STATUS_CHANGE_EXTERN" , but doen't work.
    After the process is put "In process" , i want to create change request
    and assign resource". Is there any report / FM /Bapi or anything in the
    system to do this.
    I tried to write BDC but dropdown list is not recorded in the recording.
    Please advice.
    Thanks and regards,
    Swapnil

    Not sure I understand your requirement but maybe FM CRM_ORDER_MAINTAIN will be of help to you.

  • Function module or any BAPI that lets park the document in the transaction

    Function module or any BAPI that lets park the document in the transaction FBV1.
    I need to park the invoice by providing some test value in FBV1. I want to know is there any function module or BAPI that is used to park the doucument in transaction FBV1

    hi,
    Use the BAPI BAPI_INCOMINGINVOICE_PARK to park the Document
    Regards
    Sudheer

  • What is the BAPI Function to save text of a Delivery Order?

    When I save a delivery order I want to to save its Texts such as Số xe, Tên tài xế,... as the below picture.
    What is the BAPI Function to save text of a Delivery Order?
    Please help me!!!
    Thanks,
    Nguyen Quang Dai.

    I ran 2 function (SAVE_TEXT and BAPI_TRANSACTION_COMMIT) as below:
    but the text was not changed
    Can you guess the reason?
    Please help me!!!
    Thanks,
    Nguyen Quang Dai

  • Reg:function module to retrive the ekko table data

    Hi all,
    Is there any function module to retrive the ekko table data for the given select-options and parametrs.
    could you provide that.
    Thanks & regards,
    S.chaitanya.

    dear chaitanya,
    may be you can use this function module ME_READ_EKKO_MULTIPLE which can be used to pass the select options to retrieve the desired EKKO data.
    OR the best way would be to do a SELECT Query which would retrieve the data faster and in an effective manner.
    Hope this helps you.
    Help Children of U.N World Food Program by rewarding and enocourage others to answer your queries
    Thanks
    Venugopal

Maybe you are looking for