Problem in conditions pricing updation using BAPI_PO_CREATE1

hi,
    I am creating PO using BAPI_PO_CREATE1 however when i am passing the data to the bapi for conditions at item level the price value is not changing and throwing error as ( NET PRICE FOR ITEM 00010 adopted from last document ) so for all the items its throwing the same information and when i am chekin the PO the value is not the changing. and while creating the PO manually also the net price is coming automatically and we need to backspace the value and re enter the new value. So wht should i do in order to input the data into the PO.
Thanks in advance

Thanks

Similar Messages

  • Pricing Updation Using LSMW

    I would like to do Pricing updation using VK11 Tocde.for this can I use LSMW ..?
    otherwise which one will be better for pricing updation data load?

    Hi
    You can use BDC or LSMW or BAPI deopending on your convenience
    it is the programmer choice
    Final aim is right data has to be uploaded to SAP for the transactions to happen.
    So depending on your easiness you use any one of the above
    see the sample bdc for the VK11.
    report ZSDBDCP_PRICING no standard page heading
           line-size 255.
    include zbdcrecx1.
    *--Internal Table To hold condition records data from flat file.
    Data: begin of it_pricing occurs 0,
           key(4),
           f1(4),
           f2(4),
           f3(2),
           f4(18),
           f5(16),
          end of it_pricing.
    *--Internal Table To hold condition records header  .
    data : begin of it_header occurs 0,
             key(4),
             f1(4),
             f2(4),
             f3(2),
           end of it_header.
    *--Internal Table To hold condition records details .
    data : begin of it_details occurs 0,
            key(4),
            f4(18),
            f5(16),
           end of it_details.
    data : v_sno(2),
           v_rows type i,
           v_fname(40).
    start-of-selection.
    refresh : it_pricing,it_header,it_details.
    clear  : it_pricing,it_header,it_details.
    CALL FUNCTION 'UPLOAD'
          EXPORTING
               FILENAME                = 'C:\WINDOWS\Desktop\pricing.txt'
               FILETYPE                = 'DAT'
          TABLES
               DATA_TAB                = it_pricing
          EXCEPTIONS
               CONVERSION_ERROR        = 1
               INVALID_TABLE_WIDTH     = 2
               INVALID_TYPE            = 3
               NO_BATCH                = 4
               UNKNOWN_ERROR           = 5
               GUI_REFUSE_FILETRANSFER = 6
               OTHERS                  = 7.
      WRITE : / 'Condition Records ', P_FNAME, ' on ', SY-DATUM.
      OPEN DATASET P_FNAME FOR INPUT IN TEXT MODE.
      if sy-subrc ne 0.
        write : / 'File could not be uploaded.. Check file name.'.
        stop.
      endif.
      CLEAR : it_pricing[], it_pricing.
      DO.
        READ DATASET P_FNAME INTO V_STR.
        IF SY-SUBRC NE 0.
          EXIT.
        ENDIF.
    write v_str.
    translate v_str using '#/'.
        SPLIT V_STR AT ',' INTO it_pricing-key
                                it_pricing-F1 it_pricing-F2 it_pricing-F3
                                it_pricing-F4 it_pricing-F5 .
        APPEND it_pricing.
        CLEAR it_pricing.
      ENDDO.
      IF it_pricing[] IS INITIAL.
        WRITE : / 'No data found to upload'.
        STOP.
      ENDIF.
      loop at it_pricing.
        At new key.
          read table it_pricing index sy-tabix.
          move-corresponding it_pricing to it_header.
          append it_header.
          clear it_header.
        endat.
        move-corresponding it_pricing to it_details.
        append it_details.
        clear it_details.
      endloop.
      perform open_group.
      v_rows = sy-srows - 8.
      loop at it_header.
        perform bdc_dynpro      using 'SAPMV13A' '0100'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RV13A-KSCHL'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'RV13A-KSCHL'
                                      it_header-f1.
        perform bdc_dynpro      using 'SAPMV13A' '1004'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KONP-KBETR(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'KOMG-VKORG'
                                      it_header-f2.
        perform bdc_field       using 'KOMG-VTWEG'
                                       it_header-f3.
    **Table Control
        v_sno = 0.
        loop at it_details where key eq it_header-key.
          v_sno = v_sno + 1.
          clear v_fname.
          CONCATENATE 'KOMG-MATNR(' V_SNO ')' INTO V_FNAME.
          perform bdc_field       using v_fname
                                        it_details-f4.
          clear v_fname.
          CONCATENATE 'KONP-KBETR(' V_SNO ')' INTO V_FNAME.
          perform bdc_field       using v_fname
                                        it_details-f5.
          if v_sno eq v_rows.
            v_sno = 0.
            perform bdc_dynpro      using 'SAPMV13A' '1004'.
            perform bdc_field       using 'BDC_OKCODE'
                                     '=P+'.
            perform bdc_dynpro      using 'SAPMV13A' '1004'.
            perform bdc_field       using 'BDC_OKCODE'
                                     '/00'.
          endif.
        endloop.
    *--Save
        perform bdc_dynpro      using 'SAPMV13A' '1004'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=SICH'.
        perform bdc_transaction using 'VK11'.
      endloop.
      perform close_group.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Problem in implementing ODATA update using SAP UI5

    Hi,
      I am trying to develop an hwc mobile app [hwc] using sapui5 and phonegap. I am trying to perform odata crud operations in the app.
    In the netweaver side, currently we have disabled the setting for X-CSRF token so that CUD operations are possible even without CSRF token. I am using datajs library for consumption of the odata services in my app. My read operation is successful and i am able to display the data in my app. But I am facing problems in the update operation.
    In order to ensure that serverside is perfect, I used the WFetch tool to perform the update operation and verified that data got updated successfully in SAP backend { i got 204 response from server ]. In the wfetch tool, the headers and body section was like this
    x-requested-with: XMLHttpRequest\r\n
    \r\n
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n
      <entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">\r\n
          <content type="application/xml">\r\n
            <m:properties>\r\n
              <d:value>0203_IN120</d:value> \r\n
              <d:scheme_id>Z_BANK_RFC_GANESH</d:scheme_id> \r\n
              <d:scheme_agency_id>LOCAL</d:scheme_agency_id> \r\n
              <d:post_bank /> \r\n
              <d:bank_branch>BANASWADI</d:bank_branch> \r\n
              <d:street>123 MARUTHI SEVA NAGAR.</d:street> \r\n
              <d:city>BANGALORE</d:city> \r\n
              <d:swift_code/>\r\n
              <d:region>KA</d:region> \r\n
              <d:bank_name>HSBC</d:bank_name> \r\n
              <d:pobk_curac /> \r\n
              <d:bank_group /> \r\n
              <d:addr_no /> \r\n
            </m:properties>\r\n
          </content>\r\n
    </entry>\r\n
    The response i got was like this
    WWWConnect::Connect("XXXXX.XXXX.com","8000")\nIP = "10.6.13.146:8000"\nsource port: 50054\r\n
    REQUEST: **************\nPUT /sap/opu/sdata/sap/ZBANKRFCGANESH/z_bank_rfc_ganeshCollection(value='0203_IN120',scheme_id='Z_BANK_RFC_GANESH',scheme_agency_id='LOCAL')/?$format=xml HTTP/1.1\r\n
    x-requested-with: XMLHttpRequest\r\n
    Host: i3lbwvids.itcinfotech.com\r\n
    Accept: */*\r\n
    Content-Length:884\r\n
    Authorization: Basic Z2FuZXNoOmxvZ2luQDEyMzQ=\r\n
    \r\n
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n
      <entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">\r\n
          <content type="application/xml">\r\n
            <m:properties>\r\n
              <d:value>0203_IN120</d:value> \r\n
              <d:scheme_id>Z_BANK_RFC_GANESH</d:scheme_id> \r\n
              <d:scheme_agency_id>LOCAL</d:scheme_agency_id> \r\n
              <d:post_bank /> \r\n
              <d:bank_branch>BANASWADI</d:bank_branch> \r\n
              <d:street>123 MARUTHI SEVA NAGAR.</d:street> \r\n
              <d:city>BANGALORE</d:city> \r\n
              <d:swift_code/>\r\n
              <d:region>KA</d:region> \r\n
              <d:bank_name>HSBC</d:bank_name> \r\n
              <d:pobk_curac /> \r\n
              <d:bank_group /> \r\n
              <d:addr_no /> \r\n
            </m:properties>\r\n
          </content>\r\n
    </entry>\r\n
    RESPONSE: **************\nHTTP/1.1 204 No Content\r\n
    set-cookie: MYSAPSSO2=AjQxMDMBABhHAEEATgBFAFMASAAgACAAIAAgACAAIAACAAY4ADAAMAADABBJAEQAUwAgACAAIAAgACAABAAYMgAwADEANAAwADEAMgA5ADAANwAyADUABQAEAAAACAYAAlgACQACRQD%2fAPowgfcGCSqGSIb3DQEHAqCB6TCB5gIBATELMAkGBSsOAwIaBQAwCwYJKoZIhvcNAQcBMYHGMIHDAgEBMBkwDjEMMAoGA1UEAxMDSURTAgcgEQQGCClRMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNDAxMjkwNzI1MzlaMCMGCSqGSIb3DQEJBDEWBBRF%2fqnZ6znAGOYDuA1QJxZ7kOYTfDAJBgcqhkjOOAQDBC4wLAIUNk9rqGV16RPsLrLsHfHtNPc%21Q44CFBRiJ4BhRrmxUVH77EYIGSSd8WPb; path=/; domain=.itcinfotech.com\r\n
    content-length: 0\r\n
    dataserviceversion: 2.0\r\n
    x-sap-odata-extension-version: 0.9;gp=0.8\r\n
    server: SAP NetWeaver Application Server / ABAP 702\r\n
    \r\n
    Now i tried to do that using sapui5 code.
    OData.request(
                       requestUri: "http://XXXXX.XXXXX.com:8000/sap/opu/sdata/sap/ZBANKRFCGANESH/z_bank_rfc_ganeshCollection(value='0203_IN120',scheme_id='Z_BANK_RFC_GANESH',scheme_agency_id='LOCAL')/?$format=xml",
                       method: "PUT",
                       headers: { "X-Requested-With": "XMLHttpRequest", "sap-user" : "ganesh", "sap-password" : "login@1234",  "Content-Type": "application/atom+xml" },
                       data: {
                               "value" : "0203_IN120",
                               "scheme_id" : "Z_BANK_RFC_GANESH",
                               "scheme_agency_id" : "LOCAL",
                               "post_bank" : "",
                               "bank_branch" : "Park Street",
                               "street" : "Russel Street",
                               "city" : "KOLKATA",
                               "swift_code" : "",
                               "region" : "WB",
                               "bank_name" : "HSBC",
                               "pobk_curac" : "",
                               "bank_group" : "",
                               "addr_no" : ""
                     function (data, response){ 
                       // var header_xcsrf_token = response.headers['x-csrf-token']; 
                      //  alert(header_xcsrf_token);
                        //  alert("hello");
                          //alert(data);
                         alert(JSON.stringify(response, null, 4));
                     function (err) {
                        alert(err.message);
      I found the I am always getting a 200 OK in the respose and not 204 [ when i displayed the response using the alert message]. As expected data is also not getting updated.
    Kindly guide me where i am going wrong in the code. Please help me out.
    thanks and regards,
    krishna.

    Hi Krishna
    I will try and help.
    The first thing i notice is you are using OData.request, this is not part of SAPUI5, OData is a global introduced by the datajs thirdparty plugin, I would recommend not using it directly, instead use the ODataModel API start by reading the Class sap.ui.model.odata.ODataModel and ODataModel.  There are a lot of good of reasons for using the ODataModel, like databinding, event handling, it doesn't smell like a leak, besides the SAPUI5 ODataModel is a lot easier to use.
    try something like this
    var url = 'http://XXXXX.XXXXX.com:8000/sap/opu/sdata/sap/ZBANKRFCGANESH';
    var bJSON = true; //use JSON
    var sUser = 'ganesh';
    var sPassword = 'login@1234';
    // create a model for OData service call
    var oModel = new sap.ui.model.odata.ODataModel(url, true, sUser, sPassword);
    sap.ui.getCore().setModel(oModel);
    var path = '/z_bank_rfc_ganeshCollection(value='0203_IN120',scheme_id='Z_BANK_RFC_GANESH',scheme_agency_id='LOCAL')';
    // create the data
    var data =  {
        "value": "0203_IN120",
        "scheme_id": "Z_BANK_RFC_GANESH",
        "scheme_agency_id": "LOCAL",
        "post_bank": "",
        "bank_branch": "Park Street",
        "street": "Russel Street",
        "city": "KOLKATA",
        "swift_code": "",
        "region": "WB",
        "bank_name": "HSBC",
        "pobk_curac": "",
        "bank_group": "",
        "addr_no": ""
    // get a CSRF token if needed
    oModel.refreshSecurityToken();
    // add own callback code
    var oParams, fnSuccess, fnError, bUseMERGE;
    //PUT data back to server
    oModel.update(path, data, oParams, fnSuccess, fnError, bUseMERGE);
    Let us know how you get on
    hth
    jsp
    Message was edited by: John Patterson
    I really dislike the SCN editor, especially the way it re formats code so it cannot be read while writing

  • Problem while creating service PO using bapi_po_create1

    hi all,
        i am getting error :
    In case of account assignment, please enter acc. assignment data for item
    what does this mean?
    please help,,
    thanks,
    Siddhartha Prakash

    Hi Sid.
    I'm having this same problems on creating PO Service. Did you solve it? How did you do that?
    I'm using a PR and the Category is 'Y', and I cant find where is the problem.
    The tables that I'm passing to the BAPI_PO_CREATE1 are:
    POITEM/ POITEMX
    POACCOUNT/ POACCOUNTX
    POSERVICES
    POSRVACCESSVALUES
    Please, if you have any idea, let me know!
    Tks a lot!
    Renata

  • Problem: Z table data updates using SM30

    Hi,
    I have a requirement, while updating records in a Z table
    using SM30 Transaction.
    The Structure of the table is below:
    APMOD    Primary Key   Char(3)
    KONST    Primary Key   Char(20)
    ENDDA    Primary Key   DATS
    BEGDA    Non Key       DATS   
    and some other non key fields....
    Problem:  This table should act something like Infotype in HR.  I mean Delimition of Records while creating or changeing the existing record.
    Say there is a record
    APMOD = OGMT
    KONST = Organization Management
    BEGDA = 01/01/2004
    ENDDA = 12/31/9999
    Whenever i am Inserting a new record with key
    APMOD = OGMT and KONST = 'Organization Management'
    and BEGDA = '01/01/2006'.
    First it should update the old record with
    BEGDA = 01/01/2004 and ENDDA = 12/31/2005
    Then the new record needs to be inserted with
    BEGDA = 01/01/2006 and ENDDA = 12/31/9999.
    How can I achieve this using SM30? Can we write our own code somewhere? If yes Where and How?  Or is there any settings available for this requirement?
    I can write a Z program to update this Table, but i should achieve this using SM30 only.
    Let me know if you need any additional info. 
    Regards,
    Sudhakar.

    Hi Sudhakar,
    1. I tried the same at my end. It works fantastic !
       In  SM30 it shows
       'Delimit' Button
       'Expand <--> Collapse' Button.
        and accordingly delmits the records.
    2. in SE11,
       Use the menu
       Utilities ---> Table Maintenance Generator
       and finally build a table maintenance
       to use in SM30.
    3. When u use in SM30,
       u will achieve what u want.
    4. Just make sure your field
       ENDDA has the data element ENDDA
       in table definition.
      It should also be key.
    5. After this ENDDA column,
       there should be no other key column
      ( not even BEGDA)
    I Hope it helps.
    Regards,
    Amit M.

  • Problem in Conditions while using BAPI_PO_CREATE1

    Hi All
    I am using BAPI_PO_CREATE1 to create purchase Order. When I am changing calculation type for condition type's system not picking the correct amount through BAPI.
    For e.g. for condition type 'FRB1' (Freight Value) I have maintain the amount 10.00 in condition value for calculation type 'B' (fixed amount). But when I pass calculation type 'A' i.e. Percentage, BAPI overwrites the amount to 1.00%.
    I Want to pass the amount 10.00 as it is with calculation type '%'. Kindly suggest how to do it.
    Regards,
    Pradip

    Hi All
    I am using BAPI_PO_CREATE1 to create purchase Order. When I am changing calculation type for condition type's system not picking the correct amount through BAPI.
    For e.g. for condition type 'FRB1' (Freight Value) I have maintain the amount 10.00 in condition value for calculation type 'B' (fixed amount). But when I pass calculation type 'A' i.e. Percentage, BAPI overwrites the amount to 1.00%.
    I Want to pass the amount 10.00 as it is with calculation type '%'. Kindly suggest how to do it.
    Regards,
    Pradip

  • In Invoice header conditions pricing values updated as u201C0u201D

    Dear guruu2019s
    I am facing the below error can any please suggest me on the same.
    We have created the sales order with 3 line items and we have created 3 individual deliveries and 3 different invoices but for the 1st sales order line item we observed that at invoice level the pricing conditions are not updated at header level the values are u201C0u201D. But the same has been update at sales order level and rest off the 2 sale order (2&3) line items all the invoice has been updated properly.
    Dear guru can any one suggest what all reasons that will impact our header condition to update the values as 0
    Regards,
    Bhanu

    Dear Guru's
    This is in continuous of the above mail
    We observed that in the invoice item level in pricing tab Statistical values field has been updated as option Y- No cumulating- value can be used statistically. If the option is u2013 System will copy item to header totals then automatically the pricing values gets updated in the Header condition tab.
    Here my doubt is how system updates this value. If I would like to change the same it is in grayed out mode. Please suggest me the same
    Regards,
    Bhanu Prathap

  • I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add

    I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add APN. Now when i switch to safari its showing you are not subscribed for cellular data. But I am able to use data on other phone.
    Will you please help me in this regard?
    Another issue, since i bought my new iphone there is dust inside back main camera.
    Your advises are highly appreciated.

    Hey Shaiju isac,
    I'd take a look at the following article, it'll guide you though steps to you troubleshoot cellular data issues on your iPhone:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Cheers,
    David

  • PO prices and condition pricing date copied from previous PO using ME21N

    We have defined a default for buyers with the TAB Price Adoption - "copying of conditions from last purchase order" set to Do Not Copy. We have assigned this default via parameter EVO to all of our buyers. When creating a purchase order using transaction ME21N and creating based upon previous purchase order all of the previous purchase order pricing and the condition pricing date is copied over. Isn't this what the parameter is supposed to prevent?
    Any suggestions are appreciated.
    Brian

    No, copiing a complete PO is something different than creating a new PO where the price is usually taken from last PO if no price conditions are maintained in an info record.
    You prevent only the second case with EVO parameter.

  • I get an "unable to connect" message yet I can connect and use Internet Explorer with no problem. I tried updating to Firefox4 and still get the same message. What do I do?

    I get an "unable to connect" message yet I can connect and use Internet Explorer with no problem. I tried updating to Firefox4 and still get the same message. What do I do?

    JungleTaxi Cabbie wrote:
    Csound1: iCloud: Configuring Mail with Mac OS X v10.6 or iOS 4
    Enter your Incoming Mail Server, User Name, and Password using the following settings:
    Incoming Mail Server: mail.me.com
    User Name: Your iCloud email address (excluding @me.com)
    Password: Your password
    Last Modified: Jun 27, 2013
    Maybe you should test these things before calling people out, because these settings do function perfectly well.
    iCloud is not supported on Snow Leopard or lower, why bother to mention it?
    The OP has an iCloud account, and that can not be opened without Lion or Mountain Lion (on a Mac), IOS5 or 6 (on an iPhone/iPad)
    The document I linked to is Apples documentation for iCloud on current devices,I don't care whether you believe that you know better than they do, but it will affect the people who follow your advice as it won't work
    JungleTaxi Cabbie wrote:
    Also, if you're not running Lion or Mountain Lion, there is no "Mail, Contacts & Calendars" prefpane.
    I never said that there was, perhaps you imagined it.

  • Issue on condition value after creating PO using bapi_po_create1

    Hi ,
    I am passing condition value as 45.55  to Create PO using bapi_po_create1,
    but after Creating PO, But Condition Value reflecting ME23N as   4,555.00.
    Kindly Provide any solution if you have

    Hi ,
    I am passing condition value as 45.55  to Create PO using bapi_po_create1,
    but after Creating PO, But Condition Value reflecting ME23N as   4,555.00.
    Kindly Provide any solution if you have

  • TS1398 Ever since the last update, my IPad does not automatically get connected to our WiFi. Never had any problems until this last update. Is there any repair?? Its going on 2 years old and does not use the

    If I go into settings and physically touch the WiFi that has been used since his was new than after waiting for 2 to 3 min it finally goes on line. I never had any problems until this last update. It always went on line automatically with out having to go into settings. Just a pain. Once I do this it usually stays on line.

    Tap Settings > General > Reset > Reset Network Settings
    You will have to re enter your Wi-Fi password.
    If that didn't help, try here > iOS: Troubleshooting Wi-Fi networks and connections

  • Is there going to be an update to fix the problem of cropping photos to use as wallpapers?

    is there going to be an update to fix the problem of cropping photos to use as wallpapers?

    There is no "voicemail bug".  Mine works just fine.
    Try resetting your iPhone.  Hold the on/off and home buttons together for about 10 seconds till the Apple logo appears.  You will not lose any data.

  • I have used Pages 09 and Keynote without any major problems until this new update. I have read many of the fixes but have a problem. When you get Pages 09 and Keynote back, Apples continues to want to update the 09 system. So it stays updated.

    I have used Pages 09 and Keynote without any major problems until this new update. I have read many of the fixes but have a problem. When you get Pages 09 and Keynote back, Apples continues to want to update the 09 system. So it stays updated. I have had to turn off my auto updating that was nice but I'll do it one at a time in order to keep the Pages 09 and Keynote. When something works don't mess with it. Any fixes out there?

    I can't say that I have had a problem playing videos in Flash because I could always play them in browsers other than Firefox.
    In Firefox Tools>options>Advanced Hardware acceleration is turned on.
    I don't know if that is different that tuning it off and on in Flash or not, but for now it is a moot point.
    As I stated in my previous message, after following all earlier suggestions/instructions nothing helped. But The latest one, someone suggested that maybe version 17 of Flash might be a stable version.
    I made no other changes except to install it, a few days ago, and so far so good.
    Many thanks for your help,
    Giovanni

  • Problem in posting Custom fields in Purchase Order using BAPI_PO_CREATE1

    Hi friends,
    Did any body tried populating custom fields using BAPI_PO_CREATE1?
    I am trying to populate custom fields in Header.
    I am populating EXTENSIONIN-STRUCTURE with 'BAPI_TE_MEPOHEADER' and EXTENSIONIN-VALUEPART1 with respective values of fields using the code below.
    T_CUSTDATA_IN-PROJECT_ID_NUM = '543211'.
    T_CUSTDATA_INX-PROJECT_ID_NUM = 'X'.
    MOVE 'BAPI_TE_MEPOHEADER' TO T_EXTENSIONIN-STRUCTURE.
    *CLEAR T_BAPI_TE_PO_HEADER-PO_NUMBER.
    MOVE-CORRESPONDING T_CUSTDATA_IN TO T_BAPI_TE_MEPOHEADER.
    MOVE 'T_BAPI_TE_MEPOHEADER' TO T_EXTENSIONIN-VALUEPART1.
    APPEND T_EXTENSIONIN.
    MOVE 'BAPI_TE_MEPOHEADERX' TO T_EXTENSIONIN-STRUCTURE.
    *CLEAR T_BAPI_TE_PO_HEADER-PO_NUMBER.
    MOVE-CORRESPONDING T_CUSTDATA_INX TO T_BAPI_TE_MEPOHEADERX.
    MOVE 'T_BAPI_TE_MEPOHEADERX' TO T_EXTENSIONIN-VALUEPART1.
    APPEND T_EXTENSIONIN.
    But still it is not populating the custom fields.
    Can some body help me on this?
    Thanks & Regards,
    Ramesh Kodavati

    Hi,
    You require to implement the Badi ME_BAPI_PO_CUST
                                               Method MAP2I_EXTENSIONIN or INBOUND
    for changing the parameter CH_EXTENSIONIN in method INBOUND
                                       or  CH_STRUC in method MAP2I_EXTENSIONIN.
    in addition to passing the extensionin parameters in bapi.
    implement the above said bapi and put a break point in both of the methods (exactly i don't remember)
    and check values are populating in the CH_STRUC structure.
    Regards,
    Dwaraka.S

Maybe you are looking for

  • Report to check org units without any position display

    Dear All, I want a report which i can see only the org units in a graphical way. When i am checking through Simple maintainence mode I am getting org units along with positions also with in the graphical mode i have selected the view option under opt

  • Re: Satellite U300 - Optical drive no longer registers after prog uninstall

    Hi, I recently uninstalled a programme for a DV camera on my Satellite U300. After the uninstall, I am no longer able to use the optical drive. If I put a cd/dvd into the drive it will 'fire up' however it will not register with the laptop to enable

  • How to  Populate Values from ECC  to SAP SRM

    Hi Freinds, we have  two custom fields in Purchase Requisation  ( ECC ), my requirement is to  same fields i want to create in SC Item Tab, i have included in tem Tab, but now i want to populate the values from ECC  to SRM, can any give me idea how t

  • Not recognizing previously purchased ipad apps

    Hello, I'm having all sorts of problems. I purchased Catan HD for my Ipad a few days ago, and did it by downloading to Itunes then syncing with the Ipad along with several other apps. Well, Catan HD had several in app options that I wanted to purchas

  • Clprivnet0

    Upgraded six node cluster to Sun Cluster 08/05. clprivnet0 magically appeared out of nowhere. Each node assigned clprivnet0 as ether address of 00:00:00:00:00:<nodeid> and 172.16.193.<nodeid> For example...... clprivnet0: flags=1009843<UP,BROADCAST,R