<?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: increase the line items in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092407#M1358990</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you trying to Upload 9000 or n number of records from Excel to Internal table ?. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kanagaraja L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Sep 2009 11:58:17 GMT</pubDate>
    <dc:creator>Kanagaraja_L</dc:creator>
    <dc:date>2009-09-03T11:58:17Z</dc:date>
    <item>
      <title>increase the line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092405#M1358988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program only upload the 800 line item &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we want the data upload through Excle sheet 9000  line item , i am new in abap &lt;/P&gt;&lt;P&gt;please advise how can increase  the no of the line item ,if possible please add the program on same &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZBDC_PROGRAME.



TYPE-POOLS: VRM.

SELECTION-SCREEN BEGIN OF BLOCK BACH WITH FRAME TITLE FRAME1.
SELECTION-SCREEN SKIP 2.
PARAMETERS: P_RTYPE(10) TYPE C AS LISTBOX VISIBLE LENGTH 30.
SELECTION-SCREEN SKIP 2.
SELECTION-SCREEN END OF BLOCK BACH.


INITIALIZATION.
  PERFORM FFILL_REPORT_TYPES.

START-OF-SELECTION.
IF  P_RTYPE EQ 'NO1'.
    CALL TRANSACTION 'ZVEND_MASTER_FI'.
... " other alternatives
ELSEIF P_RTYPE EQ 'NO31'.
    CALL TRANSACTION 'ZME21N_K'.



ENDIF.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FFILL_REPORT_TYPES
*&amp;amp;---------------------------------------------------------------------*
*      text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM FFILL_REPORT_TYPES .
  DATA: LS_LIST TYPE VRM_VALUES,
        LS_NAME TYPE VRM_ID,
        LS_VALUE LIKE LINE OF LS_LIST.

  LS_NAME = 'P_RTYPE'.

  LS_VALUE-KEY = 'NO1'.
  LS_VALUE-TEXT = 'Vendor master FI/CO'.
  APPEND LS_VALUE TO LS_LIST.
  CLEAR LS_VALUE.

  ... lots of other values
  LS_VALUE-KEY = 'NO31'.
  LS_VALUE-TEXT = 'PO Upload Acc assig category - k'.
  APPEND LS_VALUE TO LS_LIST.
  CLEAR LS_VALUE.



  CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
      ID                    = LS_NAME
      VALUES                = LS_LIST
*  EXCEPTIONS
*    ID_ILLEGAL_NAME      = 1
*    OTHERS                = 2
            .
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


ENDFORM.                    " FFILL_REPORT_TYPES&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnaks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Sep 3, 2009 12:09 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 09:34:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092405#M1358988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-03T09:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: increase the line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092406#M1358989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've edited your program so that it fits within the 2500 character limit.  I don't think I deleted anything of importance.  I cannot see what relevance your program has to your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please note: in future only post the &lt;EM&gt;relevant&lt;/EM&gt; parts of your program.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And from a programming point of view - learn how to paramaterise instead of repeating the same code over and over and over...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 10:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092406#M1358989</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-09-03T10:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: increase the line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092407#M1358990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you trying to Upload 9000 or n number of records from Excel to Internal table ?. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kanagaraja L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 11:58:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092407#M1358990</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2009-09-03T11:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: increase the line items</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092408#M1358991</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;Check out the code BDC for VK11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zbdc_vk11&lt;/P&gt;&lt;P&gt;       NO STANDARD PAGE HEADING LINE-SIZE 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE bdcrecx1.&lt;/P&gt;&lt;P&gt;PARAMETER:pr_file LIKE rlgrap-filename OBLIGATORY.&lt;/P&gt;&lt;P&gt;DATA: w_filenm LIKE rlgrap-filename.&lt;/P&gt;&lt;P&gt;DATA: rawdata(4096) TYPE c OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR pr_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_FILENAME_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      def_filename     = pr_file&lt;/P&gt;&lt;P&gt;      mask             = ',*.xls.'&lt;/P&gt;&lt;P&gt;      mode             = 'O'&lt;/P&gt;&lt;P&gt;      title            = 'Upload File'(i03)&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      filename         = pr_file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE pr_file TO w_filenm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_FIELD_SEPERATOR          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_LINE_HEADER              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      i_tab_raw_data             = rawdata&lt;/P&gt;&lt;P&gt;      i_filename                 = w_filenm&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      i_tab_converted_data       = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       &amp;lt;add your BDC recording here&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amit Iyer on Sep 3, 2009 5:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 12:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increase-the-line-items/m-p/6092408#M1358991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-03T12:01:42Z</dc:date>
    </item>
  </channel>
</rss>

