<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261187#M147662</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;    A date is stored as eight characters (always YYYYMMDD), but the output length in the domain should be specified as 10 to enable two separators to be inserted. So please try with making the length as 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Mar 2006 04:15:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-28T04:15:41Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261185#M147660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) While creating BDC  for Transaction code : &amp;lt;b&amp;gt;AS91 ( Asset Master and Legacy value upload )&amp;lt;/b&amp;gt; , Master data is uploaded successfully but there is a problem while &lt;/P&gt;&lt;P&gt;uploading the Legacy data, Values are not uploaded in the corresponding fileds. when i am executing the program i am getting a msg as : &lt;/P&gt;&lt;P&gt;                " Field RACT_DYNP_STRUC_ANBTR01(08) INPUT VALUE IS LONGER THAN SCREEN FIELD ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;THE CODE WHICH I HAVE WRITTEN IS:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BDCDATA LIKE BDCDATA OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ITAB OCCURS 10,&lt;/P&gt;&lt;P&gt;          ANLKL LIKE ANLA-ANLKL,&lt;/P&gt;&lt;P&gt;          BUKRS LIKE ANLA-BUKRS,&lt;/P&gt;&lt;P&gt;          TXT50 LIKE ANLA-TXT50,&lt;/P&gt;&lt;P&gt;          ANLHTXT LIKE ANLH-ANLHTXT,&lt;/P&gt;&lt;P&gt;          INVNR LIKE ANLA-INVNR,&lt;/P&gt;&lt;P&gt;          XHIST LIKE RA02S-XHIST,&lt;/P&gt;&lt;P&gt;          INKEN LIKE ANLA-INKEN,&lt;/P&gt;&lt;P&gt;          AKTIV(10),&lt;/P&gt;&lt;P&gt;          GPLAB(10),&lt;/P&gt;&lt;P&gt;          KOSTL LIKE ANLZ-KOSTL,&lt;/P&gt;&lt;P&gt;          LIFNR LIKE ANLA-LIFNR,&lt;/P&gt;&lt;P&gt;          HERST LIKE ANLA-HERST,&lt;/P&gt;&lt;P&gt;          XNEU_AM LIKE RA02S-XNEU_AM,&lt;/P&gt;&lt;P&gt;          XGBR_AM LIKE RA02S-XGBR_AM,&lt;/P&gt;&lt;P&gt;          LAND1 LIKE ANLA-LAND1,&lt;/P&gt;&lt;P&gt;          VSART LIKE ANLV-VSART,&lt;/P&gt;&lt;P&gt;          VSGES LIKE ANLV-VSGES,&lt;/P&gt;&lt;P&gt;          VSSTX LIKE ANLV-VSSTX,&lt;/P&gt;&lt;P&gt;          VSZTX LIKE ANLV-VSZTX,&lt;/P&gt;&lt;P&gt;          VRSBG(10),&lt;/P&gt;&lt;P&gt;          VSTAR LIKE ANLV-VSTAR,&lt;/P&gt;&lt;P&gt;          AFASL LIKE ANLB-AFASL,&lt;/P&gt;&lt;P&gt;          NDJAR LIKE ANLB-NDJAR,&lt;/P&gt;&lt;P&gt;          NDPER LIKE ANLB-NDPER,&lt;/P&gt;&lt;P&gt;          AFABG(10),&lt;/P&gt;&lt;P&gt;          NDABJ LIKE ANLC-NDABJ,&lt;/P&gt;&lt;P&gt;          NDABP LIKE ANLC-NDABP,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;          ANBTR01 LIKE RALT_DYNP_STRUC-ANBTR01,&lt;/P&gt;&lt;P&gt;          ANBTR01_06 LIKE RALT_DYNP_STRUC-ANBTR06,&lt;/P&gt;&lt;P&gt;          ANBTR01_08 LIKE RALT_DYNP_STRUC-ANBTR08,&amp;lt;/b&amp;gt;       END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_UPLOAD'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   FILENAME                      = 'C:/AS91.TXT'&lt;/P&gt;&lt;P&gt;   FILETYPE                      = 'DAT'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data_tab                      = ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BDC_OPEN_GROUP'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   CLIENT                    = SY-MANDT&lt;/P&gt;&lt;P&gt;   GROUP                     = 'RAVI'&lt;/P&gt;&lt;P&gt;   KEEP                      = 'X'&lt;/P&gt;&lt;P&gt;   USER                      = SY-UNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM FILL_BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BDC_INSERT'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     TCODE                  = 'AS91'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynprotab              = BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BDC_CLOSE_GROUP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  FILL_BDCDATA&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM FILL_BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     include bdcrecx1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     start-of-selection.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     perform open_group.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '0105'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLA-ANLKL'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=MAST'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-ANLKL'&lt;/P&gt;&lt;P&gt;                                    ITAB-ANLKL.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-BUKRS'&lt;/P&gt;&lt;P&gt;                                    ITAB-BUKRS.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=TAB02'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-TXT50'&lt;/P&gt;&lt;P&gt;                                    ITAB-TXT50.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLH-ANLHTXT'&lt;/P&gt;&lt;P&gt;                                    ITAB-ANLHTXT.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-INVNR'&lt;/P&gt;&lt;P&gt;                                    ITAB-INVNR.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RA02S-XHIST'&lt;/P&gt;&lt;P&gt;                                    ITAB-XHIST.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-INKEN'&lt;/P&gt;&lt;P&gt;                                    ITAB-INKEN.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLA-GPLAB'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-AKTIV'&lt;/P&gt;&lt;P&gt;                                    ITAB-AKTIV.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-GPLAB'&lt;/P&gt;&lt;P&gt;                                    ITAB-GPLAB.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=TAB03'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLZ-KOSTL'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLZ-KOSTL'&lt;/P&gt;&lt;P&gt;                                    ITAB-KOSTL.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=TAB04'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLA-ORD41'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RA02S-EQANZ'&lt;/P&gt;&lt;P&gt;                                    '1'.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=TAB05'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLA-LAND1'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-LIFNR'&lt;/P&gt;&lt;P&gt;                                    ITAB-LIFNR.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-HERST'&lt;/P&gt;&lt;P&gt;                                    ITAB-HERST.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RA02S-XNEU_AM'&lt;/P&gt;&lt;P&gt;                                    ITAB-XNEU_AM.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RA02S-XGBR_AM'&lt;/P&gt;&lt;P&gt;                                    ITAB-XGBR_AM.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLA-LAND1'&lt;/P&gt;&lt;P&gt;                                    ITAB-LAND1.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=TAB06'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLA-VMGLI'.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=TAB08'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLV-VSTAR'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLV-VSART'&lt;/P&gt;&lt;P&gt;                                    ITAB-VSART.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLV-VSGES'&lt;/P&gt;&lt;P&gt;                                    ITAB-VSGES.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLV-VSSTX'&lt;/P&gt;&lt;P&gt;                                    ITAB-VSSTX.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLV-VSZTX'&lt;/P&gt;&lt;P&gt;                                    ITAB-VSZTX.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLV-VRSBG'&lt;/P&gt;&lt;P&gt;                                    ITAB-VRSBG.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLV-VSTAR'&lt;/P&gt;&lt;P&gt;                                    ITAB-VSTAR.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLAIST' '1000'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=ALTD'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLC-NDABJ(01)'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLB-AFASL(01)'&lt;/P&gt;&lt;P&gt;                                    ITAB-AFASL.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLB-NDJAR(01)'&lt;/P&gt;&lt;P&gt;                                    ITAB-NDJAR.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLB-NDPER(01)'&lt;/P&gt;&lt;P&gt;                                    ITAB-NDPER.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLB-AFABG(01)'&lt;/P&gt;&lt;P&gt;                                    ITAB-AFABG.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'ANLC-NDABJ(01)'&lt;/P&gt;&lt;P&gt;                                    ITAB-NDABJ.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPLALTD' '1100'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/00'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;                                    'RALT_DYNP_STRUC-ANBTR01(08)'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RALT_DYNP_STRUC-ANBTR01(01)'&lt;/P&gt;&lt;P&gt;                                    ITAB-ANBTR01.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RALT_DYNP_STRUC-ANBTR01(06)'&lt;/P&gt;&lt;P&gt;                                    ITAB-ANBTR01_06.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'RALT_DYNP_STRUC-ANBTR01(08)'&lt;/P&gt;&lt;P&gt;                                    ITAB-ANBTR01_08.&amp;lt;/b&amp;gt;      perform bdc_dynpro      using 'SAPLALTD' '1100'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'ANLA-ANLN1'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=SAVE'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=BUCH'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      perform bdc_transaction using 'AS91'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     perform close_group.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " FILL_BDCDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       Start new screen                                              *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDC_DYNPRO USING PROGRAM DYNPRO.&lt;/P&gt;&lt;P&gt;  CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;  BDCDATA-PROGRAM  = PROGRAM.&lt;/P&gt;&lt;P&gt;  BDCDATA-DYNPRO   = DYNPRO.&lt;/P&gt;&lt;P&gt;  BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       Insert field                                                  *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDC_FIELD USING FNAM FVAL.&lt;/P&gt;&lt;P&gt;  IF FVAL &amp;lt;&amp;gt; SPACE.&lt;/P&gt;&lt;P&gt;    CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;    BDCDATA-FNAM = FNAM.&lt;/P&gt;&lt;P&gt;    BDCDATA-FVAL = FVAL.&lt;/P&gt;&lt;P&gt;    APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;The values are not populated into these fields:&lt;/P&gt;&lt;P&gt;'RALT_DYNP_STRUC-ANBTR01(01)'&lt;/P&gt;&lt;P&gt;'RALT_DYNP_STRUC-ANBTR01(06)'&lt;/P&gt;&lt;P&gt;'RALT_DYNP_STRUC-ANBTR01(08)'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN ANYONE PLEASE GIVE ME THE SOLUTION FOR THIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 03:26:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261185#M147660</guid>
      <dc:creator>ravi_sirigiri</dc:creator>
      <dc:date>2006-03-28T03:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261186#M147661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ravi,&lt;/P&gt;&lt;P&gt; hope you missed the&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;perform bdc_field  using..
  ITAB-NDABP&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i hope this might be the poblem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 04:07:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261186#M147661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-28T04:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261187#M147662</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;    A date is stored as eight characters (always YYYYMMDD), but the output length in the domain should be specified as 10 to enable two separators to be inserted. So please try with making the length as 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 04:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261187#M147662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-28T04:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261188#M147663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did specify the output length as 10 ( AKTIV(10),GPLAB(10)) in the code.Even there is a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 04:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261188#M147663</guid>
      <dc:creator>ravi_sirigiri</dc:creator>
      <dc:date>2006-03-28T04:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261189#M147664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if i include &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;perform bdc_field  using..
  ITAB-NDABP
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 04:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261189#M147664</guid>
      <dc:creator>ravi_sirigiri</dc:creator>
      <dc:date>2006-03-28T04:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261190#M147665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ravi,&lt;/P&gt;&lt;P&gt; i think you can record once again .. &lt;/P&gt;&lt;P&gt; coz theprobelm is somewhere here..&lt;/P&gt;&lt;P&gt; this code is not in the same order as there are fields in your itab..&lt;/P&gt;&lt;P&gt; here you have ITAB-NDABJ ITAB-ANBTR01. ITAB-ANBTR01_06. ITAB-ANBTR01_08 and in ITAB you have..&lt;/P&gt;&lt;P&gt;ITAB-NDABJ ITAB-NDABP ITAB-ANBTR01. ITAB-ANBTR01_06. ITAB-ANBTR01_08..&lt;/P&gt;&lt;P&gt; the order is different..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'ANLC-NDABJ(01)'&lt;/P&gt;&lt;P&gt;ITAB-NDABJ.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPLALTD' '1100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RALT_DYNP_STRUC-ANBTR01(08)'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RALT_DYNP_STRUC-ANBTR01(01)'&lt;/P&gt;&lt;P&gt;ITAB-ANBTR01.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RALT_DYNP_STRUC-ANBTR01(06)'&lt;/P&gt;&lt;P&gt;ITAB-ANBTR01_06.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RALT_DYNP_STRUC-ANBTR01(08)'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 04:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261190#M147665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-28T04:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261191#M147666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had specified ITAB-NDABP in the program, while copying the program it was missed, actually i am executing with this code itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
perform bdc_field using 'ANLC-NDABJ(01)'
ITAB-NDABJ.
perform bdc_field using 'ANLC-NDABP(01)'
ITAB-NDABP.
perform bdc_dynpro using 'SAPLALTD' '1100'.
perform bdc_field using 'BDC_OKCODE'
'/00'.
perform bdc_field using 'BDC_CURSOR'
'RALT_DYNP_STRUC-ANBTR01(08)'.
perform bdc_field using 'RALT_DYNP_STRUC-ANBTR01(01)'
ITAB-ANBTR01.
perform bdc_field using 'RALT_DYNP_STRUC-ANBTR01(06)'
ITAB-ANBTR01_06.
perform bdc_field using 'RALT_DYNP_STRUC-ANBTR01(08)'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STILL THE SAME PROBLEM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 04:42:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261191#M147666</guid>
      <dc:creator>ravi_sirigiri</dc:creator>
      <dc:date>2006-03-28T04:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261192#M147667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the fields need to be char, try this in ITAB:&lt;/P&gt;&lt;P&gt;ANBTR01(16),&lt;/P&gt;&lt;P&gt;ANBTR01_06(16),&lt;/P&gt;&lt;P&gt;ANBTR01_08(16),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 05:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261192#M147667</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-03-28T05:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261193#M147668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.Its working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2006 05:51:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1261193#M147668</guid>
      <dc:creator>ravi_sirigiri</dc:creator>
      <dc:date>2006-03-28T05:51:50Z</dc:date>
    </item>
  </channel>
</rss>

