<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: bdc program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337743#M1991958</link>
    <description>&lt;P&gt;It seems that you didn't understand my answer. For batch input, you must only pass text fields, never numeric fields. So convert numeric fields to text fields. WA_PRP-MRP is numeric. TEXT is text. For instance:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA text TYPE c LENGTH 100.
WRITE wa_prp-mrp TO text.
perform bdc_field using 'MARC-DISMM' text.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 11 Mar 2021 18:46:59 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2021-03-11T18:46:59Z</dc:date>
    <item>
      <title>bdc program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337739#M1991954</link>
      <description>&lt;H3&gt;Error during conversion - field type conflict (see long text)&lt;/H3&gt;
  &lt;P&gt;Message no. UX899&lt;/P&gt;
  &lt;H3&gt;Diagnosis&lt;/H3&gt;
  &lt;P&gt;The sending and receiving fields have conflicting types. The receiving field has type &lt;STRONG&gt;P&lt;/STRONG&gt;. Value &lt;STRONG&gt;MARC-DISMM&lt;/STRONG&gt; was supposed to be transferred to this field, but this conflicts with the type definition for the receiving field.&lt;/P&gt;
  &lt;P&gt;The incorrect field is field &lt;STRONG&gt;1&lt;/STRONG&gt; of the receiver structure. Record &lt;STRONG&gt;22&lt;/STRONG&gt; of the input file contains an error.&lt;/P&gt;
  &lt;H3&gt;System Response&lt;/H3&gt;
  &lt;P&gt;Conversion to the SAP format is terminated.&lt;/P&gt;
  &lt;H3&gt;Procedure&lt;/H3&gt;
  &lt;P&gt;Correct the data in the input file.&lt;/P&gt;
  &lt;P&gt;can you please help me to slovet his problem.&lt;/P&gt;
  &lt;P&gt;report ZMM_MATERIAL1&lt;/P&gt;
  &lt;P&gt; no standard page heading line-size 255.&lt;BR /&gt;&lt;BR /&gt;type-pools truxs.&lt;BR /&gt;&lt;BR /&gt;data : it_bdcdata type table of bdcdata,&lt;BR /&gt; wa_bdcdata type bdcdata,&lt;BR /&gt; it_messtab type table of bdcmsgcoll,&lt;BR /&gt; wa_messtab type bdcmsgcoll.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data : ls_bdcdata type bdcdata.&lt;BR /&gt;&lt;BR /&gt;data : p_mode type ctu_params-dismode value 'E'.&lt;BR /&gt;&lt;BR /&gt;data : name(100) type c.&lt;BR /&gt;data : it_type type truxs_t_text_data.&lt;BR /&gt;&lt;BR /&gt;types : begin of ty_bdc,&lt;BR /&gt; materialno TYPE rmmg1-matnr,&lt;BR /&gt; industrysector TYPE rmmg1-mbrsh,&lt;BR /&gt; materialtype TYPE rmmg1-mtart,&lt;BR /&gt; plant TYPE rmmg1-werks,&lt;BR /&gt; storageloc TYPE rmmg1-lgort,&lt;BR /&gt; salesorg TYPE rmmg1-vkorg,&lt;BR /&gt; distributionchannel TYPE rmmg1-vtweg,&lt;BR /&gt; materialdes TYPE makt-maktx,&lt;BR /&gt; uom TYPE mara-meins,&lt;BR /&gt; materialgrp TYPE mara-matkl,&lt;BR /&gt; generalitem TYPE mara-MTPOS_MARA,&lt;BR /&gt; weightunit TYPE mara-gewei,&lt;BR /&gt; cashdis TYPE mvke-sktof,&lt;BR /&gt; tax TYPE MG03STEUER-TAXKM,&lt;BR /&gt; purchasegrp TYPE marc-ekgrp,&lt;BR /&gt; mrp TYPE marc-dismm,&lt;BR /&gt; valuationclass TYPE mbew-bklas,&lt;BR /&gt; priceunit TYPE mbew-peinh,&lt;BR /&gt; movingavg TYPE mbew-verpr,&lt;BR /&gt; checkinggrp TYPE marc-mtvfp,&lt;BR /&gt; transportationgrp TYPE mara-tragr,&lt;BR /&gt; loadinggrp TYPE marc-ladgr,&lt;BR /&gt; END OF ty_bdc.&lt;BR /&gt;&lt;BR /&gt;DATA : it_prp TYPE TABLE OF ty_bdc,&lt;BR /&gt; wa_prp TYPE ty_bdc.&lt;BR /&gt;&lt;BR /&gt;data : it_raw type truxs_t_text_data.&lt;BR /&gt;&lt;BR /&gt;selection-screen begin of block a1 with frame title text-001.&lt;BR /&gt;parameter : p_prp type rlgrap-filename.&lt;BR /&gt;selection-screen end of block a1.&lt;BR /&gt;&lt;BR /&gt;at selection-screen on value-request for p_prp.&lt;BR /&gt;&lt;BR /&gt;call function 'F4_FILENAME'&lt;BR /&gt; exporting&lt;BR /&gt; field_name = 'P_FILE'&lt;BR /&gt; importing&lt;BR /&gt; file_name = p_prp.&lt;BR /&gt;&lt;BR /&gt;start-OF-SELECTION.&lt;BR /&gt;&lt;BR /&gt;call function 'TEXT_CONVERT_XLS_TO_SAP'&lt;BR /&gt; exporting&lt;BR /&gt; i_line_header = 'X'&lt;BR /&gt; i_tab_raw_data = it_type&lt;BR /&gt; i_filename = p_prp&lt;BR /&gt; tables&lt;BR /&gt; i_tab_converted_data = it_prp&lt;BR /&gt; exceptions&lt;BR /&gt; conversion_failed = 1&lt;BR /&gt; others = 2 .&lt;BR /&gt;&lt;BR /&gt; if sy-subrc ne 0.&lt;BR /&gt; message id sy-msgid&lt;BR /&gt; type sy-msgty&lt;BR /&gt; number sy-msgno&lt;BR /&gt; with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;BR /&gt; endif.&lt;BR /&gt;&lt;BR /&gt;loop at it_prp INTO wa_prp.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '0060'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'RMMG1-MTART'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '=AUSW'.&lt;BR /&gt;perform bdc_field using 'RMMG1-MBRSH'&lt;BR /&gt; wa_prp-industrysector.&lt;BR /&gt;perform bdc_field using 'RMMG1-MTART'&lt;BR /&gt; wa_prp-materialtype.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '0070'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MSICHTAUSW-DYTXT(12)'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(01)'&lt;BR /&gt; 'X'.&lt;BR /&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(04)'&lt;BR /&gt; 'X'.&lt;BR /&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(09)'&lt;BR /&gt; 'X'.&lt;BR /&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(12)'&lt;BR /&gt; 'X'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '0070'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MSICHTAUSW-DYTXT(01)'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '0070'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MSICHTAUSW-DYTXT(01)'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '0070'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MSICHTAUSW-DYTXT(12)'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '=ENTR'.&lt;BR /&gt;perform bdc_field using 'MSICHTAUSW-KZSEL(12)'&lt;BR /&gt; 'X'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '0080'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'RMMG1-VTWEG'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '=ENTR'.&lt;BR /&gt;perform bdc_field using 'RMMG1-WERKS'&lt;BR /&gt; wa_prp-plant.&lt;BR /&gt;perform bdc_field using 'RMMG1-LGORT'&lt;BR /&gt; wa_prp-storageloc.&lt;BR /&gt;perform bdc_field using 'RMMG1-VKORG'&lt;BR /&gt; wa_prp-salesorg.&lt;BR /&gt;perform bdc_field using 'RMMG1-VTWEG'&lt;BR /&gt; wa_prp-distributionchannel.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4004'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; wa_prp-materialdes.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MARA-MATKL'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; wa_prp-uom.&lt;BR /&gt;perform bdc_field using 'MARA-MATKL'&lt;BR /&gt; wa_prp-materialgrp.&lt;BR /&gt;perform bdc_field using 'MARA-MTPOS_MARA'&lt;BR /&gt; wa_prp-generalitem.&lt;BR /&gt;perform bdc_field using 'MARA-GEWEI'&lt;BR /&gt; wa_prp-weightunit.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARA-MATKL'&lt;BR /&gt; '00104'.&lt;BR /&gt;perform bdc_field using 'MVKE-SKTOF'&lt;BR /&gt; wa_prp-cashdis.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MG03STEUER-TAXKM(02)'.&lt;BR /&gt;perform bdc_field using 'MG03STEUER-TAXKM(01)'&lt;BR /&gt; wa_prp-tax.&lt;BR /&gt;perform bdc_field using 'MG03STEUER-TAXKM(02)'&lt;BR /&gt; wa_prp-tax.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4200'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MG03STEUER-TAXKM(03)'.&lt;BR /&gt;perform bdc_field using 'MG03STEUER-TAXKM(03)'&lt;BR /&gt; wa_prp-tax.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MAKT-MAKTX'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARA-MATKL'&lt;BR /&gt; '00104'.&lt;BR /&gt;perform bdc_field using 'MVKE-SKTOF'&lt;BR /&gt; 'X'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MARC-EKGRP'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARC-EKGRP'&lt;BR /&gt; wa_prp-purchasegrp.&lt;BR /&gt;perform bdc_field using 'MARA-MATKL'&lt;BR /&gt; '00104'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARC-EKGRP'&lt;BR /&gt; 'P01'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MARC-DISMM'.&lt;BR /&gt;perform bdc_field using 'MARC-DISMM'&lt;BR /&gt; wa_prp-mrp.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MBEW-VERPR'.&lt;BR /&gt;perform bdc_field using 'MBEW-BKLAS'&lt;BR /&gt; wa_prp-valuationclass.&lt;BR /&gt;perform bdc_field using 'MBEW-PEINH'&lt;BR /&gt; wa_prp-priceunit.&lt;BR /&gt;perform bdc_field using 'MBEW-VERPR'&lt;BR /&gt; wa_prp-movingavg.&lt;BR /&gt;perform bdc_dynpro using 'SAPLSPO1' '0300'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '=YES'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARA-GEWEI'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARC-MTVFP'&lt;BR /&gt; wa_prp-checkinggrp.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MARC-LADGR'.&lt;BR /&gt;perform bdc_field using 'MARA-TRAGR'&lt;BR /&gt; wa_prp-transportationgrp.&lt;BR /&gt;perform bdc_field using 'MARC-LADGR'&lt;BR /&gt; wa_prp-loadinggrp.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MAKT-MAKTX'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARC-EKGRP'&lt;BR /&gt; 'P01'.&lt;BR /&gt;perform bdc_field using 'MARA-MATKL'&lt;BR /&gt; '00104'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MAKT-MAKTX'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MARC-EKGRP'&lt;BR /&gt; 'P01'.&lt;BR /&gt;perform bdc_field using 'MARC-DISMM'&lt;BR /&gt; 'ND'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLMGMM' '4000'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '/00'.&lt;BR /&gt;perform bdc_field using 'BDC_CURSOR'&lt;BR /&gt; 'MAKT-MAKTX'.&lt;BR /&gt;perform bdc_field using 'MAKT-MAKTX'&lt;BR /&gt; 'bdc rec1'.&lt;BR /&gt;perform bdc_field using 'MARA-MEINS'&lt;BR /&gt; 'KG'.&lt;BR /&gt;perform bdc_field using 'MBEW-BKLAS'&lt;BR /&gt; '7920'.&lt;BR /&gt;perform bdc_field using 'MBEW-PEINH'&lt;BR /&gt; '1'.&lt;BR /&gt;perform bdc_field using 'MBEW-VERPR'&lt;BR /&gt; '10.00'.&lt;BR /&gt;perform bdc_dynpro using 'SAPLSPO1' '0300'.&lt;BR /&gt;perform bdc_field using 'BDC_OKCODE'&lt;BR /&gt; '=YES'.&lt;BR /&gt;*perform bdc_transaction using 'MM01'.&lt;BR /&gt;&lt;BR /&gt; call transaction 'MM01' using it_bdcdata mode 'A' update 'S'.&lt;BR /&gt; clear :it_bdcdata.&lt;BR /&gt; clear :wa_prp.&lt;BR /&gt;ENDLOOP.&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp; Form BDC_DYNPRO&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;* text&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;* --&amp;gt;P_0244 text&lt;BR /&gt;* --&amp;gt;P_0245 text&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;form BDC_DYNPRO using program dynpro.&lt;BR /&gt; clear ls_bdcdata.&lt;BR /&gt; ls_bdcdata-program = program.&lt;BR /&gt; ls_bdcdata-dynpro = dynpro.&lt;BR /&gt; ls_bdcdata-dynbegin = 'X'.&lt;BR /&gt; append ls_bdcdata to it_bdcdata.&lt;BR /&gt;endform.&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp; Form BDC_FIELD&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;* text&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;* --&amp;gt;P_0249 text&lt;BR /&gt;* --&amp;gt;P_0250 text&lt;BR /&gt;*-------------------------------------------------------*&lt;BR /&gt;form BDC_FIELD using fnam fval.&lt;BR /&gt; if fval &amp;lt;&amp;gt; ''.&lt;BR /&gt; clear ls_bdcdata.&lt;BR /&gt; ls_bdcdata-fnam = fnam.&lt;BR /&gt; ls_bdcdata-fval = fval.&lt;BR /&gt; append ls_bdcdata to it_bdcdata.&lt;BR /&gt; clear ls_bdcdata.&lt;BR /&gt; endif.&lt;BR /&gt;endform. " BDC_FIELD&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337739#M1991954</guid>
      <dc:creator>former_member661105</dc:creator>
      <dc:date>2021-03-10T09:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337740#M1991955</link>
      <description>&lt;P&gt;please answer it&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 10:18:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337740#M1991955</guid>
      <dc:creator>former_member661105</dc:creator>
      <dc:date>2021-03-10T10:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337741#M1991956</link>
      <description>&lt;P&gt;You must pass only texts to screen fields.&lt;/P&gt;&lt;P&gt;A number is a text with numeric digits and optionally a decimal point and a sign.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA text TYPE c LENGTH 10.&lt;BR /&gt;DATA dismm TYPE marc-dismm VALUE '27.5'.&lt;BR /&gt;WRITE dismm TO text.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Mar 2021 14:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337741#M1991956</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-03-10T14:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337742#M1991957</link>
      <description>&lt;P&gt;At which place we have to write the coding&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATAtextTYPEcLENGTH10.&lt;BR /&gt;DATA dismm TYPE marc-dismm VALUE'27.5'.&lt;BR /&gt;WRITE dismm TOtext.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Mar 2021 15:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337742#M1991957</guid>
      <dc:creator>former_member661105</dc:creator>
      <dc:date>2021-03-10T15:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337743#M1991958</link>
      <description>&lt;P&gt;It seems that you didn't understand my answer. For batch input, you must only pass text fields, never numeric fields. So convert numeric fields to text fields. WA_PRP-MRP is numeric. TEXT is text. For instance:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA text TYPE c LENGTH 100.
WRITE wa_prp-mrp TO text.
perform bdc_field using 'MARC-DISMM' text.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Mar 2021 18:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program/m-p/12337743#M1991958</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-03-11T18:46:59Z</dc:date>
    </item>
  </channel>
</rss>

