PDF Print Preview

Hi experts,
I have a requirement where I display the output of a program in popup in PDF format when user clicks on a button.
I am able to do that and output is shown properly in PDF format.
But now the problem is he wants PDF to be shown directly in 'Print Preview' mode.
Can you please suggest me how it can be done.
I am using 'get_Print_parameters' Function Module.
Is there any parameter which we need to set for this purpose.
Thanks in advance.
Regards
Vasu

Hi,
You can use following code --
DATA: LV_CONTROL_PARAMETERS TYPE SSFCTRLOP.
* Set relevant control parameters
LV_CONTROL_PARAMETERS-DEVICE = 'PRINTER'. "Printer Device
LV_CONTROL_PARAMETERS-GETOTF = L_X. "OTF output
LV_CONTROL_PARAMETERS-NO_DIALOG = ' '. "L_X. No print dialog
LV_CONTROL_PARAMETERS-PREVIEW = 'X'. " This would enable Preview SPACE is for No preview
* Set relevant output options LV_OUTPUT_OPTIONS-TDNEWID = L_X. "Print parameters,
LV_OUTPUT_OPTIONS-TDDELETE = ' '. "SPACE. Print parameters,
Check this, this worked in my case.
Thanks.
Kumar Saurav.

Similar Messages

  • PDF print preview not coming as it contains chinese character

    hi
    when i see the print preview of the Delivery note ( in scripts ) normally, the chinese characters appears. but when i want to check with pdf print preview nothing is coming.
    i am using convert_otf func. module.
    is it because of function module or because of adobe acrobat?
    also when i try to print the ordinary print preview - output is coming as ####.
    My advance thanks for your replies.
    Regards,
    Sakthi Sri.

    Hi Sandra Rossi,
    In PDF i could not able to get the output. So discussed with TL and we made the chinese characters in .tiff and uploaded through se78 and now it is coming in ordinary print preview.
    but this is only temporary solution.
    Anyhow thanks for help given by experts.

  • Firefox10 was unable to invoke adobe pdf print preview where as Firefox 3 was able to do this.

    Firefox10 was unable to invoke adober pdf print preview where as Firefox 3 was able to do this.
    embed pdf document or use iframe
    Firefox successfully loads the PDF into the iFrame.
    What doesn't happen is printing.
    http://forums.adobe.com/thread/909776

    Also check this out. Firefox10 was able to display the pdf document perfectly.
    Now goto Firefox options and click print which invokes the printer print view and NOT the Adobe print view.
    Also if you click the print preview a blank page is shown.
    <embed id="pdf" src="archive.pdf" type="application/pdf" height="100%" width="100%" ></embed>

  • Simple way to create a pdf print preview in icwc

    Hello gurus,
    I have this customer task, to create a print preview for icwc. I checked note 1323062, but I´m working with version 5.0, so it can´t be used. I checked also note 896953, but this more to a error related.  Checked also 616762, but the note is high level in details. Does not explain how to redirect the output of the processing to the icwc (step 5).
    So in this way, I´d like to be advised from you folks, how to do it.
    I was thinking in to use and adapt Craig's blog for this. http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/1002. [original link is broken]
    Is somebody else used another solution or some tip to give, please, will be very welcome.
    cheers,
    David

    Hi Luiz,
                  It will be great if you can forward the paper created on pdf print preview to my profile id.
    Thanks in Advance
    Anil...

  • Questions about "PDF print previewer" in PO

    Dear all,
    I am looking for "PDF print previewer" to improve the 'visual identity' of PO in preview. Can I ask how to activate the "PDF print previewer" in PO function or any configuration is needed?
    Is it after apply "PDF print previewer" in SAP, a pdf viewer will be emabdded in the PO preview function?
    Many thanks for your help
    Sunny

    hi sunny,
    For control print preview of purchase order you have to contact ABAP , they will select according to your requirement
    Regards

  • Firefox10 was unable to invoke adober pdf print preview where as Firefox 3 was able to do this.

    Firefox10 was unable to invoke adober pdf print preview where as Firefox 3 was able to do this.
    embed pdf document or use iframe
    Firefox successfully loads the PDF into the iFrame.
    What doesn't happen is printing.
    http://forums.adobe.com/thread/909776

    Also check this out. Firefox10 was able to display the pdf document perfectly.
    Now goto Firefox options and click print which invokes the printer print view and NOT the Adobe print view.
    Also if you click the print preview a blank page is shown.
    <embed id="pdf" src="archive.pdf" type="application/pdf" height="100%" width="100%" ></embed>

  • SMARTFORM PDF PRINT PREVIEW - URGENT!!

    Hi All,
    I have a requirement to get a print preview of the smartform in the pdf format and have the option to either print it or save it.
    meaning - the adobe application must automatically open and in it, there must be a window to display the smartform in the PDF format.
    the code i have so far is as below
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = W_FORM_NAME
    IMPORTING
    FM_NAME = W_FMODULE
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Calling the SMARTFORM using the function module retrieved above
    GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
    gst_output_options-tddest = 'FRNT_End_Print'. "Frontend printer
    gst_output_options-tdnewid = sy-prnew.
    gst_output_options-tdimmed = 'X'.
    gst_output_options-tddelete = sy-prrel.
    clear gst_control_parameters.
    gst_control_parameters-no_dialog = 'X'.
    gst_control_parameters-getotf = 'X'.
    gst_control_parameters-preview = 'X'. "Deactivate preview!
    *Call the original function module.
    call function w_fmodule
    exporting
    control_parameters = gst_control_parameters
    output_options = gst_output_options
    importing
    job_output_info = gt_job_output_info
    job_output_options = gt_output_options
    tables
    tbl_amt = final_tab
    exceptions
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    if sy-subrc ne 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    T_OTF] = gt_job_output_info-OTFDATA[.
    call function 'SSFCOMP_PDF_PREVIEW'
    exporting
    i_otf = t_otf
    exceptions
    convert_otf_to_pdf_error = 1
    cntl_error = 2
    others = 3.
    if sy-subrc ne 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    The adobe application is launched but the window inside does not hold anything.
    i get a pop-up inside the adobe window with the message " FILE DOES NOT BEGIN WITH '%PDF-' ".
    Any suggestions are greatly appreciated.
    hoping to hear from you all.
    thank you.
    Sandeep

    Hi,
    Check the foll code it does the same thing.........
    Give a simple form(without any parameters) to check the code..........
    DATA: v_form_name           TYPE rs38l_fnam,
          wa_control_parameters TYPE ssfctrlop,
          it_job_output_info    TYPE ssfcrescl,
          v_bin_filesize        TYPE i,
          it_otf_data           TYPE tsfotf,
          it_doctab_archive     TYPE TABLE OF docs  WITH HEADER LINE,
          it_lines              TYPE TABLE OF tline WITH HEADER LINE.
    PARAMETER p_sform   TYPE tdsfname OBLIGATORY DEFAULT 'Put ur form name here'.
    START-OF-SELECTION.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = p_sform
        IMPORTING
          fm_name            = v_form_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
        wa_control_parameters-no_dialog = 'X'.
        wa_control_parameters-getotf    = 'X'.
        CALL FUNCTION v_form_name
          EXPORTING
            control_parameters = wa_control_parameters
          IMPORTING
            job_output_info    = it_job_output_info
          EXCEPTIONS
            formatting_error   = 1
            internal_error     = 2
            send_error         = 3
            user_canceled      = 4
            OTHERS             = 5.
        IF sy-subrc = 0.
          it_otf_data = it_job_output_info-otfdata[].
          CALL FUNCTION 'SSFCOMP_PDF_PREVIEW'
            EXPORTING
              i_otf                    = it_otf_data[]
            EXCEPTIONS
              convert_otf_to_pdf_error = 1
              cntl_error               = 2
              OTHERS                   = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
        ENDIF.
      ENDIF.
    Cheers,
    jose.

  • PDF Print Preview add doc title?

    XI31 SP3
    Requirement is to add the doc title when the document is printed,  but not on the document itself.  Is it possible to add a doc title to a pdf file without having the title actually on the document itself???

    You get a Pop up because you might have other actions ( fax or mail ) for which smartforms are attached and you can preview them.
    Check your action config and Smartform  to make sure there are no errors. If you can preview the form in GUI , you should be able to preview the same in Web.

  • Smart form print preview in PDF format

    Hi ABAP Experts,
    I have 2 requirements
    1) I want to print preview of a smartform in pdf format
    2) I also want to attach a local pdf file to the smartform which is displaying in the pdf print preview format
    or to rephrase:
    I want a pdf attached to a smartform which i want to open in the pdf print preview format.
    Regards,
    Niloufer

    Use following function modules:
    Please see the below code to download a PDF file on to your computer.
    PERFORM F_CONVERT_OTF.
    FORM F_CONVERT_OTF .
    PERFORM F_CALL_SMARTFORM. " Call the smartform to get data in I_OTF_FINAL
    **appending the otf data into the final table & save the pdf file.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = C_PDF_U      "Value is 'PDF'
        IMPORTING
          BIN_FILESIZE          = L_BIN_FILESIZE         "L_BIN_FILESIZE TYPE I,
        TABLES
          OTF                   = I_OTF_FINAL
          LINES                 = I_PDF_TAB    "It is of type TLINE
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          ERR_BAD_OTF           = 4
          OTHERS                = 5.
    * Check if the file is already existing.
      CALL FUNCTION 'TMP_GUI_GET_FILE_EXIST'
        EXPORTING
          FNAME                = L_FILE1   " Path where file is saved
       IMPORTING
         EXIST                = L_RESULT
    *   ISDIR                =
    *   FILESIZE             =
       EXCEPTIONS
         FILEINFO_ERROR       = 1
         OTHERS               = 2
    PERFORM F_GUI_DOWNLOAD USING L_FILE.
    ENDFORM.
    FORM F_GUI_DOWNLOAD  USING P_FILE TYPE STRING.
    CONSTANTS: C_BIN(10)       TYPE C VALUE 'BIN'.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          FILENAME                = P_FILE     "same as L_FILE
          FILETYPE                = C_BIN
          CONFIRM_OVERWRITE       = C_X   "value 'X'
        TABLES
          DATA_TAB                = I_PDF_TAB
        EXCEPTIONS
          FILE_WRITE_ERROR        = 1
          NO_BATCH                = 2
          GUI_REFUSE_FILETRANSFER = 3
          INVALID_TYPE            = 4
          NO_AUTHORITY            = 5
          UNKNOWN_ERROR           = 6
          HEADER_NOT_ALLOWED      = 7
          SEPARATOR_NOT_ALLOWED   = 8
          FILESIZE_NOT_ALLOWED    = 9
          HEADER_TOO_LONG         = 10
          DP_ERROR_CREATE         = 11
          DP_ERROR_SEND           = 12
          DP_ERROR_WRITE          = 13
          UNKNOWN_DP_ERROR        = 14
          ACCESS_DENIED           = 15
          DP_OUT_OF_MEMORY        = 16
          DISK_FULL               = 17
          DP_TIMEOUT              = 18
          FILE_NOT_FOUND          = 19
          DATAPROVIDER_EXCEPTION  = 20
          CONTROL_FLUSH_ERROR     = 21
          OTHERS                  = 22.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    <removed by moderator>
    Edited by: vishalmurgai58 on Mar 6, 2012 1:43 PM
    Edited by: Thomas Zloch on Mar 6, 2012 - please do not ask for ...

  • JasperReports - how to save as PDF from Print Preview page?

    Hi all!
    How can I save reports created with JasperReperts (with iReport tool) as PDF?
    On print preview, when I select it is as PDF, and click on "save", nothing is saved. Also, I get NoClassDefFoundError despite I included all nessesry classes (did I?). Here are list of included classes
    jasperreports-1.2.7.jar;
    jasperreports-1.2.7-javaflow.jar;
    commons-beanutils-1.5.jar;
    commons-collections-2.1.jar;
    commons-logging-1.0.2.jar;
    commons-digester-1.7.jar;Here is my code:
    void printWithPreview() {
        try {
          JasperPrint print = JasperFillManager.fillReport(report, reportParam, conn);
          JasperViewer.viewReport(print, false);
          //byte[] pdfasbytes = JasperExportManager.exportReportToPdf(print); // can I use it somehow?
          JasperExportManager.exportReportToPdf(print);
        } catch (JRException e) {
          e.printStackTrace();
      }Can you help me with this?
    Also, I need to know, how to limit options "save as" only to PFD (on same Print Preview page)?
    Thank you in advance!

    Right!
    I was missing iText.jar.
    So, you need only this code to get report preview and feature to export to pdf, html and other formats:
    void printWithPreview() {
        try {
          JasperPrint print = JasperFillManager.fillReport(report, reportParam, conn);
          JasperViewer.viewReport(print, false);
          JasperExportManager.exportReportToPdf(print);
        } catch (JRException e) {
          e.printStackTrace();
      }You do not need to save it specificly to c: or other "hard coded" directory.
    Thanx 1000 times!!!

  • Data missing when I print preview and export to pdf but do see the data when i navigate to that page in the report

    Hi,
    I have a report which consists of 9 subreports in 2 tables..
    When the run report I do see data.
    when i export to a pdf and print preview the report in Bids.. i see data for the first 22 pages and then the remaining pages are blank with just the header showing up...
    when i go to the pdf and select page 25 it is blank but when i go the report and not in print preview mode.. and i type in 25 in the page number data shows up on that page...
    the report is set to a portrait and the margins are set to 0.
    How can I solve this problems and why is it happening... the size of the sub report are the same..
    Any help will be appreciated.
    Thanks
    Karen

    I should add that when I e-mail this document to myself and print it directky from the iMac, it prints fine.

  • Generate and Print Preview Multiple Forms in a Single PDF

    There have been other questions similar to this but none directly address my problem.  We have the need to generate multple forms in a .pdf using Adobe interactive forms.  We can generate the multiple forms, but the user has to click on each form to view.  They want to have the forms in a single document that they can scroll through before printing.  We can do this in SmartForms but need to do it in Adobe.  Does anyone know how to generate multiple forms, either multiple copies of the same form or various forms, from an ABAP program into a single pdf that can be print previewed, in scrollable form, by the user?

    I can describe it one more time, I think:))
    You have multiple options, but only one "reasonable" within SAP.
    You can call an external application (through command line etc.) to concatenate forms for you.
    You can use iText as mentioned in the thread, and write yourself a "tool" which will concatenate the forms for you.
    Both these "options" would not be acceptable for my clients, I name them to help you get the whole picture.
    Then there is the third option: use a form for a single instance (template/ form A) and create a new form (form B), where you will use the A template:
    - you need to: create a new interface where everything from the old interface is a row of the table (example: you have a form to print out the personal card of the employee, so in a new form you will need to use a table, where a row is an employee)
    - you need to create a new form layout based on the new interface:
    in this new layout you will paste the whole layout of the old form (A/ single instance) and wrap it into a subform. The added subform will work as a table (you will bind that to the table from interface) and everything from the old template within this new subform will work as a "row" (something what you can repeat for each data item).
    Does that sound reasonable?
    Cheers Otto

  • Can not print a pdf from preview.  It crashes every time from 2 different printers.

    I can not print a pdf from preview.  I have tried at two separate locations with two different printers.

    I am having the same kind of problem when trying to print any kind of pdf: big, small, text only, with pictures. I dont know how it happend. Now it is happening in both my imac and macbook pro both runing the latest Lion MacOS with all updates installed. It is weird one moment my machine was printing ok then it stopped working. I have updated the printer software I have a canon image class mf4350. Also the curious thing is that I can print the same pdf document from adobe acrobat pro on the same computers with out any kind of problems.
    Here is the latest crash report
    PLease HELP!!!
    Date/Time:       2011-08-11 18:48:53 -0400
    OS Version:      10.7 (Build 11A511)
    Architecture:    x86_64
    Report Version:  8
    Command:         Preview
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Version:         5.5 (719)
    Build Version:   1
    Project Name:    Preview
    Source Version:  719000000000000
    Parent:          launchd [178]
    PID:             281
    Event:           hang
    Duration:        1.00s
    Steps:           11 (100ms sampling interval)
    Pageins:         6
    Pageouts:        0
    Process:         Preview [281]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Architecture:    x86_64
    UID:             505
      Thread 0xd33        DispatchQueue 1
      User stack:
        11 ??? (in Preview) [0x1063ddc64]
          11 NSApplicationMain + 867 (in AppKit) [0x7fff90ce652a]
            11 -[NSApplication run] + 463 (in AppKit) [0x7fff90a683d6]
              11 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff90a6ba95]
                11 _DPSNextEvent + 1993 (in AppKit) [0x7fff90a6c6c7]
                  11 _NSHandleCarbonMenuEvent + 250 (in AppKit) [0x7fff90ad6ce1]
                    11 _HandleMenuSelection2 + 585 (in HIToolbox) [0x7fff89cd9034]
                      11 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 600 (in HIToolbox) [0x7fff89cd9a75]
                        11 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101 (in HIToolbox) [0x7fff89ce232d]
                          11 SendMenuItemSelectedEvent + 253 (in HIToolbox) [0x7fff89e165e1]
                            11 SendMenuCommandWithContextAndModifiers + 56 (in HIToolbox) [0x7fff89dd00f1]
                              11 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398 (in HIToolbox) [0x7fff89ce9249]
                                11 SendEventToEventTarget + 76 (in HIToolbox) [0x7fff89ca2d03]
                                  11 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446 (in HIToolbox) [0x7fff89c8bef8]
                                    11 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263 (in HIToolbox) [0x7fff89c8c8ec]
                                      11 NSSLMMenuEventHandler + 339 (in AppKit) [0x7fff90bd70bf]
                                        11 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138 (in AppKit) [0x7fff90d8b3f1]
                                          11 -[NSMenu _internalPerformActionForItemAtIndex:] + 38 (in AppKit) [0x7fff90ef8e9c]
                                            11 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125 (in AppKit) [0x7fff90c5d086]
                                              11 -[NSMenuItem _corePerformAction] + 399 (in AppKit) [0x7fff90c5d34f]
                                                11 -[NSApplication sendAction:to:from:] + 139 (in AppKit) [0x7fff90b70852]
                                                  11 -[NSObject performSelector:withObject:] + 61 (in CoreFoundation) [0x7fff9189711d]
                                                    11 -[NSConcretePrintOperation runOperationModalForWindow:delegate:didRunSelector:contextInfo:] + 477 (in AppKit) [0x7fff90f72695]
                                                      11 -[NSPrintPanel beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 606 (in AppKit) [0x7fff90f75cf5]
                                                        11 -[NSWindowController window] + 109 (in AppKit) [0x7fff90c61105]
                                                          11 -[NSWindowController _windowDidLoad] + 566 (in AppKit) [0x7fff90c69a23]
                                                            11 ??? (in PrintCocoaUI) [0x108fff6b4]
                                                              11 ??? (in PrintCocoaUI) [0x108ffef07]
                                                                11 ??? (in PrintCocoaUI) [0x108feb7b1]
                                                                  11 ??? (in PrintCocoaUI) [0x108fe87c2]
                                                                    11 ??? (in PrintCocoaUI) [0x108fe830e]
                                                                      11 ??? (in PrintCocoaUI) [0x108fe6f82]
                                                                        11 -[MCDUFR2FinishingPDEPlugIn PDEPanelsForType:withHostInfo:] + 176 (in FinishingPDE) [0x10a5e2076]
                                                                          11 -[MCDUFR2FinishingPDE initWithCallback::] + 60 (in FinishingPDE) [0x10a5cffe0]
                                                                            11 -[MCDUFR2PDEPanelCommon initWithCallback:bundle:funcList:] + 257 (in PDEUtilities) [0x10a63ccd3]
                                                                              11 -[MCDUFR2FinishingPDE restoreValuesAndReturnError:] + 55 (in FinishingPDE) [0x10a5d0b04]
                                                                                11 -[MCDUFR2PDEPanelCommon restoreValuesAndReturnError:] + 69 (in PDEUtilities) [0x10a63cfb9]
                                                                                  11 -[MCDUFR2PDEPanelCommon setValuesFromTicket] + 391 (in PDEUtilities) [0x10a63d8ab]
                                                                                    11 -[MCDUFR2CNPDEBidiController dealloc] + 25 (in PDEUtilities) [0x10a62d183]
                                                                                       11 Info_Terminate + 40 (in PDEUtilities) [0x10a65ee3e]
                                                                                         11 Info_Terminate + 34 (in libinfo.dylib) [0x108596340]
                                                                                           11 zTerminate_ccpd_util + 40 (in libinfo.dylib) [0x1085960de]
                                                                                             11 __wait4 + 10 (in libsystem_kernel.dylib) [0x7fff883ba156]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Thread 0xd49        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x10718    
      User stack:
        11 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff882f5b85]
          11 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff883ba192]
      Kernel stack:
        11 workqueue_exit + 1904 (in mach_kernel) [0xffffff80005a13b0]
      Binary Images:
             0x1063dc000 -        0x1065c3fef  com.apple.Preview 5.5 (719) <8F8450F1-AC7D-3468-AB39-323A5D1B1612> /Applications/Preview.app/Contents/MacOS/Preview
             0x108595000 -        0x10859dfff  libinfo.dylib ??? (???) <034FF819-662D-9B5F-F87F-3D355394216D> /Library/Printers/Canon/UFR2/Libs/libinfo.dylib
             0x108fe0000 -        0x109017fff  com.apple.print.framework.Print.Private 7.0 (378) <9EECB9C5-32C3-3CBE-8D9A-82E929A7D69A> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
             0x10a5cf000 -        0x10a5f5fff  jp.co.canon.MCDUFR2.PDEs.Finishing 2.24 (2.24) <257061CE-1CD3-DDB5-9433-E2C3D5E7BD0F> /Library/Printers/Canon/UFR2/PDEs/FinishingPDE.plugin/Contents/MacOS/FinishingP DE
             0x10a62b000 -        0x10a674fe7  jp.co.canon.MCDUFR2.PDEUtilities 2.24 (2.24) <ED9873C7-D207-D5EE-B3F7-B85868D9A82B> /Library/Printers/Canon/UFR2/Frameworks/PDEUtilities.framework/Versions/A/PDEUt ilities
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff89c84000 -     0x7fff89fa7fff  com.apple.HIToolbox 1.7 (???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff90a63000 -     0x7fff9165bfff  com.apple.AppKit 6.7 (1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         AirPort Base Station Agent [240]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             505
      Thread 0x845        DispatchQueue 1
      User stack:
        11 ??? (in AirPort Base Station Agent) [0x10e45a654]
          11 ??? (in AirPort Base Station Agent) [0x10e46b353]
            11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
              11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                  11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                    11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x86f        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x8df      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 __select + 10 (in libsystem_kernel.dylib) [0x7fff883b9df2]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Binary Images:
             0x10e459000 -        0x10e470fff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <4B2DADB0-223B-32AA-9438-30FBEA0A8FE6> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         aosnotifyd [345]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    UID:             505
      Thread 0x3a45       DispatchQueue 1
      User stack:
        11 start + 52 (in aosnotifyd) [0x109b5b700]
          11 main + 74 (in aosnotifyd) [0x109b62ed2]
            11 -[AOSNotificationDaemon startup] + 1291 (in aosnotifyd) [0x109b62e5d]
              11 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8decd983]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x3a56       DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x3e76     
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 __select + 10 (in libsystem_kernel.dylib) [0x7fff883b9df2]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Binary Images:
             0x109b5a000 -        0x109b98ff7  aosnotifyd ??? (???) <20049BC2-C314-3A6C-8DF7-80ED7C14C291> /usr/sbin/aosnotifyd
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff8dec2000 -     0x7fff8e1d4fff  com.apple.Foundation 6.7 (833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         applepushserviced [85]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
    Architecture:    x86_64
    UID:             0
      Thread 0x21e        DispatchQueue 1
      User stack:
        11 ??? (in applepushserviced) [0x10b531134]
          11 ??? (in applepushserviced) [0x10b531218]
            11 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8decd86f]
              11 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8decd983]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x265        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Binary Images:
             0x10b530000 -        0x10b59bfff  applepushserviced ??? (???) <E341CBD0-7A62-3D06-BD6F-77545E6DB6DC> /System/Library/PrivateFrameworks/ApplePushService.framework/applepushserviced
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff8dec2000 -     0x7fff8e1d4fff  com.apple.Foundation 6.7 (833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         AppleSpell [297]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             505
      Thread 0xfe7        DispatchQueue 1
      User stack:
        11 ??? (in AppleSpell) [0x10362fcf8]
          11 ??? (in AppleSpell) [0x10362ffaa]
            11 -[NSSpellServer run] + 74 (in Foundation) [0x7fff8e01e2ea]
              11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0xff0        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Binary Images:
             0x10362e000 -        0x1036eaff7  com.apple.AppleSpell 1.7 (131) <6CF6E283-A7F1-37AA-A461-56AFD527396B> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff8dec2000 -     0x7fff8e1d4fff  com.apple.Foundation 6.7 (833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         AppTrap [259]
    Path:            /Users/USER/Library/PreferencePanes/AppTrap.prefPane/Contents/Resources/AppTrap .app/Contents/MacOS/AppTrap
    Architecture:    x86_64
    UID:             505
    Process:         autofsd [83]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x24b        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x24c        DispatchQueue 6
      User stack:
        11 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff89c6f9a4]
          11 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff883ba022]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Binary Images:
             0x108f34000 -        0x108f35fff  autofsd ??? (???) <0C88EC3A-8EA7-368E-832C-CF6FB08B1370> /usr/libexec/autofsd
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
    Process:         awacsd [108]
    Path:            /usr/sbin/awacsd
    Architecture:    x86_64
    UID:             0
      Thread 0x328        DispatchQueue 1
      User stack:
        11 ??? (in awacsd) [0x104914690]
          11 ??? (in awacsd) [0x10491b150]
            11 ??? (in awacsd) [0x104923802]
              11 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b86b6]
      Kernel stack:
        11 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff8000234590]
      Thread 0x32a        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x10760    
      User stack:
        11 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff882f5b85]
          11 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff883ba192]
      Kernel stack:
        11 workqueue_exit + 1904 (in mach_kernel) [0xffffff80005a13b0]
      Binary Images:
             0x104913000 -        0x104968ff7  awacsd ??? (???) <B4E2E687-C6BF-3356-B7F3-84943947BAE3> /usr/sbin/awacsd
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
    Process:         blued [40]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    UID:             0
      Thread 0x1af        DispatchQueue 1
      User stack:
        11 ??? (in blued) [0x10c5d5e5c]
          11 ??? (in blued) [0x10c60a02c]
            11 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8decd86f]
              11 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff8decd983]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1bd        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x1e0      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 __select + 10 (in libsystem_kernel.dylib) [0x7fff883b9df2]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Binary Images:
             0x10c5d4000 -        0x10c647ff7  blued ??? (???) <509C1835-D875-3B48-BC6E-3C78264CD25D> /usr/sbin/blued
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff8dec2000 -     0x7fff8e1d4fff  com.apple.Foundation 6.7 (833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         Canon FAX BackGrounder [243]
    Path:            /Library/Printers/Canon/CUPSFAX/BackGrounder/Canon FAX BackGrounder.app/Contents/MacOS/Canon FAX BackGrounder
    Architecture:    i386
    UID:             505
    Process:         Canon MFScanner [229]
    Path:            /Library/Image Capture/Devices/Canon MFScanner.app/Contents/MacOS/Canon MFScanner
    Architecture:    i386
    UID:             505
    Process:         CIJScannerRegister [443]
    Path:            /Library/Image Capture/Support/*/CIJScannerRegister.app/Contents/MacOS/CIJScannerRegister
    Architecture:    unknown
    UID:             505
    Process:         com.apple.dock.extra [226]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:    x86_64
    UID:             505
      Thread 0x7d4        DispatchQueue 1
      User stack:
        11 ??? (in com.apple.dock.extra) [0x10d5de984]
          11 xpc_service_main + 440 (in XPCService) [0x7fff8ddda8b9]
            11 NSApplicationMain + 867 (in AppKit) [0x7fff90ce652a]
              11 -[NSApplication run] + 463 (in AppKit) [0x7fff90a683d6]
                11 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff90a6ba95]
                  11 _DPSNextEvent + 659 (in AppKit) [0x7fff90a6c191]
                    11 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff89c8daae]
                      11 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff89c8dc21]
                        11 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff89c864ff]
                          11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                            11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                              11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                                11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x80e        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Binary Images:
             0x10d5dd000 -        0x10d5e1fff  com.apple.dock.extra 1.0 (1) <16A00A96-FFEF-3F2E-B629-453D3C51469E> /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff89c84000 -     0x7fff89fa7fff  com.apple.HIToolbox 1.7 (???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8ddd9000 -     0x7fff8dddfff7  com.apple.XPCService 1.0 (1) <7CD3F8A6-7F2A-36FB-B838-D7BB504DB894> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
          0x7fff90a63000 -     0x7fff9165bfff  com.apple.AppKit 6.7 (1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         configd [15]
    Path:            /usr/libexec/configd
    Architecture:    x86_64
    UID:             0
      Thread 0xfd         DispatchQueue 1
      User stack:
        11 ??? (in configd) [0x100b75fcc]
          11 ??? (in configd) [0x100b76783]
            11 ??? (in configd) [0x100b77088]
              11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                  11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                    11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x10e        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff883b9e06]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Thread 0x110      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 ??? (in configd) [0x100b77a66]
              11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1a8      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 ??? (in configd) [0x100b823dd]
              11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1b3      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 __select + 10 (in libsystem_kernel.dylib) [0x7fff883b9df2]
      Kernel stack:
        11 wakeup + 992 (in mach_kernel) [0xffffff8000552580]
      Thread 0x1b4      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 pppcntl_run_thread + 2194 (in PPPController) [0x101031142]
              11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x10295    
      User stack:
        11 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff882f5b85]
          11 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff883ba192]
      Kernel stack:
        11 workqueue_exit + 1904 (in mach_kernel) [0xffffff80005a13b0]
      Thread 0x10771    
      User stack:
        11 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff882f5b85]
          11 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff883ba192]
      Kernel stack:
        11 workqueue_exit + 1904 (in mach_kernel) [0xffffff80005a13b0]
      Binary Images:
             0x100b75000 -        0x100b9eff7  configd ??? (???) <2F1DBCF7-E9C0-348D-B806-1AA71E536A84> /usr/libexec/configd
             0x101023000 -        0x101062fff  com.apple.SystemConfiguration.PPPController 1.7 (1.7) <DFB9B133-1E88-337B-8083-53DFB5E37E09> /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPCont roller
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         cookied [272]
    Path:            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/Support/cookied
    Architecture:    x86_64
    UID:             505
      Thread 0xaa4        DispatchQueue 1
      User stack:
        11 ??? (in cookied) [0x10c1c7edc]
          11 _cookied_main + 852 (in CFNetwork) [0x7fff8b77c095]
            11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
              11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                  11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                    11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0xaac        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x10618    
      User stack:
        11 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff882f5b85]
          11 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff883ba192]
      Kernel stack:
        11 workqueue_exit + 1904 (in mach_kernel) [0xffffff80005a13b0]
      Binary Images:
             0x10c1c7000 -        0x10c1c7ff7  cookied ??? (???) <FE3E60E6-147A-3E9F-ABA1-5909DFB522B2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/Support/cookied
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff8b68d000 -     0x7fff8b7f0fff  com.apple.CFNetwork 520.0.13 (520.0.13) <67E3BB43-2A22-3F5A-964E-391375B24CE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         coreaudiod [139]
    Path:            /usr/sbin/coreaudiod
    Architecture:    x86_64
    UID:             202
      Thread 0x3cb        DispatchQueue 1
      User stack:
        11 ??? (in coreaudiod) [0x10e32b220]
          11 ??? (in coreaudiod) [0x10e39280a]
            11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
              11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                  11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x3e5        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x3fc      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 ??? (in coreaudiod) [0x10e39c990]
              11 ??? (in coreaudiod) [0x10e39649c]
                11 ??? (in coreaudiod) [0x10e39652c]
                  11 ??? (in coreaudiod) [0x10e396370]
                    11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                      11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                        11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                          11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x10801    
      User stack:
        11 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff882f5b85]
          11 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff883ba192]
      Kernel stack:
        11 workqueue_exit + 1904 (in mach_kernel) [0xffffff80005a13b0]
      Binary Images:
             0x10e32a000 -        0x10e3e8ff7  coreaudiod ??? (???) <81C9C2A8-C33E-3F2E-A1A1-E61DA5414B0C> /usr/sbin/coreaudiod
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         coreservicesd [43]
    Path:            /System/Library/CoreServices/coreservicesd
    Architecture:    x86_64
    UID:             0
      Thread 0x1c2        DispatchQueue 1
      User stack:
        11 ??? (in coreservicesd) [0x10de60e98]
          11 _CoreServicesServerMain + 747 (in CarbonCore) [0x7fff90730095]
            11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
              11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                  11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                    11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1c3        DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0x255      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 fmodWatchConsumer + 332 (in CarbonCore) [0x7fff906a1410]
              11 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff883b9bca]
      Kernel stack:
        11 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          11 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005ca7cb]
            11 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059ee69]
              11 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a4f3]
                11 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f36b]
                  11 thread_continue + 1661 (in mach_kernel) [0xffffff800022f0ed]
                    11 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x256      
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 read + 10 (in libsystem_kernel.dylib) [0x7fff883baaf2]
      Kernel stack:
        11 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          11 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005ca7cb]
            11 read_nocancel + 120 (in mach_kernel) [0xffffff8000561cc8]
              11 write + 209 (in mach_kernel) [0xffffff80005615c1]
                11 get_pathbuff + 3895 (in mach_kernel) [0xffffff8000323c87]
                  11 tsleep + 91 (in mach_kernel) [0xffffff80005527fb]
                    11 wakeup + 632 (in mach_kernel) [0xffffff8000552418]
                      11 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f36b]
                        11 thread_continue + 1661 (in mach_kernel) [0xffffff800022f0ed]
                          11 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x10de60000 -        0x10de60fff  coreservicesd ??? (???) <6AAC69F5-8ECC-36B7-B917-7A4A0F4086C4> /System/Library/CoreServices/coreservicesd
          0x7fff882a4000 -     0x7fff88381fef  libsystem_c.dylib ??? (???) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
          0x7fff883a3000 -     0x7fff883c3fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c6b000 -     0x7fff89c79fff  libdispatch.dylib ??? (???) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
          0x7fff90694000 -     0x7fff909adfff  com.apple.CoreServices.CarbonCore 960.13 (960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
          0x7fff91804000 -     0x7fff919d7ff7  com.apple.CoreFoundation 6.7 (635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         cupsd [439]
    Path:            /usr/sbin/cupsd
    Architecture:    x86_64
    UID:             0
      Thread 0xf199       DispatchQueue 1
      User stack:
        11 ??? (in cupsd) [0x1057c019c]
          11 ??? (in cupsd) [0x1057d9a80]
            11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0xf19a       DispatchQueue 2
      User stack:
        11 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff89c6d19e]
          11 kevent + 10 (in libsystem_kernel.dylib) [0x7fff883ba7e6]
      Kernel stack:
        11 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537bb0]
      Thread 0xf19f     
      User stack:
        11 thread_start + 13 (in libsystem_c.dylib) [0x7fff882f5b75]
          11 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff882f28bf]
            11 ??? (in cupsd) [0x105804908]
              11 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff9184bf2f]
                11 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff9183c216]
                  11 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff9183ca04]
                    11 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff9183429c]
                      11 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff883b867a]
      Kernel stack:
        11 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Binary Images:
             0x1057bf000 -        0x10581eff7  cupsd ??? (???) <5C8E4378-C8B0-3BF9-9A85-FF5B6923FE7A> /usr/sbin/cupsd
          0x7fff882a4000 -     0x7fff88381fe

  • When i print a pdf from preview it prints strange characters - it looks fine on screen

    when i print a pdf from preview it prints strange characters - it looks fine on screen

    You can also try opening the PDF with preview, then doing a copy and paste to TextEdit and printing from there.
    Adobe makes it easier, but you do have software to accomplish this.
    Only download Adobe reader from this site, to avoid "fakes/spoofs/malware" that will cause damage to your machine.
    http://www.adobe.com/support/downloads/product.jsp?platform=macintosh&product=10
    Hope this helps

  • Smartform to PDF, how to suppres Print/Preview dialog

    Hi Experts,
    Facing some issues in downloading PDF converted from Smartform.
    In the program I am trying directly download a smartform converted into PDF format and save it in local system.
    When ever I am trying to execute the program it shows up the Print/Preview dialog before showing the Save As dialog.
    I have passed control_parameters-getotf = 'X' to the smartform runtime FM, which ideally should have suppressed the Print/Preview dialog and return the otfdata.
    Here the entire code is...
    REPORT  yfr_invoice.
    TABLES :  t001, bsad, bsid, kna1,sscrfields .
    DATA : fm_name TYPE rs38l_fnam.
    DATA : it_bsad TYPE STANDARD TABLE OF bsad.
    DATA : BEGIN OF it_bseg OCCURS 0,
            belnr TYPE belnr_d,
           END OF it_bseg.
    DATA : error_flag.
    DATA: 
           cont_param TYPE ssfctrlop,
           out_param  TYPE ssfcompop,
           otfdata    TYPE ssfcrescl,
           t_tline    TYPE TABLE OF tline INITIAL SIZE 0,
           t_docs     TYPE STANDARD TABLE OF docs,
           v_filesize TYPE i,
           v_name     TYPE string,
           v_path     TYPE string,
           v_fullpath TYPE string,
           v_filename TYPE string,
           v_filter   TYPE string.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
    SELECT-OPTIONS : s_bukrs FOR t001-bukrs NO-EXTENSION NO INTERVALS OBLIGATORY.
    SELECT-OPTIONS : s_gjahr FOR bsid-gjahr NO-EXTENSION NO INTERVALS OBLIGATORY.
    SELECT-OPTIONS : s_rebzg FOR bsid-rebzg OBLIGATORY.
    SELECT-OPTIONS : s_kunnr FOR kna1-kunnr.
    SELECTION-SCREEN END OF BLOCK b1.
    INITIALIZATION.
    START-OF-SELECTION.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'YFF_INVOICE'
        IMPORTING
          fm_name            = fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    cont_param-getotf = 'X'.
    cont_param-no_dialog = 'X'.
    cont_param-preview = 'X' .
      CALL FUNCTION fm_name
        EXPORTING
          control_parameters = cont_param  "Passing getotf = 'X'
        IMPORTING
          job_output_info    = otfdata
        TABLES
          s_bukrs            = s_bukrs[]
          s_gjahr            = s_gjahr[]
          s_rebzg            = s_rebzg[]
          s_kunnr            = s_kunnr[]
        EXCEPTIONS
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4
          OTHERS             = 5.
        IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ELSE.
          CALL FUNCTION 'CONVERT_OTF_2_PDF'
            IMPORTING
              bin_filesize           = v_filesize
            TABLES
              otf                    = otfdata-otfdata
              doctab_archive         = t_docs
              lines                  = t_tline
            EXCEPTIONS
              err_conv_not_possible  = 1
              err_otf_mc_noendmarker = 2
              OTHERS                 = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
          CONCATENATE 'filename' '.pdf' INTO v_name.
          CALL METHOD cl_gui_frontend_services=>file_save_dialog
            EXPORTING
              default_extension = 'PDF'
              default_file_name = v_name
              file_filter       = v_filter
            CHANGING
              filename          = v_name
              path              = v_path
              fullpath          = v_fullpath.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize            = v_filesize
              filename                = v_fullpath "'C:\Test.pdf'
              filetype                = 'BIN'
            TABLES
              data_tab                = t_tline
            EXCEPTIONS
              file_write_error        = 1
              no_batch                = 2
              gui_refuse_filetransfer = 3
              invalid_type            = 4
              no_authority            = 5
              unknown_error           = 6
              header_not_allowed      = 7
              separator_not_allowed   = 8
              filesize_not_allowed    = 9
              header_too_long         = 10
              dp_error_create         = 11
              dp_error_send           = 12
              dp_error_write          = 13
              unknown_dp_error        = 14
              access_denied           = 15
              dp_out_of_memory        = 16
              disk_full               = 17
              dp_timeout              = 18
              file_not_found          = 19
              dataprovider_exception  = 20
              control_flush_error     = 21
              OTHERS                  = 22.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
        ENDIF.
      ENDIF.
    The program other wise works absolutly fine .
    Please advise.
    Thanks
    Jahan

    Moderator message - Cross post locked
    Rob

Maybe you are looking for

  • The "support" for app store (and itunes) is utter crap?

    When I try to guy anything from the app store, I get a message telling me to complete the purchase through itunes support.  there is no itunes support, and the link to this support forum from mac appstore support is broken.  ***?  I can download the

  • IPhoto Crashes While making a book

    I was making a book for a friend of mine for christmas. i set up the book in a way that i see as perfect and i click "Buy Book". Then after the book is done being assembled, iPhoto crashes. I have tried several times and i get the same exact thing ha

  • Show af:messages in info popup in 10g

    Hi, in 10g is there any fast way to display messages using af:messages in popup as in 11g. I red that if af:messages is missing the default operation in to open an info popup but the same is not happening in 10g. Thanks, Ilias

  • PDFmaker 7 Hot buttons in Microsoft Office 2007

    We are using Adobe Acrobat 7.0 Standard and Professional. I have recently upgraded to Office 2007 and now we don't have quick buttons. There are quick buttons in Outlook 2007, but not in excel, powerpoint, or word. Is there a way to get the quick but

  • Captive Portal spinner is ultra small

    Please refer to attachment. Not annoying stuff but a little of strange there.