Passing Item data to BAPI BAPI_REQUIREMENTS_CREATE

Hello Experts,
Requirement to upload data from xcel sheet to SAP. Upload of Planned independent requirement(PIR) in the Plant
Please help as i am not able to pass values into BAPI  EXPORT PARAMETER "requirements_item" and TABLE PARAMETER "requirements_schedule_in"
my test data is:
COKE1     2012-2013     20120201     10     TON
                                   20120301        35     TON
COKE2     2012-2013     20120201     10     TO
                                     20120301     35     TO
..CODE
form BAPI_REQUIREMENTS_CREATE.
LOOP AT lt_export_data INTO wa_export_data.
   CLEAR wa_t5.
   CLEAR wa_t4.
         wa_t5-MATERIAL    = wa_export_data-MATERIAL.
         wa_t5-PLANT       = 'ES01'.
         wa_t5-REQU_TYPE   = 'VSF'.
         wa_t5-VERSION     = 'AB'.
         wa_t5-REQ_NUMBER  = wa_export_data-Req_Num.
         APPEND wa_t5 to lt_t5.
         wa_t4-DATE_TYPE   = '3'.         "Monthly
         wa_t4-REQ_DATE    = wa_export_data-Date.
         wa_t4-REQ_QTY     = wa_export_data-Quantity.
         wa_t4-UNIT        = wa_export_data-UNIT.
         APPEND wa_t4 to lt_t4.
         CLEAR wa_export_data.
ENDLOOP.
CALL FUNCTION 'BAPI_REQUIREMENTS_CREATE'
           EXPORTING
             requirements_item                 = wa_t5
           TABLES
             requirements_schedule_in    = lt_t4
             return                                     = lt_return.
I have the values in lt_t5 and lt_t4, now how to pass them to get desired result.
Regards.
Puneet Jham

Try this.
i got the sucess result as i want.
DATA: I_BAPISITEMR TYPE STANDARD TABLE OF BAPISITEMR WITH HEADER LINE.
  " Item data
  DATA: I_CM60R TYPE STANDARD TABLE OF CM60R WITH HEADER LINE.
  " Requirements parameters
  DATA: I_BAPISSHDIN TYPE STANDARD TABLE OF BAPISSHDIN WITH HEADER LINE.
  " Schedule line data input
  DATA: I_BAPIRETURN1 TYPE STANDARD TABLE OF BAPIRETURN1 WITH HEADER LINE.
  " Return parameter
  DATA: I_MRP_AREA TYPE STANDARD TABLE OF BAPISITEMR WITH HEADER LINE.
**If requirement already Exist then UPDATE those Req.
  DATA: U_REQUIREMENTS_SCHEDULE_IN TYPE STANDARD TABLE OF BAPISSHDIN WITH HEADER LINE.
  DATA: U_BAPIRETURN1 TYPE STANDARD TABLE OF BAPIRETURN1 WITH HEADER LINE.
**If requirement already Exist then UPDATE those Req.
*local data declaration
  DATA: ZREQ_DATE TYPE SY-DATUM .
  DATA: ZREQ_NUM TYPE STRING.
  DATA: ZYEAR_DATA TYPE STRING ,
        ZMONTH_DATA TYPE STRING .
  ZYEAR_DATA = ZYEAR.
  ZMONTH_DATA = ZMONTH.
  DATA: I_MATERIAL TYPE MARA-MATNR ,
        I_IN_ME1 TYPE MARA-MEINS ,
        I_OUT_ME1 TYPE MARA-MEINS ,
        I_MENGE1 TYPE EKPO-MENGE .
  DATA: OUT_E_MENGE TYPE EKPO-MENGE .
  DATA: W_SINGLE TYPE MEINS .
  CONCATENATE ZYEAR_DATA ZMONTH_DATA INTO ZREQ_NUM SEPARATED BY '-' .
  LOOP AT IT_FINAL INTO WA_FINAL.
    I_MATERIAL = WA_FINAL-ZMATERIAL.  "Read from internal table
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT  = I_MATERIAL
      IMPORTING
        OUTPUT = I_MATERIAL.
    SELECT SINGLE MEINS FROM MARA INTO W_SINGLE WHERE MATNR EQ I_MATERIAL .
    I_IN_ME1 = WA_FINAL-ZQTY_UNIT . " read from internal table
    I_OUT_ME1 = W_SINGLE  .  "fetch from query
    I_MENGE1 = WA_FINAL-ZPL_QTY . "read from internal table
    CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
      EXPORTING
        I_MATNR              = I_MATERIAL
        I_IN_ME              = I_IN_ME1
        I_OUT_ME             = I_OUT_ME1
        I_MENGE              = I_MENGE1
      IMPORTING
        E_MENGE              = OUT_E_MENGE
      EXCEPTIONS
        ERROR_IN_APPLICATION = 1
        ERROR                = 2
        OTHERS               = 3.
    IF SY-SUBRC <> 0.
      CONTINUE.
    ENDIF.
    I_BAPISITEMR-MATERIAL = WA_FINAL-ZMATERIAL .
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT  = I_BAPISITEMR-MATERIAL
      IMPORTING
        OUTPUT = I_BAPISITEMR-MATERIAL.
    I_BAPISITEMR-PLANT = WA_FINAL-ZPLANT.
    I_BAPISITEMR-MATERIAL_VERSION = '00' .
    I_BAPISITEMR-REQ_NUMBER  = ZREQ_NUM.
    I_BAPISITEMR-VERSION = '00'.
    I_BAPISITEMR-REQU_TYPE = 'LSF' .
    I_BAPISITEMR-VERS_ACTIV = 'X'.
*I_BAPISITEMR-MRP_AREA =  '1110' .
I_BAPISITEMR-VERS_ACTIV = ''.
    APPEND I_BAPISITEMR.
    I_BAPISSHDIN-REQ_QTY = OUT_E_MENGE.
    I_BAPISSHDIN-DATE_TYPE = '3'.   "Date type (day, week, month, interval) 3 = Month
    CONCATENATE ZYEAR_DATA ZMONTH_DATA '01' INTO ZREQ_DATE.
    I_BAPISSHDIN-REQ_DATE = ZREQ_DATE.   "Schedule line date
    I_BAPISSHDIN-UNIT = W_SINGLE.
    APPEND I_BAPISSHDIN.
    CALL FUNCTION 'BAPI_REQUIREMENTS_CREATE'
  EXPORTING
    REQUIREMENTS_ITEM              = I_BAPISITEMR
   REQUIREMENT_PARAM              = I_CM60R
     DO_COMMIT                      = 'X'
  UPDATE_MODE                    = ''
  REFER_TYPE                     = ''
  PROFILID                       = ''
IMPORTING
  MATERIAL                       = I_BAPISITEMR-MATERIAL
  PLANT                          = I_BAPISITEMR-PLANT
  REQUIREMENTSTYPE               = I_BAPISITEMR-REQU_TYPE
  VERSION                        = I_BAPISITEMR-VERSION
  REQMTSPLANNUMBER               = I_BAPISITEMR-REQ_NUMBER
  MRP_AREA                       = I_BAPISITEMR-MRP_AREA
  TABLES
    REQUIREMENTS_SCHEDULE_IN       = I_BAPISSHDIN
  REQUIREMENTS_CHAR_IN           =
    RETURN                         = I_BAPIRETURN1

Similar Messages

  • How to pass delivery date through BAPI while creating a sale order

    Dear frndz,
         I am using 'BAPI_SALESORDER_CREATEFROMDAT1'
    to create a sale order .
        I don't have any problem..
        But I have to pass schedule line delivery date through this bapi .
       I used REQ_DATE in structure BAPISCHDL.
       But I can' t get it.
       Through which parameter can i meet this..
       The sale order should be created line item wise along with my delivery date..
      Any suggestions...
    regards.
    siva

    Dear frnd,
        Danq for your response..I can't use DLV_DATE for this requirement..
        But I used REQ_DATE in the structure BAPISCHEDULE .
       I came to know that the problem i faced previously  was only
    internal data conversion.
        Now am able to pass my delivery date..
        so I am closing the thread..
    Regards.
    siva

  • How to header and item data of sales order using bapi interface

    hi friends,
       i am geetha, i having a problem like how to upload sales oder header and item data through va01 tcode using BAPI FUNCTION MODULES.
    i need bapi function modules for header adn item data  and brief explation on that , how to pass importing and tables  parameters to get exact output .
    regards
    geetha.

    Use : BAPI_SALESORDER_CREATEFROMDAT2
    Sales order: Create Sales Order
    Functionality
    You can use this method to create sales orders.
    You must enter at least sales order header data (via ORDER_HEADER_IN structure) and partner data (via the ORDER_PARTNERS table) as input parameters.
    Enter the item data via the ORDER_ITEMS_IN table. You can allocate item numbers manually, by filling in the relevant fields, or the system does it, according to the settings for Customizing, by leaving the relevant fields blank.
    If you have configurable items, you must enter the configuration data in the ORDER_CFGS_REF, ORDER_CFGS_INST, ORDER_CFGS_PART_OF and ORDER_CFGS_VALUE tables.
    Credit cards can be transferred via the BAPICCARD structure, on the one hand, data for card identification, on the other, data for a transaction which has taken place in an external system.
    Once you have created the sales order successfully, you will receive the document number (SALESDOCUMENT field). Any errors that may occur will be announced via the RETURN parameter.
    If no sales area has been created in the sales order header, then the system creates the sales area from the sold-to party or ship-to party, who has been entered in the partner table. If a clear sales area cannot be created, you will receive a system message, and the sales order will not be created.
    Notes
    1. Mandatory entries:
    ORDER_HEADER_IN : DOC_TYPE     Sales document type
                       SALES_ORG    Sales organization
                       DISTR_CHAN   Distribution channel
                       DIVISION     Division
    ORDER_PARTNERS..: PARTN_ROLE   Partner role, SP sold-to party
                       PARTN_NUMB   Customer number
    ORDER_ITEMS_IN..: MATERIAL     Material number
    2. Ship-to party:
    If no ship-to party is entered, use the following: Ship-to party =
    sold-to party.
    3. Commit control:
    The BAPI does not have a database commit. This means that the relevant application must leave the commit, in order that can be carried out on on the database. The BAPI BAPI_TRANSACTION_COMMIT is available for this.
    4. German key words:
    The following key words must be entered in German, independantly of
    the logon language:
    DOC_TYPE     Sales document type, for example: TA for standard order
    PARTN_ROLE   Partner role, for example: WE for ship-to party
    Further information
    You can find further information in the OSS. The note 93091 contains general information on the BAPIs in SD.
    Parameters
    SALESDOCUMENTIN
    ORDER_HEADER_IN
    ORDER_HEADER_INX
    SENDER
    BINARY_RELATIONSHIPTYPE
    INT_NUMBER_ASSIGNMENT
    BEHAVE_WHEN_ERROR
    LOGIC_SWITCH
    TESTRUN
    CONVERT
    SALESDOCUMENT
    RETURN
    ORDER_ITEMS_IN
    ORDER_ITEMS_INX
    ORDER_PARTNERS
    ORDER_SCHEDULES_IN
    ORDER_SCHEDULES_INX
    ORDER_CONDITIONS_IN
    ORDER_CONDITIONS_INX
    ORDER_CFGS_REF
    ORDER_CFGS_INST
    ORDER_CFGS_PART_OF
    ORDER_CFGS_VALUE
    ORDER_CFGS_BLOB
    ORDER_CFGS_VK
    ORDER_CFGS_REFINST
    ORDER_CCARD
    ORDER_TEXT
    ORDER_KEYS
    EXTENSIONIN
    PARTNERADDRESSES
    Exceptions
    Function Group
    2032

  • Activity to Pass Published Data One Item at a Time

    i am passing a variable number of items to a runbook.  i would like to pass them to an activity one at a time in that new runbook.  Since "Initialize Data" cannot pass items individually, is there some other activity that can do so.   
    In short, i send elements to a runbook and i want the elements to be processed in the new runbook one element at a time. thanks.

    Hello,
    if I understand right want to pass several items in "Initialize Data" and each item should be triggered in the Runbook and the number of items changes ?
    -> You can pass th items separated with semicolon and split them with the "Run :Net Script" Activity again.
    $myPublishedVariable = @()
    $ArrayList = 'bla;blub' -split ";"
    foreach ($Item in $ArrayList) {$myPublishedVariable+= $Item}
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • BAPI or FM for create  delivery in header data & item data

    Hi All,
             In my requriment  i am downloading delivery data  i.e header data and item data . When  i am uploadinng the Modification data  through BAPI  or FM.
    Thank you,
    Dinesh Reddy

    Hi,
    If you are looking for BAPI to create delivery check the following BAPIs
    BAPI_OUTB_DELIVERY_CREATE_SLS
    BAPI_OUTB_DELIVERY_CREATE_STO
    BAPI_OUTB_DELIVERY_SAVEREPLICA
    Regards
    Prasenjit

  • BAPI or FM for geting  all sales master data, header data , item data etc

    Hi experts,
          In my requirement  i need a BAPI  (or) Function module for getting all "Sales information" data means header data , item
    data, scheduled data  etc    .
    Thank you,
    Dinesh Reddy.

    Hi,
    check BAPI_SALESORDER_GETLIST
    I hope it helps you....
    Regards,
    NaPPy

  • BAPI / FM to change Sales order item data

    Hi,
    I need a BAPI or FM to update the following fields of VBAP (Sales Document Item Data)
    KZWI2 - Subtotal 2 from pricing procedure for condition
    KZWI3 - Subtotal 3 from pricing procedure for condition
    KZWI4 - Subtotal 4 from pricing procedure for condition
    KZWI5 - Subtotal 5 from pricing procedure for condition
    I found FM: ISM_SALES_ITEM_CHANGE for this, but when I use it, it gives me dump for some data object 'XJKNBK'.
    Does any one have idea on how to use this FM or if any other FM is there please let me know?
    Thanks & Regards,
    Sunanda.

    hi Sunanda..
    I think you can try the Bapi 'BAPI_SALESORDER_CHANGE'. You can make use of its Tables Parameter CONDITIONS_IN and CONDITIONS_INX.
    example:
    How to change pricing Conditions in Sales order in change sales order bapi
    thanks,
    Padma

  • ISA-Ecommerce : Passing extension data at item level to CRM backend?

    Hi Experts,
    I want to pass the extension filed data which is present at item level to the CRM back end system. In DEMO1 example provided, they have demonstrated about header data to pass.
    HeaderData headerdata = isaBOM.getBasket().getHeaderData();(header data BOM instance)
    ItemListData itemsdata = isaBOM.getBasket().getItemListData();(Item data BOM instance)
    String extHDshipmethods = (String)p_request.getParameter("zhext_shippmethods");(request from http for header data)
    String extIDshipmethods = (String)p_request.getParameter("ziext_shippmethods");(request from http for item data)
    headerdata.addExtensionData("ZHEXTENSIONSHIPMETHODS", extHDshipmethods);(adding extension to header data)
    itemsdata.add("ZIEXTENSIONSHIPMETHODS", extIDshipmethods);(adding extensoin to item data but gettin error)
    In the above last line i am getting an error saying that add(itemlistdata) cannot be used as a string. Generally for header data, in the extension guide it is mentioned that we use "headerdata.addExtensionData("",)" but for items data what should be used??
    Thanks a lot in Advance!
    regards,
    lakshman.
    Edited by: lakshman reddy G on Jan 21, 2009 2:24 PM

    Hello LRG,
    In the Java and JSP layer
    In the ZMaintainDispatcher, override the Item level method
    public void customerExitParseRequestItem
    This method is called for each item to parse
    the custom variables. Hint: Since the items are processed in a loop in the JSP, it is
    customary to name the page level variables suffixed with the Item index like myData1[itmIndx]
    public void customerExitParseRequestItem(
       RequestParser parser,
       UserSessionData userSessionData,
       ItemSalesDoc itemSalesDoc,
       int itmIndx  {
       String zItemExtData1 = "";
    // Item level data1[itmIndx] - value is set for item itmIndx
    // see the method parameters
       zItemExtData1 = parser.getParameter("zItemExtData1" +
    itemIdx).getValue().getString();                    
       itemSalesDoc.addExtensionData("zItemExtData1", zItemExtData1 );                    
    This will parse and add item level extensions to the items object.
    In the ABAP layer
    Implement CRM_ISA_BASKET_ITEMS and code in the methods  changeitems_set_data and getitems_get_data
    In the request cycle, you will read the value from the extension table and persist that in the
    transaction - say in a EEWB field. In the method changeitems_set_data
          READ TABLE lt_extension INTO ls_extension WITH KEY
                   name = 'zItemExtData1'.
          IF sy-subrc EQ 0 AND NOT ls_extension-value IS INITIAL.
            ZEEWBDATA1 = ls_extension-value.
          ENDIF.
    In the response cycle, code the getitems_get_data
    *     Populate Extension data Data1 - Assuming that you read it from EEWB field ZEEWBDATA1
          CLEAR ls_extension.
          ls_extension-ref_guid = ls_guid.
          ls_extension-name     = 'zItemExtData1'.
          ls_extension-value    = lv_leewbdata1.
          APPEND ls_extension TO ct_extension.
    In principle, the idea is same as what is shown in the extension guide for the header.
    Please note: Depending upon several user interaction requirements, you may have to
    use different methods in the Item BAdI as well as other methods in the MaintainDispatcher class.
    Easwar Ram
    http://www.parxlns.com

  • Passing date to BAPI

    Hi,
    I am getting date from the frontend in mm-dd-yyyy format.But BAPI accepts date only in yyyymmdd format.How should I pass date to BAPI in required format. Can I use Date Object to pass date to BAPI and how?
    Regards,
    Samir

    Hi Samir,
      You can convert the frondend date as your wish. Create a object for SimpleDateFormat and parse the date as you want and send pass the required format to the BAPI.
    For Example:
    SimpleDateFormat isdf = new SimpleDateFormat("MM-dd-yyyy"); // For input format
    Date dt=sdf.parse(strDate); // strDate is input from the frontend
      Through this, you have converted the string(ie. strDate) into normal date format.  From this you can get the required format as the following,
    String result = null;
    int dd=dt.getDate();
    int MM=dt.getMonth()+1;
    int year = dt.getYear()+1900;
    result = yearMMdd+"";
      Now, you have got the required format.
    Regards,
    Venkatesh. K
    /* Consider Points if it is useful */

  • [BAPI] Reading outbound deliveries including item data

    I'm looking for the correct BAPI to read all outbound deliveries that need to be picked including the item data (material, batch, quantity).
    Thanks in advance

    Hi,
    I believe there is no BAPI for reading the outbound delivery details..Atleast in my system..(4.6C)..
    You can create a custom RFC FM and call the below function module for the delivery details..
    SD_DELIVERY_VIEW
    Thanks,
    Naren

  • When i click the listview items I have to call two odata webservice and pass that data to next screen ?

    Hi All,
                I Have two odata webservices When i click the listview items I have to call that two odata webservice and pass that data to next screen ?

    You don't have to pass the data to any page.
    onInit method of controller set your oData model like this.
                  onInit: function() {
                  //var oModel = sap.ui.model.json.JSONModel();
                  var oModel = sap.ui.model.json.JSONModel("http://services.odata.org/V3/Northwind/Northwind.svc/Customers?$format=json");
                  sap.ui.getCore().setModel(oModel,"oDataId");
    After this you can access your model from any views by just binding the elements with your odata. Suppose i have a table in a view of my application then i can write like this.
                  var oTable = sap.ui.table.Table({
                         tableId: "myTable",
                         visibleRowCount: 5,
                         editable: false
                  oControl = new sap.ui.commons.TextView({text: "{CustomerID}"});
                  oTable.addColumn(
                               new sap.ui.table.Column({                             
                               label: new sap.ui.commons.Label({text: "Customer ID"}),
                               visible:true,
                               template: oControl  
                  oControl = new sap.ui.commons.TextView({text: "{ContactName}"});
                  oTable.addColumn(
                               new sap.ui.table.Column({                             
                               label: new sap.ui.commons.Label({text: "Contact Name"}),
                               visible:true,
                               template: oControl  
                  oControl = new sap.ui.commons.TextView({text: "{ContactTitle}"});
                  oTable.addColumn(
                               new sap.ui.table.Column({                             
                               label: new sap.ui.commons.Label({text: "Contact Title"}),
                               visible:true,
                               template: oControl  
                  oControl = new sap.ui.commons.TextView({text: "{CompanyName}"});
                  oTable.addColumn(
                               new sap.ui.table.Column({                             
                               label: new sap.ui.commons.Label({text: "Company Name"}),
                               visible:true,
                               template: oControl  
                  oTable.bindRows("oDataId>/value");
    Here you can see i have binded the oData with table.
    Just what i am seeing that you are trying to pass this model to a page. You don't have to do so. Just bind your oData with relevant elements lite table or anything by writing like this.
    oTable.bindRows("oDataId>/value");
    these functions are different for different elements.
    for listItem you may write like this.
                  var oList = new sap.m.List({
                  inset: true,
                  items : [
                                        new sap.m.DisplayListItem({ label :"Category ID", value : "{oDataId>/CategoryID}"}),
    {oDataId>/CategoryID} this has been used for binding.
    Regards
    Dhananjay

  • AP open items data

    Hi gurus,
             Here i have to extract data related to ACCOUNTS PAYBLE OPEN ITEM DATA for that i have to extract Header data , item data, and vendor data, bank details.....so pls advice me from how many tables i have to  take data ...
    I knew some thing like BKPF,BSEG,BSIK,LFA1,LFBK,,,,is this correct or
    i have to take from BSIK for open items ,,some of the fields are avilabel in BSIK,but again i have to go to BSEG,,,,,,some fileds avilabe in this table ....pls ADVICE ME.....
    Thanks
    KRISNA

    Hi Krisna,
    Even in std transdaction code FBL1N, you need to provide comp. code,vendor #, keydate.
    But since you have company code only, you can retrive all the relevant vendors for that comp. code using select from table LFB1.
    You can pass these vendors alongwith the given comp. code to the BAPI through a loop.
    For keydate, by default it should be current system date so set it to system date.
    Hope this would be of help.
    Cheers,
    Vikram
    Mark for helpful replies!!

  • IW51 - Badi during save to change item data

    Hello experts,
    we are trying to modify on service notification the item data (classification data).
    We are trying to do it via BAdI Interface IF_EX_NOTIF_EVENT_SAVE.
    Once we reach that badi we want to update classification data using function BAPI_OBJCL_CHANGE.
    We pass the document number we have to the object key of the bapi (qmnum + fenum).
    But bapi returs us message that document xxxx does not exist.
    When we test bapi vie SE37 it works .
    But in the badi it seems failing cause the document is not yet commited.
    Do you have an idea of how we could call the bapi to change item data with document number saved before ? (other badi, exit, other solution,...)
    Or any other idea could be welcome.
    Thanks for the help.
    S.N

    Hi
    Transaction Code - VF01                     Create Billing Document
    Exit Name           Description
    J_3RSINV
    SDVFX001            User exit header line in delivery to accounting
    SDVFX002            User exit for A/R line in transfer to accounting
    SDVFX003            User exit cash clearing in transfer to accounting
    SDVFX004            User exit G/L line in transfer to accounting
    SDVFX005            User exit reserves in transfer to accounting
    SDVFX006            User exit tax line in transfer to accounting
    SDVFX007            User exit: Billing plan during transfer to Accounting
    SDVFX008            User exit: Processing of transfer structures SD-FI
    SDVFX009            Billing doc. processing KIDONO (payment reference number)
    SDVFX010            User exit item table for the customer lines
    SDVFX011            Userexit for the komkcv- and kompcv-structures
    V05I0001            User exits for billing index
    V05N0001            User Exits for Printing Billing Docs. using POR Procedure
    V60A0001            Customer functions in the billing document
    V60P0001            Data provision for additional fields for display in lists
    V61A0001            Customer enhancement: Pricing
    No of Exits:         17
    With Regards
    Nikunj Shah

  • How to create BOM(Bill Of Material) item data from flat file?

    I have two flat files one is BOM(Bill Of Material) header data and BOM item data. BOM header is already created, now I want to create BOM item data with reference to the header data. Is there any standard direct batch input method in LSMW or Is there any standard BAPI or Is there any standard BDC report program to do the task? CS01 is the TCode to create BOM.

    Hi,
    The DI program works for create step CS01 and not for CS02.
    Perhaps this ( adding items in header by Tx: CS02 ) could be achieved by a Recording step in LSMW.
    Best Regards, Murugesh

  • Changing the item data in MIRO ,MIR7,MIR4 transactions

    Hi,
    Please help in finding out the BADI/User exit to change the line item data and passing changed data back to the main screen for MIRO,MIR7 and MIR4 transactions.

    Hi Neil,
    1. U said u have used SAVE_TEXT
       and it saves.
    2. To check if this happens or not, 
        After that write COMMIT Work.
    3. In DEBUG mode,
       execute till the FM and COMMIT Work,
    4. In another session,
       see the table STXH
       to know whether it REALLY Gets
       updated or not!
    regards,
    amit m.

Maybe you are looking for

  • Printing Problems with Acrobat Pro 9.5 for Mac

    I have Acrobat pro 9.5 for Mac.  I'm using a Canon MG8150 multi-function printer.  Everytime I try to print from Arobat Pro I get an error message.  Any suggestions?  I can print my pdfs from Apple Preview; so it's not the document or the printer.

  • Pop up of some comment on mouse over to a particular component

    I have a column chart which display revenue for different products. I want to dispaly som comment on mouse over to a particular product. I have tried implementing it using a labels and dynamic visibility, but here in this solution I am facing problem

  • Since today my mail (hotmail address) does not appear in mail on my I mac??

    I can find my mails on the outlook website..not in mail any more what did i do wrong??

  • SSL connections blocking worker threads on DS 5.2 patch 4

    Hi, Is it normal for an idle SSL connection to consume a worker thread within the directory server? We have recently enabled SSL on a number of our directory servers (5.2 patch 4) and have run into problems with the server hanging. We have a number o

  • Recovery of Frectured block

    Oracle 10g 10.2.0.1.0 on win 2003 server both(32 bit) Problem: ======= 1. select*from v$log; GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIM 1 1 1892 52428800 1 NO INACTIVE 62251690 23-JAN-12 2 1 1893 52428800 1 NO CURRENT 6