<?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 XK01 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800753#M914025</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See below records, the following sample flat file based on the sequence of it_itab which given before,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;101       100010000001Testcust1                       TC1     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;102       100010000001Testcust2                       TC2     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;103       100010000001Testcust3                       TC3     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;104       100010000001Testcust4                       TC4     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;105       100010000001Testcust5                       TC5     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if any clarification need&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 May 2008 05:35:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-21T05:35:21Z</dc:date>
    <item>
      <title>BDC XK01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800749#M914021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Can any one send me the coding for BDC 'XK01' along with the upload file in .txt format please its urgent for me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 04:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800749#M914021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T04:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: BDC XK01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800750#M914022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4131123"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3933145"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 05:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800750#M914022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T05:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: BDC XK01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800751#M914023</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;See below code, it may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report Z_VER_XK01_RPG  no standard page heading line-size 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include bdcrecx1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of typ_itab,&lt;/P&gt;&lt;P&gt;         lifnr type lifnr,&lt;/P&gt;&lt;P&gt;         burks type bukrs,&lt;/P&gt;&lt;P&gt;         ekorg type ekorg,&lt;/P&gt;&lt;P&gt;         ktokk type ktokk,&lt;/P&gt;&lt;P&gt;         name1 type name1,&lt;/P&gt;&lt;P&gt;         sortl type sortl,&lt;/P&gt;&lt;P&gt;         land1 type land1,&lt;/P&gt;&lt;P&gt;         akont type akont,&lt;/P&gt;&lt;P&gt;         fgdrv type lfb1-fdgrv,&lt;/P&gt;&lt;P&gt;         waers type lfm1-waers,&lt;/P&gt;&lt;P&gt;       end of typ_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_itab type standard table of typ_itab initial size 0,&lt;/P&gt;&lt;P&gt;       wa_itab type typ_itab,&lt;/P&gt;&lt;P&gt;       v_file like rlgrap-filename,&lt;/P&gt;&lt;P&gt;       u_file type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       parameters : p_file like rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          PROGRAM_NAME        = SYST-CPROG&lt;/P&gt;&lt;P&gt;          DYNPRO_NUMBER       = SYST-DYNNR&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         FIELD_NAME          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          FILE_NAME           = v_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_file is not initial.&lt;/P&gt;&lt;P&gt;   p_file = v_file.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;u_file = p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                      = u_file&lt;/P&gt;&lt;P&gt;    FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_itab INTO wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'RF02K-KTOKK'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF02K-LIFNR' wa_itab-lifnr.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF02K-BUKRS' wa_itab-burks.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF02K-EKORG' wa_itab-ekorg.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RF02K-KTOKK' wa_itab-ktokk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFA1-LAND1'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'LFA1-NAME1'  wa_itab-name1.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'LFA1-SORTL'  wa_itab-sortl.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'LFA1-LAND1'  wa_itab-land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0120'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFA1-KUNNR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0130'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFBK-BANKS(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '=ENTR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0210'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFB1-FDGRV'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'LFB1-AKONT'  wa_itab-akont.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'LFB1-FDGRV'  wa_itab-fgdrv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0215'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFB1-ZTERM'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0220'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFB5-MAHNA'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'    '0310'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'  'LFM1-WAERS'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'  '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'LFM1-WAERS'  wa_itab-waers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMF02K'     '0320'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'   'RF02K-LIFNR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'   '=UPDA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'XK01'.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishvesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful, rewards it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 05:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800751#M914023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T05:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: BDC XK01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800752#M914024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Visvesh your coding is good but I need the upload file also to run your code please do it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 05:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800752#M914024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T05:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: BDC XK01</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800753#M914025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See below records, the following sample flat file based on the sequence of it_itab which given before,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;101       100010000001Testcust1                       TC1     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;102       100010000001Testcust2                       TC2     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;103       100010000001Testcust3                       TC3     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;104       100010000001Testcust4                       TC4     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;105       100010000001Testcust5                       TC5     IN 31000     A1        INR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if any clarification need&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 05:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-xk01/m-p/3800753#M914025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T05:35:21Z</dc:date>
    </item>
  </channel>
</rss>

