Error in SmartForm to PDF while Saving with Preview option.

Hi,
I have created a report to convert Smartform to PDF.
I want the user to Preview data, if user is interested, then they can save the file.
When user clicks the Back button in SmartForm Print Preview, user can select the path of PDF file to save the data.
My code works fine, if Preview is disabled.
In the sub-routine createpdffile, I am getting error while creating PDF file.
The program works fine, if I disable the preview option i.e. if I uncomment
cparam-getotf = 'X'.
How can I have the both options in my report?
1)     Preview SmartForm.
2)     Save the SmartForm as PDF.
Regards,
Vikas
DATA:
  cparam TYPE ssfctrlop,
  outop TYPE ssfcompop,
*  fm_name TYPE rs38l_fnam,
*  my_tabix TYPE sy-tabix,
  file_size TYPE i,
  bin_filesize TYPE i,
  s_filename TYPE string.
DATA:
  tab_otf_data TYPE ssfcrescl,
*  tab_otf_data TYPE itcoo OCCURS 0 WITH HEADER LINE,
  pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE,
  tab_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
  it_ekpo TYPE STANDARD TABLE OF ekpo WITH HEADER LINE.
*  it_docs  TYPE STANDARD TABLE OF docs.
START-OF-SELECTION.
  PERFORM fetchdata.
***************** suppressing the dialog box****************************
  outop-tddest = 'LP01'.
  cparam-no_dialog = 'X'.
  cparam-preview = 'X'.
*  cparam-getotf = 'X'.
END-OF-SELECTION.
  PERFORM callsmartform.
  tab_otf_final[] = tab_otf_data-otfdata[].
  PERFORM createpdffile.
  PERFORM getfilename.
  PERFORM savepdffile.
*&      Form  FetchData
FORM fetchdata .
  SELECT * FROM ekpo INTO CORRESPONDING FIELDS OF TABLE it_ekpo
  WHERE ebeln >  '4500009071' AND ebeln  < '4500009073' .
ENDFORM.                    " FetchData
*&      Form  CallSmartForm
FORM callsmartform .
  CALL FUNCTION '/1BCDWB/SF00000234'
  EXPORTING
  control_parameters         =  cparam
    output_options             = outop
    user_settings              = space
  IMPORTING
    job_output_info            = tab_otf_data
  TABLES
       t_ekpo                     = it_ekpo
* EXCEPTIONS
  IF sy-subrc <> 0.
    MESSAGE  'Error in Calling Smart Form ' TYPE 'I'.
  ENDIF.
ENDFORM.                    " CallSmartForm
*&      Form  CreatePDFFile
*       text
FORM createpdffile .
****removing the initial and final markers from the OTF data**********
*  DELETE tab_otf_data-otfdata WHERE tdprintcom = '//'.
*  READ TABLE tab_otf_final WITH KEY tdprintcom = 'EP'.
*  my_tabix = sy-tabix + 1.
******** appending the modified OTF table to the final OTF table****
* INSERT LINES OF tab_otf_data-otfdata INTO tab_otf_final INDEX my_tabix
************ converting OTF data into pdf data**************************
  CALL FUNCTION 'CONVERT_OTF'
  EXPORTING
  format = 'PDF'
  max_linewidth = 132
  IMPORTING
  bin_filesize = bin_filesize
* BIN_FILE =
  TABLES
  otf = tab_otf_final
  lines = pdf_tab
  EXCEPTIONS
  OTHERS = 5
  IF sy-subrc <> 0.
    MESSAGE  'Error in Creating PDF File ' TYPE 'I'.
  ENDIF.
ENDFORM.                    " CreatePDFFile
*&      Form  SavePDFFile
FORM savepdffile .
  CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
  bin_filesize = bin_filesize
  filename = s_filename
  filetype = 'BIN'
  IMPORTING
  filelength = file_size
  TABLES
  data_tab = pdf_tab
  EXCEPTIONS
  OTHERS = 22
  IF sy-subrc <> 0.
    MESSAGE  'Error in Saving PDF File ' TYPE 'I'.
  ENDIF.
ENDFORM.                    " SavePDFFile
*&      Form  GetFileName
FORM getfilename .
  DATA:
    v_name                  TYPE string,
    v_path                  TYPE string,
    v_fullpath              TYPE string,
    v_filter                TYPE string,
    v_uact                  TYPE i,
    v_guiobj                TYPE REF TO cl_gui_frontend_services.
*    v_filename              TYPE string.
  CONCATENATE 'smrt' '.pdf' INTO v_name.
  CREATE OBJECT v_guiobj.
  CALL METHOD v_guiobj->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
      user_action       = v_uact.
  IF v_uact = v_guiobj->action_cancel.
    EXIT.
  ENDIF.
  MOVE v_fullpath TO s_filename.
ENDFORM.                    " GetFileName

I think the excerpt and link below is the why, but the page talks about server code and not javascript.  I guessing that this is why blank pages work, but not wiki pages.  Can anyone verify this?
The following are general rules for using server-side code on a site page.
If the page is uncustomized, server-side code is supported on the page.
If the page is customized, server-side code does not run, and the page does not render. This includes the code-behind for the page itself.
http://msdn.microsoft.com/en-us/library/office/aa979592(v=office.14).aspx

Similar Messages

  • Filling out PDF forms & Saving with Preview

    I've been having some frustrations with PDFs & Preview.
    1.) Recently I had to fill out the IRS W9 form.  With Preview I filled it out, added my signature and saved it.  Again when I sent it to someone else, they could only see my signature and not any of the stuff I filled out.  On my end, I could see everything.
    2.) Also recently a colleague sent me a PDF form, which he filled out and saved with Adobe Pro. He needed my signature, which I added using the new signature feature of Preview.  Saved it and sent it back to him.  When he opened it on his end, all of the information he had filled out had disappeard, and only my signature remained.  If I opened the same file on my end, I could see everything. 
    So, the new signature feature is great, but what good is it if I can't sign a PDF document and send it back to someone without it making everything else filled out on the document invisible to them?  Yes, I can do Print ==> Save as PDF as a work-around, but that still doesn't answer the question.

    http://www.graniteschools.org/C13/Professional%20Growth%20and%20Evalua/Document% 20Library/SEWE20050602.pdf

  • After 9.3 update getting error printing to Adobe PDF while converting from Powerpoint to PDF

    That happened after upgrading Acrobat Pro 9.1.2 to 9.2->9.3 on Windows XP sp2 platform. Converting from other Microsoft Office 2003 products is totally normal(Excel, Word) Did anyone came accross and know how to fix that?? We have many users with exactly same issue.

    thanks...figured out my problem!
    Date: Wed, 3 Feb 2010 12:24:29 -0700
    From: [email protected]
    To: [email protected]
    Subject: Re: After 9.3 update getting error printing to Adobe PDF while converting from Powerpoint to PDF
    What happens if you try to print to the Adobe PDF printer?
    >

  • PDF document opened with Preview does not show french accents

    Hi everybody,
    I've got some issues with PDF documents opened with Preview.
    They show a blank space for all the accented vowels.
    If I open the same document with Safari, it's the same. But with Chrome, it works perfectly.
    I assume there's a problem with fonts, but, nothing wrong with fontbook (checked duplicates for instance).
    Last information : it looks ok within chrome on my Imac, but the issue comes back when I try to print from chrome app...the accents are gone on the sheet.
    Any idea ? I don't want to install Adobe reader...
    Thanks for your help !
    http://www.art-shots.net/

    I don't want to install Adobe reader...
    Why not?  It can handle some pdf's that Preview can't.  At least it's worth a try.
    In case you change you mind get it from here.

  • My numbers program created on my mac version 3.0 won't work on my ipad version 2.0. It says I have to save the file with preview option but there is no such option in preferences. Any thoughts?

    my spreadsheet created with numbers program version 3.0 created on my mac won't work on my ipad version 2.0. It says I have to save the file with preview option but there is no such option in preferences. Any thoughts?

    For the update to run Aperture must be installed in the system Application folder and named simply Aperture, not Aperture3.2.2 or anything else.
    I don't know if this would also affect photo stream but if your Aperture is misnamed or installed in an incorrect location fixing that to see if it clears up the problem would be a good first step.

  • Error in sharepoint 2010 designer while saving:"Content in the embedded form may be changed by the the server to remove unsafe content.Do you want to reload your page to see the results of the save? "

    Hi, 
    I am doing development  in sharepoint 2010 and facing this very weird problem.
    If I create a site page with the sharepoint look and feel for that site and try to save the site page,i am getting this error:**"Content in the embedded form may be changed by the the server to remove unsafe content.Do you want to reload your page to see
    the results of the save? "** and when i say reload,the server removes some parts of my page, e.g onclick event of html,asp buttons.
    This error just comes for any sharepoint site page,e.g i took a copy of 'How To Read Library' page just edited the text part of taht page,and when i try to save this error again comes up.
    However,if i create a simple aspx page with only htmltags like head body,then thr is no problem ,everything works great. But sharepoint look and feel pages are giving troubles while saving.
    has anybody seen this earlier,what could be the reason for this?
    Thanks

    I think the excerpt and link below is the why, but the page talks about server code and not javascript.  I guessing that this is why blank pages work, but not wiki pages.  Can anyone verify this?
    The following are general rules for using server-side code on a site page.
    If the page is uncustomized, server-side code is supported on the page.
    If the page is customized, server-side code does not run, and the page does not render. This includes the code-behind for the page itself.
    http://msdn.microsoft.com/en-us/library/office/aa979592(v=office.14).aspx

  • Service order IW32 - change header data while saving with UE

    Hello
    I have the following problem. I need to clear while saving
    order in IW31/2 one single fields this is CAUFVD-ABGSL
    but I cannot find any user exist that could allow me to CHANGE this field I tryied to use :
    IWO10009 IH-Auftrag: Kundenprüfung zum Zeitpunkt 'Sichern'
    but it has only CAUFVD as importing parameter *"  IMPORTING
    *"     VALUE(CAUFVD_IMP) LIKE  CAUFVD STRUCTURE  CAUFVD
    while I need to change one field while saving order
    Did somebody dealt with this problem
    I will be really gratefull for help
    Best regards
    Bogumila

    Hi,
    I've had a request for one of my customers to automatically change this field as well.
    Apparently, it was possible to change the CAUFVD structure, but it wasn't updating the database table AUFK.
    First of all, I wrote a new function module to update it straight in the AUFK database table, using the order ID and the provided RA key. This because using FM BAPI_ALM_ORDER_MAINTAIN threw an error.
    FUNCTION Z_0PM_CHANGE_RA_KEY.
    *"*"Update Function Module:
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(IV_AUFNR) TYPE  AUFNR
    *"     VALUE(IV_RA_KEY) TYPE  ABGR_SCHL
         UPDATE aufk SET abgsl = iv_ra_key WHERE aufnr = iv_aufnr.
    ENDFUNCTION.
    Then in user exit PPCO0001 - FM EXIT_SAPLCOBT_001 I'm calling this in an update task, to avoid any current object locks while saving. It's working both in transactions IW31 and IW32:
    SELECT SINGLE absl FROM z0pmrakey
            INTO lv_ra_key
            WHERE auart = lv_auart_rep
              AND ilart = lv_ilart_rep
              AND eqtyp = lv_eqtyp_rep.
          CALL FUNCTION 'Z_0PM_CHANGE_RA_KEY' IN UPDATE TASK
            EXPORTING
              iv_aufnr       = lv_aufnr
              iv_ra_key      = lv_ra_key.
    In case you have any questions, please ask.
    Kind regards,
    Joris

  • Getting Error as Limits Not Defined while saving IT_0008

    Hi Folks..
    I am getting a message as "Limits not defined" while saving infotype basic pay our client payroll is international (it is a green colour message only) but i am unable to save the infotype entry. Request you to please advice me where to check to get resolve of this issue.
    Thanks
    sap_hr

    just a shot in the dark... due to lack of information
    i assume you use T710 for basic wage, there you should define the lower and upper limit for the payment. if these are not available for the entered payscale and level this message can occur

  • Pdfs print fine with preview, not at all with adobe reader

    this is a relatively new issue that popped up sometime in the last month or so. when i try to print any pdf document with adobe reader, to my HP laserjet P1505, i get the following error:
    /usr/libexec/cups/filter/pstoraster failed
    if i open up the same document with preview, it prints fine. i updated my printer software, and reinstalled adobe reader with no change. what gives?

    here's what popped up in that log just now when the print failed:
    thanks for looking at this!
    D [10/Sep/2010:08:38:48 -0400] [Job 215] argv[6]="/private/var/spool/cups/d00215-001"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[0]="<CFProcessPath>"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[1]="CUPS_CACHEDIR=/private/var/spool/cups/cache"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[2]="CUPS_DATADIR=/usr/share/cups"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[3]="CUPS_DOCROOT=/usr/share/doc/cups"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[4]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[5]="CUPS_REQUESTROOT=/private/var/spool/cups"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[6]="CUPS_SERVERBIN=/usr/libexec/cups"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[7]="CUPS_SERVERROOT=/private/etc/cups"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[8]="CUPS_STATEDIR=/private/etc/cups"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[9]="HOME=/private/var/spool/cups/tmp"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[10]="PATH=/usr/libexec/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[11]="[email protected]"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[12]="SOFTWARE=CUPS/1.4.4"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[13]="TMPDIR=/private/var/spool/cups/tmp"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[14]="USER=root"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[15]="CUPS_SERVER=/private/var/run/cupsd"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[16]="CUPS_ENCRYPTION=IfRequested"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[17]="IPP_PORT=631"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[18]="CHARSET=utf-8"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[19]="LANG=en_US.UTF-8"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[20]="APPLE_LANGUAGE=en-US"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[21]="PPD=/private/etc/cups/ppd/HPLaserJetP1505.ppd"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[22]="RIPMAXCACHE=8m"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[23]="CONTENT_TYPE=application/postscript"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[24]="DEVICE_URI=usb://Hewlett-Packard/HP%20LaserJet%20P1505?serial=CA4467F "
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[25]="PRINTER_INFO=HP LaserJet P1505"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[26]="PRINTER_LOCATION=MOS525macSobeck"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[27]="PRINTER=HPLaserJetP1505"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[28]="CUPS_FILETYPE=document"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] envp[29]="FINALCONTENT_TYPE=printer/HP_LaserJetP1505"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Started filter /usr/libexec/cups/filter/pstops (PID 99017)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Started filter /usr/libexec/cups/filter/pstoraster (PID 99018)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Started filter /Library/Printers/hp/laserjet/hplaserjetzjs.bundle/Contents/MacOS/rasterToHPZJS (PID 99019)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Started backend /usr/libexec/cups/backend/usb (PID 99020)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Starting ESP Ghostscript 7.07.1...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Running /usr/local/bin/gs -dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH -dNOMEDIAATTRS -sDEVICE=cups -sstdout=%stderr -sOUTPUTFILE=%stdout -c -
    D [10/Sep/2010:08:38:48 -0400] [Job 215] /usr/libexec/cups/filter/pstoraster: line 58: /usr/local/bin/gs: No such file or directory
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Page = 612x792; 18,14 to 594,778
    D [10/Sep/2010:08:38:48 -0400] [Job 215] slow_collate=0, slow_duplex=0, slow_order=0
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Before copy_comments - %!PS-Adobe-3.1
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %!PS-Adobe-3.1
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %ADODSCEncoding: MacOS Roman
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%Title: 125vocab2.pdf
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%Creator: Adobe Acrobat 9.3.4
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%For: osu
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%CreationDate: 9/10/10, 8:37 AM
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%BoundingBox: 22 40 590 774
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%HiResBoundingBox: 22.4091 40 589.5909 774
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%CropBox: 22.4091 40 589.5909 774
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%LanguageLevel: 2
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%DocumentNeededResources: (atend)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%DocumentSuppliedResources: (atend)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%DocumentNeededFeatures: (atend)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%DocumentSuppliedFeatures: (atend)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%DocumentData: Binary
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%PageOrder: Ascend
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%Pages: (atend)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%DocumentCustomColors: (atend)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] %%EndComments
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Before copy_prolog - %%BeginDefaults
    D [10/Sep/2010:08:38:48 -0400] [Job 215] usb: AppleLanguages="en-US"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] STATE: +connecting-to-device
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Looking for 'Hewlett-Packard HP LaserJet P1505'
    D [10/Sep/2010:08:38:48 -0400] [Job 215] load_classdriver(/System/Library/Printers/Libraries/USBGenericTOPrintingClass.p lugin) (kr:0x00000000)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Opening connection
    D [10/Sep/2010:08:38:48 -0400] [Job 215] load_classdriver(/System/Library/Printers/Libraries/USBGenericTOPrintingClass.p lugin) (kr:0x00000000)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] STATE: -connecting-to-device
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Sending print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Read 59 bytes of print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] CUPSSC_CMD_DRAINOUTPUT received from driver...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Wrote 59 bytes of print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Read 16 bytes of back-channel data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Using unbuffered writes.
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Executing Shutdown().
    D [10/Sep/2010:08:38:48 -0400] [Job 215] CommandInterface does not exist.
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Releasing the Command Interface.
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Entering ProcessStatusMessages(60.000000)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] About to read CUPS back channel...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Read 319 bytes of print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] CUPSSC_CMD_DRAINOUTPUT received from driver...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Wrote 319 bytes of print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Got USB transaction timeout during read
    D [10/Sep/2010:08:38:48 -0400] [Job 215] ...back channel read returned; -1 bytes returned.
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Exiting ProcessStatusMessages
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Entering ProcessStatusMessages(1.000000)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] About to read CUPS back channel...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Read 18 bytes of print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Wrote 18 bytes of print data...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] ...back channel read returned; -1 bytes returned.
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Exiting ProcessStatusMessages
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Sent 396 bytes...
    D [10/Sep/2010:08:38:48 -0400] [Job 215] Got USB transaction timeout during read
    D [10/Sep/2010:08:38:48 -0400] [Job 215] End of messages
    D [10/Sep/2010:08:38:48 -0400] [Job 215] printer-state=3(idle)
    D [10/Sep/2010:08:38:48 -0400] [Job 215] printer-state-message="No pages found!"
    D [10/Sep/2010:08:38:48 -0400] [Job 215] printer-state-reasons=none

  • Yosemite crippled PDF text annotation with Preview.

    In previous versions of preview, you used to be able to select 'textbox' markup tool and one-click create textboxes wherever you want on a pdf. Now, with the new Yosemite, selecting 'text' markup tool  creating a textbox in the middle of the screen, not where-ever you click. This cripples the productivity of annotating lecture slides during a lecture. I don't want my text box to always appear right in the middle of the page- I want to click to place it.
    Also, why is it vertically center justified- who, EVER, used vertically center justified text rather than vertically top justified text?
    Are there anyways around this?

    The link below provides instructions for annotating a pdf in Yosemite Preview, and additional links at the bottom of this page provide instructions for several other pdf editing capabilities:
    Select and copy text in a PDF
    Fill out and sign PDF forms
    Add, delete, or move pages in a PDF
    Crop or rotate a PDF
    Add effects to a PDF
    https://support.apple.com/kb/PH20218?locale=en_US&viewlocale=en_US

  • Cannot change size of picture (in Ko) when saving with Preview

    Hello all,
    I need your help please.
    When I modify a picture with Preview, like resize it for example, then I want to save the picture, I cannot change the size in Ko like I used to be able to with Snow Leopard.
    Before, in the "Save as" menu, there was an arrow to decrease or increase the "weight" in Ko of the picture. This arrow is still there, but it does not show the number of the actual weight of the picture anymore (is it 400 ko, or 500 ko, or 600 ko, etc...).
    Anyone has the same problem ?

    I tried the steps you mentioned and found that this issue is also present in Previous versions as in PSE 10 also.
    I will suggest you to check "Convert Files to" check box and then select "JPEG Max Quality" from corresponding drop down in order to maintain the quality of your JPEG image.
    You can do it specially in case you are processing JPEG files and your image quality will remain same.
    Hope this will help you.

  • Urgent: How to resolve empty error PDF while working with @section

    Hi,
    I am using <?for-each-group@section://Rowslist/row;column1?>. It works fine until there are rows inside the Rowslist. In case Rowslist section does not contain any row element. it throws an exception with the output pdf file saying that this file is empty and can not be opened.
    I tried to close this group inside an if condition to check for existence of rows inside the Rowlist, but the exception is coming even with that approach. Please help me in resolving this issue.
    Thanks and Regards,
    Aditya

    Hi
    I also have a similar problem in my bipublisher reports:
    When there are no rows found, the message is being displayed successfully in the report.
    But there is also a blank page present when there are rows found. (I presume this is caused by the section break)
    Does anybody know a way to get rid of the blank page when there is data present (then we, of course, don't need the message and the blank page)?
    Thanks!
    Edited by: 830186 on Jan 21, 2011 4:23 AM

  • "Error loading BASIC for document" while saving (solved)

    In case someone else has this problem here's my solution.
    I have a network (Netware 6.5) installation of SO7 (WinXP and 98).
    My PC's have harddrives that are protected by Deep Freeze.
    I start the Quickstart from a Run entry in the registry.
    Starting with PU5, the first time I save a document I get 10-15 "Error loading BASIC for document...". After clicking OK on all those the document is saved and everything works fine. If I close SO and and reopen it everything works.
    Rebooting the PC and trying to save a document gives me the error again (since Deep Freeze reset whatever change was made when I clicked through the error messages).
    After some hours of debugging I noticed that when the quickstart icon pops up in the systray a new directory named __basic_60 is created in the user directory of the client installation. Removing that prior to starting Write or Calc made the saving error dissappear.
    My workaround solution is to remove the gid_Procedure_Rename_Basicdir procedure and it's reference in gid_Module_Root in instdb.inf that's located in the program directory of my network install.
    However it must be a bug that the __basic_60 directory isn't removed as default, right?
    - Peder

    Dusty wrote:I deleted ~/.openoffice2 and it fixed the issue on reconfiguring it.
    If deleting the .openoffice.org2 directory is a bit drastic for you, you can fix the problem by going into ~/.openoffice.org2/user/basic and editing the dialog.xlc and script.xlc files.  You need to remove the line at the end that says WebWizard in both these files. 
    That will get rid of the two error messages you are likely getting.
    Btw, anyone else miss the Projects functionality in Kate?   Darn stupid sessions.  Oh well...

  • "Error in determining Local currency" while saving the service order.

    Hi Gurus,
    I am facing a strange proble, while adding components to my service order. The system throws error " Error determining local currency: ER type 'M' date 05.11.2007 from SGD to RMB RC 4 ".
    the customer is from singapore and am issuing the material from local plant (every where SGD is maintianed as the currency). We have maintained the exchange rate also between these currencies.
    Can anybody throw some light on this issue????
    Prase

    Closed the thread...

  • PDF report saving with double .pdf extension

    Hi Team,
    SR Ref: SR 3-5640054491
    We came across an issue where in the .pdf report generated out of our BI publisher process is
    showing a double .pdf (<xyz>.pdf.pdf) extension, when trying to save from the browser on a MAC - this is reproducible and consistent.
    However the data inside the file is proper .
    We don't see this issue on a windows machine.
    Can someone help us on understanding this behavior and resolving this.
    Regards,
    Koduri S Chandra Prabhu
    Oracle HRMS Payroll
    Edited by: user13587486 on Aug 13, 2012 11:57 PM

    You do not need to provide file extension since it's already added. Mac OS X hides file extensions by default, you can choose to show all file extensions, overriding the "Hide extension" setting in the "Get Info" window. To do this, click on the desktop to activate the Finder if is not already active and select "Preferences..." from the Finder menu. Then click on the Advanced tab in the Finder Preferences window. Finally, check the "Show all file extensions" box. All file extensions will now be visible both on the desktop and in open windows. If you want to hide file extensions again, simply open the Finder Preferences window and uncheck the box.
    Edited by: hidekoji on Aug 14, 2012 9:52 AM

Maybe you are looking for