How to upload material text  in mm02 using bdc table control

i have problem to upload material Description in mm02 using bdc.
my text file is like
2000251     AF     A12345               
2000251     AR     B12345               
2000251     BG     C12345               
2000252     AF     F12345               
2000252     AR     G12345               
2000252     AF     H12345     
i want to upload material number, language, and material description, how can i upload pls help me.

Hi,
Try with bapi , bapi_material_save_data.. didn't exactly remember it,Please check the same.
Regards,
Nagaraj

Similar Messages

  • Upload Material Text in MM02

    Hi ,
    I want to Uplaod Material text in MM02 . Around more than upto 2000 materials.
    i m trying to uplaod using call function 'CREATE_TEXT'. But it gives error in mm02 like, no text maintained.
    give me proper solution,
    thnxs
    Regards,
    Swapnil Vaidya

    Swapnil
    Check whether you are passing correct Text ID, Text Object and Text Name to the function module..
    Thanks
    Amol Lohade

  • Upload material description in mm02

    i want to upload material description in mm02 using bdc but i dont know how to upload it. Moderator Message: This is not a training forum and we cant help you there
    my text file is like
    2000251 AF A12345
    2000251 AR B12345
    2000251 BG C12345
    2000252 AF F12345
    2000252 AR G12345
    2000252 AF H12345
    in same material number there r more then one text then how can i upload .
                                  'SKTEXT-MAKTX(02)'.
    clear  COUNTER.
    counter  = 1.
    LOOP AT IT_TAB INTO WA_TAB WHERE MATNR = WA_ITAB-MATNR.
    counter = counter  + 1.
         CONCATENATE 'MAKT-SPRAS(0' COUNTER ')' INTO V_CHAR. "(02)
          PERFORM BDC_FIELD       USING V_CHAR
                                        WA_TAB-SPRAS.
          CLEAR V_CHAR.
         CONCATENATE 'MAKT-MAKTX(0' COUNTER ')' INTO V_CHAR. "(02)
         perform bdc_field       using V_CHAR
                                  WA_TAB-MAKTX.
    *perform bdc_field       using 'SKTEXT-SPRAS(02)'
                                 'AF'.
    *perform bdc_field       using 'SKTEXT-SPRAS(03)'
                                 'BG'.
    *perform bdc_field       using 'SKTEXT-SPRAS(04)'
                                 'CS'.
    *perform bdc_field       using 'SKTEXT-MAKTX(02)'
                                 'avani'.
    *perform bdc_field       using 'SKTEXT-MAKTX(03)'
                                 'avani1'.
    *perform bdc_field       using 'SKTEXT-MAKTX(04)'
                                 'avani2'.
    clear wa_tab.
    ENDLOOP.
    Edited by: kishan P on Nov 13, 2010 2:32 PM

    in mm02 Basic Data -> additional data -> material description and language
    i want to upload language and material description

  • How to upload PO text of material master ?

    dear gurus,
    how to upload PO text in material master in mass , can i use LSMW or BDC ? if yes then how?
    I have done the recording but LSMW is not working for PO text.
    Upesh khairnar.

    Hi!
    try using Purchasing Inforecord for this. in here you maintain master data linkage for Material Master and Vendor Master. You will just have to input the Material Number, the Vendor Account, and the Purchasing Org. In here you can maintain the PO text defaulted per Material Number. After the maintenance of Inforecord, the PO text will be reflected on the PO document.
    Here is the ff Transaction Code:
    - ME11 (Create Inforecord)
    - ME12 (Change Inforecord)
    - ME13 (Display Inforecord)
    Hope this helps, Thank you.
    Mik

  • How to upload a text file from a shared folder and provide an o/p

    how to upload a text file from a shared folder and provide an o/p  containing the details in each order in the text file

    Hi,
    Use <b>GUI_UPLOAD</b> to upload a text file from a shared folder.
    Use <b>GUI_DOWNLOAD</b> to download data in a file on the presentation server or use <b>OPEN DATASET, TRANSFER</b> and <b>CLOSE DATASET</b> statements to download data to the application server.
    Now, I hope the code for data fetching, if required, is already present in the report.
    Reward points if the answer is helpful.
    Regards,
    Mukul

  • How to upload Excel file in BI using function module in abap program

    How to upload Excel file in BI using function module in abap program?

    Hi Anuj,
    To upload the file , you can try a standard program "RSEPSFTP" .
    while you execute the program , a selection screen appears in which the inputs should be give as
    RFC destination - The target server name
    FTP command- PUT
    local file - your file name
    local directory - path of your local file
    remote file - your target file name
    remote directory - where it has to be stored
    Hope this is useful for you
    Thanks & regards
    Anju

  • How to upload a text in .pdf to convert it?

    How to upload a text in .pdf to convert it?

    How to upload a text in .pdf to convert it?

  • How to upload a file into server using j2ee jsp and servlet with bean?

    How to upload a file into server using j2ee jsp and servlet with bean? Please give me the reference or url about how to do that. If related to struts is more suitable.
    Anyone help me please!

    u don't need j2ee and struts to do file uploading. An example is as such
    in JSP. u use the <input> file tag like
    <input type="file"....>You need a bean to capture the file contents like
    class FileUploadObj {
        private FormFile srcFile;
        private byte[] fileContent;
        // all the getter and setter methods
    }Then in the servlet, you process the file for uploading
        * The following loads the uploaded binary data into a byte Array.
        FileUploadObj form = new FileUploadObj();
        byte[] byteArr = null;
        if (form.signFile != null) {
            int filesize = form.srcFile.getFileSize();
            byteArr = new byte[filesize];
            ByteArrayInputStream bytein = new ByteArrayInputStream (form.srcFile.getFileData());
            bytein.read(byteArr);
            bytein.close();
            form.setFileContent(byteArr);
        // Write file content using Writer class into the destination file in the server.
        ...

  • How to validate an text field item using javascript for numbers only.

    hi,
    how to validate an text field item using javascript for numbers only.please help me on this urgent
    please mail me solun if posible on [email protected]

    Hi,
    Page HTML header
    <script>
    function onlyNum(evt) {
      // Usage: onKeyPress="return onlyNum(event)"
      evt = (evt) ? evt : window.event;
      var charCode = (evt.which) ? evt.which : evt.keyCode;
      if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        var status = 'This field accepts numbers only!';
        alert(status);
        return false;
      var status = '';
      return true;
    </script>Item HTML Form Element Attributes
    onKeyPress="return onlyNum(event)"Br,Jari

  • Hi..how we enter standard text for smartform using include text

    hi
    guru
    ..how we enter standard text for smartform using include text..
    i know only using so10 we write text..
    in smartform it asking text-object
                                     text-id,
    so what values we should give to get text

    Hi,
       Do u want to print Standard Text or the Texts that are maintained at the Transaction level.
    If it is standard text , then u use text id as ST or if it is Texts that are maintained at the Transaction level then u have to go to that specific transaction and check for that text , then go to text editor ,in the goto menu u have header data where u get the Text id , text name.... , use them in ur smartform in the INCLUDE text.
    Further u have the option of text modules in smartforms which act as standard texts, so if u r going for creation of standard texts then its better to use text modules.
    Regards,
    Shafivullah Mohammad

  • How to upload the text file into smart forms

    Hi Experts,
    can any one tell me that how to upload  the text file or html file to SAP Script form or smart forms
    i have download the form info from SAPscript form.to text file.
    now i want to upload the text file to smartforms.
    is it possible ? if it is possible, then how can i do that ?
    Thanks in Advance.
    Regards,
    Mani

    <b>For Scripts</b>
    Go to SE38. Put in the program name RSTXSCRP. Execute it.
    Mode(Export/Import) : Import.
    Give the file name from which you want to upload and execute it.
    <b>For Smartforms</b>
    TCode : smartforms.
    Give the form name.
    Utilities-->Upload form.
    Reward points if helpful.
    Thanks
    Aneesh.

  • How to Upload XSD into MDS by using WLST/ANT only

    Hi,
    Can anyone help me out how to upload an XSD into MDS using WLST/ANT only (Not JDEV)
    Please help me out its urgent
    Edited by: 943121 on Dec 28, 2012 8:11 AM

    If you are using AIA, then you will have MDS deployment scripts. Check this link for details - http://docs.oracle.com/cd/E23549_01/doc.1111/e17361/ch18.htm#BABGHIGG
    If not AIA, then you need to build custom ant scripts which will use the api "com.soamds.util.MdsImportTask" for mds deploy and "com.soamds.util.MdsDeleteTask" for mds undeploy.
    Hope this helps.
    -Sriharish.

  • Uploading Different types of materials using BDC

    Hello Guyz,
    Could anyone please explain, How do you take care of uploading different types of Materials using BDC?
    There will be lot of Materials in my Flatfile of different Types, say Raw Material(ROH), Semi Finished Materials(HALB) , Finished Goods (FERT) and so on.
    How do you take care of the upload for different material types.
    Regards,
    Sudhir

    Hi,
      First take all fielsds in one itab,three recordings.
    Put the condition,
    If MTART = 'ROH'.
       send those fields in to another itab.
    append the itab.
    elseif mtart = 'HALB'.
       send those fields into itab1.
    append itab1.
    elseif mtart = 'FERT'.
    send those fields into itab2.
    append itab2.
    endif.
    if  not itab[] is initial.
    loop the itab
        here  ur performs
    endloop.
    endif.
    if not itab1 is initial.
    loop the itab1.
    performs.
    endloop.
    endif.
    if not itab2 is intial.
    loop the itab2.
    performs.
    endloop.
    endif.
    if it is helpful  give me the points

  • BDC table control using Excel sheet upload

    Hi All,
    I am working BDC table control.I want to upload the From excel sheet.I am using the FM ALSM_EXCEL_TO_INTERNAL_TABLE to upload the the data into my internal table.The data is populating in the internal table.
    Now i have problem tat how to populate this excel sheet data to the Bdc table control.
    Can nybody help me out.\[removed by moderator\]
    Thanks,
    Swapna.
    Edited by: Jan Stallkamp on Jul 25, 2008 10:57 AM

    after fetching data from EXCEL sheet, each column data (in excel sheet) will be uploaded to individual record into your internal table along with row number and column number, loop through that internal table and collect all your excel data into record format.pls refer the below code.
    data:
         i_excel    type alsmex_tabline occurs 0 with header line,
         l_row      type i value 1.
    data:
         begin of x_data occurs 0,
                kunnr     like RF02L-KUNNR,
                klimk(17) type c,
                CTLPC     like knkk-CTLPC,
          end  of x_data,
          begin of x_data1 occurs 0,
                data(106),
          end   of x_data1.
    call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'
       exporting
         filename                      = p_fname
         i_begin_col                   = 1
         i_begin_row                   = 1
         i_end_col                     = no.of columns in your excel file
         i_end_row                     = no.of rows in your file
       tables
         intern                        = i_excel.
    if sy-subrc = 0.
       loop at i_excel.
         if l_row <> i_excel-row.
            append x_data.
            clear x_data.
         endif.
         case i_excel-col.
            when 1.
              x_data-kunnr = i_excel-value.
            when 2.
              x_data-klimk = i_excel-value.
            when 3.
              x_data-CTLPC = i_excel-value.
         endcase.
         l_row = i_excel-row.
         clear i_excel.
         at last.
            append x_data.
         endat.
       endloop.
    endif.
    then loop through the internal table X_DATA, pass the data to your table control like.
    tbl_control-field1(1) = x_data-field1.
    tbl_control-field2(1) = x_data-field2.
    tbl_control-fieldn(1) = x_data-fieldn.
    Regards,
    Sreeram.

  • How to create a master detail form using single table

    Hi,
    how to create a master detail form using single table.
    Regards,
    M. Satish

    Hi
    how to create a master detail form using single table.Make the Master ur pks the details the rest of ur data base field in the detail it's a mater of organizing fields on a form M-Detail...
    Now What ?
    Regards,
    Amatu Allah

Maybe you are looking for