<?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: Internal table PDF bytecount in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060302#M1353896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD TEXT LENGTH LEN in byte mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This returns the length of the field in bytes&lt;/P&gt;&lt;P&gt;and also check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3145358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3145358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Sep 2009 15:56:26 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2009-09-02T15:56:26Z</dc:date>
    <item>
      <title>Internal table PDF bytecount</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060301#M1353895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;I have a pdf file data in an internal table. How do I find the total bytecount of the data in the internal table. I am declaraing the pdf internal table as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: table_pdf       TYPE table of tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&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;Jainam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 15:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060301#M1353895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T15:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table PDF bytecount</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060302#M1353896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD TEXT LENGTH LEN in byte mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This returns the length of the field in bytes&lt;/P&gt;&lt;P&gt;and also check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3145358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3145358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 15:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060302#M1353896</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-09-02T15:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table PDF bytecount</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060303#M1353897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I tried to do following, I get differnet length of pdf file in v_pdf_bytecount and calculated actually. The byte count done programatically doesn't match v_pdf_bytecount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        src_spoolid   = v_spoolid                      &lt;/P&gt;&lt;P&gt;        no_dialog     = ' '&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        pdf_bytecount = v_pdf_bytecount&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        pdf           = it_pdf[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: len type i,  &lt;/P&gt;&lt;P&gt;        v_len type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at it_pdf into wa_pdf.&lt;/P&gt;&lt;P&gt;    DESCRIBE FIELD wa_pdf LENGTH len IN BYTE mode.&lt;/P&gt;&lt;P&gt;    v_len = len + v_len.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 16:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060303#M1353897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T16:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table PDF bytecount</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060304#M1353898</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;When the FM CONVERT_ABAPSPOOLJOB_2_PDF returns the pdf byte count why would you want to again calculate it based on the internal table?&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;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 16:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060304#M1353898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T16:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table PDF bytecount</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060305#M1353899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats a complete different story because I cannot pass the length of pdf file  to custom function module since changes to custom function module export parameters will require a long approval process in our company...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 16:25:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060305#M1353899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T16:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table PDF bytecount</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060306#M1353900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it's just politics, just use EXPORT TO MEMORY ID and IMPORT FROM MEMORY ID &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 16:51:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-pdf-bytecount/m-p/6060306#M1353900</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2009-09-02T16:51:03Z</dc:date>
    </item>
  </channel>
</rss>

