SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Как получить локальный PDF из PDF формуляра.



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
MrN
Участник
Участник



Joined: 29 Jan 2008
Posts: 41
Location: Минск

PostPosted: Fri Mar 26, 2010 12:53 pm    Post subject: Как получить локальный PDF из PDF формуляра. Reply with quote

Граждане, как решить простую задачу: получить локальный PDF-файл из PDF-формуляра, не выпоняя сохранение из предпросмотра PDF ?
Back to top
View user's profile Send private message Send e-mail
eng
Участник
Участник



Joined: 07 Apr 2010
Posts: 1

PostPosted: Wed Apr 07, 2010 5:11 pm    Post subject: Re: Как получить локальный PDF из PDF формуляра. Reply with quote

MrN wrote:
Граждане, как решить простую задачу: получить локальный PDF-файл из PDF-формуляра, не выпоняя сохранение из предпросмотра PDF ?

Code:

  fp_outputparams-getpdf = 'X'.

* Открываем запрос в спул для печати формуляра:------------------------*
  CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
      ie_outputparams = fp_outputparams
    EXCEPTIONS
      cancel          = 1
      usage_error     = 2
      system_error    = 3
      internal_error  = 4
      OTHERS          = 5.


  DATA:
    fp_formoutput    TYPE fpformoutput,
    s_docparams TYPE sfpdocparams,
    data_tab TYPE TABLE OF x255.

  CALL FUNCTION ls_function
  EXPORTING
    /1bcdwb/docparams        = s_docparams
    is_footer                = is_footer
    is_totals                = is_totals
    it_table                 = it_table
    is_header                = is_header
 IMPORTING
    /1bcdwb/formoutput       = fp_formoutput



    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer     = fp_formoutput-pdf
      TABLES
        binary_tab = data_tab.

    cl_gui_frontend_services=>gui_download(
    EXPORTING
    filename = filename
    filetype = 'BIN'
    CHANGING
    data_tab = data_tab ).
Back to top
View user's profile Send private message
MrN
Участник
Участник



Joined: 29 Jan 2008
Posts: 41
Location: Минск

PostPosted: Fri Apr 09, 2010 3:11 pm    Post subject: Reply with quote

Цудоуна. Благодарствую.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.