<?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: bdcdata in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328059#M511847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Your answers &lt;/P&gt;&lt;P&gt;1) Structure of BDC data is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM : Name of the program associated with screen.&lt;/P&gt;&lt;P&gt;DYNPRO : Number of screen.length(4). set this for the first record for the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DYNBEGIN: indicates the first record for the screen.Length(1).&lt;/P&gt;&lt;P&gt;set this field to X only for the first record i.e it indicates that it is Start of a new screen number&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FNAM : name of the field.Length(35).&lt;/P&gt;&lt;P&gt;FVAL : value of the field. length(132).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) how 'X' is realted to bdc_data-dynbegin ? (&amp;lt;b&amp;gt;Answer is marked in bold above&amp;lt;/b&amp;gt;)&lt;/P&gt;&lt;P&gt;Mark if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tushar Mundlik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 08:34:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T08:34:39Z</dc:date>
    <item>
      <title>bdcdata</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328058#M511846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;       Could you please explain me this BDC program logic flow?&lt;/P&gt;&lt;P&gt;data : begin of bdc-data occurs 100.&lt;/P&gt;&lt;P&gt;              include structure bdcdata.&lt;/P&gt;&lt;P&gt;data ; end of bdc_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform dynro using : &lt;/P&gt;&lt;P&gt;'X' 'SAPLMGMW' '0100',&lt;/P&gt;&lt;P&gt;'' ' 'bdc_cursor' 'msichtausw-dytxt(07)',&lt;/P&gt;&lt;P&gt;' ' rmmw-matnr' p_matnr, (~user input)&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;call transaction 'mm42' using bdc_data mode 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form dynpro using dynbegin name value.&lt;/P&gt;&lt;P&gt;    clear bdc_data.&lt;/P&gt;&lt;P&gt;    if dynbegin eq 'X',&lt;/P&gt;&lt;P&gt;        move: name to bdc_data-program,&lt;/P&gt;&lt;P&gt;                  value to bdc_data-dynpro,&lt;/P&gt;&lt;P&gt;                   'X' to bdc_data-dynbegin.&lt;/P&gt;&lt;P&gt;   else.&lt;/P&gt;&lt;P&gt;   move : name to bdc_data-program,&lt;/P&gt;&lt;P&gt;              value to bdc_data-fval.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;   append bdc_data.&lt;/P&gt;&lt;P&gt;end form.&lt;/P&gt;&lt;P&gt;        My main concerns is what is the structure of bdcdata and how 'X' is realted to bdc_data-dynbegin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Will reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328058#M511846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: bdcdata</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328059#M511847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Your answers &lt;/P&gt;&lt;P&gt;1) Structure of BDC data is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM : Name of the program associated with screen.&lt;/P&gt;&lt;P&gt;DYNPRO : Number of screen.length(4). set this for the first record for the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DYNBEGIN: indicates the first record for the screen.Length(1).&lt;/P&gt;&lt;P&gt;set this field to X only for the first record i.e it indicates that it is Start of a new screen number&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FNAM : name of the field.Length(35).&lt;/P&gt;&lt;P&gt;FVAL : value of the field. length(132).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) how 'X' is realted to bdc_data-dynbegin ? (&amp;lt;b&amp;gt;Answer is marked in bold above&amp;lt;/b&amp;gt;)&lt;/P&gt;&lt;P&gt;Mark if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tushar Mundlik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328059#M511847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: bdcdata</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328060#M511848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;in BDC, we can perform validations on legacy data by using MAPPING logic.&lt;/P&gt;&lt;P&gt;in mapping logic we use structure having name BDCDATA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;fields of BDCDATA structure are....&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BDCDATA-program-----&amp;gt; means module pool program which we r used in BDC.&lt;/P&gt;&lt;P&gt;BDCDATA-dynpro-------&amp;gt; means currentl active screen, for which screen we are  &lt;/P&gt;&lt;P&gt;                                    going to pass data.&lt;/P&gt;&lt;P&gt;BDCDATA-dynbegin----&amp;gt; means is the initial or default screen,default vale for this &lt;/P&gt;&lt;P&gt;                                    field is 'X'.&lt;/P&gt;&lt;P&gt;BDCDATA-fnam----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt; field name which we are used in validations.&lt;/P&gt;&lt;P&gt;BDCDATA-fval----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt;field value which we are used in validations&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the BDCADAT table comntains records, which are supported by SAP data type, form this table we pass data into data base tables by using transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ashokreddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 08:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328060#M511848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T08:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: bdcdata</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328061#M511849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;BDCDATA: it is a structure .it contains the components&lt;/P&gt;&lt;P&gt;PROGRAM-BDC module pool&lt;/P&gt;&lt;P&gt;DYNPRO-screen number&lt;/P&gt;&lt;P&gt;DYNBEGIN-screen start('X')&lt;/P&gt;&lt;P&gt;FNAM-Field name&lt;/P&gt;&lt;P&gt;FVAL-BDC field value.&lt;/P&gt;&lt;P&gt;USED TO TRAVERSE IN THE TRANSACTION MODULEPOPL.&lt;/P&gt;&lt;P&gt;how 'X' is realted to bdc_data-dynbegin.&lt;/P&gt;&lt;P&gt; it indicates Start of a new screen number&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2007 04:56:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata/m-p/2328061#M511849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-12T04:56:53Z</dc:date>
    </item>
  </channel>
</rss>

