<?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: pdf file uploading in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470634#M1058995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working in CRM 5.0 . I dont have this TCode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Sep 2008 17:41:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-16T17:41:14Z</dc:date>
    <item>
      <title>pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470632#M1058993</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;I need to store the "pdf "  file from the PC to Unix directory. For this purpose what stanard program I can use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Swarna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 17:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470632#M1058993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T17:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470633#M1058994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use transaction CG3Z.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 17:33:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470633#M1058994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T17:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470634#M1058995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working in CRM 5.0 . I dont have this TCode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 17:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470634#M1058995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T17:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470635#M1058996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is not standard program i believe. And also i am not sure about the PDF file update. but we are using for txt file. check the code below to upload a file from PC to unix server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZCOPY_PC_TO_UNIX       LINE-SIZE 255&lt;/P&gt;&lt;P&gt;       LINE-COUNT 65 MESSAGE-ID ZCRM_DEVELOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF zfred OCCURS 0,&lt;/P&gt;&lt;P&gt;      z(1500),&lt;/P&gt;&lt;P&gt;      END OF zfred.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: filename like RLGRAP-FILENAME,&lt;/P&gt;&lt;P&gt;      w_filesize like sy-index,&lt;/P&gt;&lt;P&gt;      w_cancel,&lt;/P&gt;&lt;P&gt;      w_mess type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_unix(255) lower case memory id ZUNIX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_unix.&lt;/P&gt;&lt;P&gt;  get parameter id 'ZUNIX' field p_unix.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_LOCATION_FLAG       = 'A'&lt;/P&gt;&lt;P&gt;      I_PATH                = P_UNIX&lt;/P&gt;&lt;P&gt;      fileoperation         = 'W'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      O_PATH                = P_UNIX&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      others                = 1.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    set parameter id 'ZUNIX' field p_unix.&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;  CALL FUNCTION 'UPLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      filename            = filename&lt;/P&gt;&lt;P&gt;      filetype            = 'ASC'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      act_filename        = filename&lt;/P&gt;&lt;P&gt;      FILESIZE            = w_filesize&lt;/P&gt;&lt;P&gt;      cancel              = w_cancel&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data_tab            = zfred&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      conversion_error    = 1&lt;/P&gt;&lt;P&gt;      invalid_table_width = 2&lt;/P&gt;&lt;P&gt;      invalid_type        = 3&lt;/P&gt;&lt;P&gt;      no_batch            = 4&lt;/P&gt;&lt;P&gt;      unknown_error       = 5&lt;/P&gt;&lt;P&gt;      OTHERS              = 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE s001 DISPLAY LIKE 'E' WITH 'Upload Error:' sy-subrc.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check w_cancel is initial.&lt;/P&gt;&lt;P&gt;  OPEN DATASET p_unix FOR OUTPUT IN TEXT MODE ENCODING DEFAULT message w_mess.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE S001 DISPLAY LIKE 'E' WITH&lt;/P&gt;&lt;P&gt;      w_mess '-' P_UNIX(50) p_unix+50(50).&lt;/P&gt;&lt;P&gt;    stop.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT zfred.&lt;/P&gt;&lt;P&gt;      TRANSFER zfred TO p_unix.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    MESSAGE s001 WITH w_filesize 'bytes transfered'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Muthu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 18:02:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470635#M1058996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T18:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470636#M1058997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use GUI_UPLOAD function load the pdf file , with the filetype 'BIN'. and then use the Binary data and Transfer the data to Application server using the OPEN DATASET/TRANSFER/CLOSE DATASET&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 18:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470636#M1058997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T18:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470637#M1058998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI muthappan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used a program which is same as your program its not uploading the pictures in the pdf files.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 18:24:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470637#M1058998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T18:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470638#M1058999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The File type should be &lt;STRONG&gt;BIN&lt;/STRONG&gt; then only you can load the pdf to itab.&lt;/P&gt;&lt;P&gt;Read the GUI_UPLOAD function documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 18:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470638#M1058999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T18:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: pdf file uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470639#M1059000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its uploaded but whenwe try to  open it its not opening.&lt;/P&gt;&lt;P&gt;Its giving errors as  " Error converting to  PDF format ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 20:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pdf-file-uploading/m-p/4470639#M1059000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T20:14:57Z</dc:date>
    </item>
  </channel>
</rss>

