How to set default .PDF file extension for Form Downloads

I am trying to find a way of setting the PDF file extension when I download forms.
I author the forms under a Plus subscription and am then downloading the forms under a basic subscription Collaborator account (diffrent person)
If I don't include .pdf as the file type when downloading a form with a unique name as the Collaborator, it downloads without a file extension.
Remembering to continually add the pdf file extension is a pain so I'm hoping there is away of setting this as a defaulet for my 'collaborator' account ?

Firstly, apologies for multiple posts, I received messages saying my comment hadn't posted and also checked my history before re-submitting.
Okay, the process is
1. Log in as the Author account and I can rename the file without having to set the extension
2. Log in as the Collaboartor account - same PC, browser etc and it doesn't save with a default file extension; HOWEVER, I have done this whilst also being logged in on a diffrent browser as the Author
3 I have just tried logging out as Author and only being in as the collaborator and the form downloaded with a default PDF.
4. I had someone else log in as the collaborator from thei PC and browser whilst I was still signed inunder my author account and again they were unable to save as PDF by default
This has me wondering if there is anything at play when you've got multiple Users?

Similar Messages

  • How to attach a PDF file TO the form so that recipients can access the file as a resource?

    How to attach a PDF file TO the form so that recipients can access the file as a resource?

    Sorry we do not support this. What you can do though is add a Formatted Text element and add a link to a PDF. To insert a link add some text, select the text and right click on the text (or look under the Insert menu in the top right of the scene)
    Gen

  • Default WorkBook file extension for all users of BEx 7 in Offce 2007

    Hi Experts
    We recently started using office 2007 with BEx 7.
    However, many users still has Office 2003 installed.
    I am looking to set the default file extension for all users to be .XLS.
    I know that this option is available in Client level (Global Settings - Use XLS file format ) but I require that the checkbox will be automatically checked.
    Is there a way to do it?
    Thanks,
    Yaniv

    Hello Yaniv,
    Yes, you can maintan them globally.
    this can be done in registry under :   HKEY_CURRENT_USER\Software\SAP\BEx\Analyzer.
       UseXLSFileFormat
       Type: String Value
       Value true or false
    For more information refer to SAP Note 1254112
    Regards,
    Arvind

  • How to set default encoding and charsets for jsp and servlets.

    Hi,
    Is there any possibility to set default encoding or charset for jsps and servlest (for both request and response)?
    For example in Weblogic such parameters can be set in weblogic specific configuration files (weblogic.xml).
    Thanks in advance.

    Hi,
    I created one request with logo in the header an page in the footer etc. and called StyleSheet. After you can import this formats by each request.
    You can do this in compound layout.
    Regards,
    Stefan

  • How to set default pdf folder for Adobe 8.1.4

    Every time I want to open or save a file in Adobe I have to navigate through the computer to the folder I use for pdf files. Can I set a default folder somehow so Adobe always looks there first?
    Thanks,
    Richard

    > Can I set a default folder somehow so Adobe always looks there first?
    No.

  • How to set default PDF print locations to be same as source file

    Is it possible to make the "Save to" location for files created using the Adobe PDF print driver to be the same location as the source file?
    When I checked the prefs dialog box in the Adobe PDF print driver, the only setting I found was to make "PDF Output Folder" either the "My Documents" folder or "Prompt for PDF File Name." I wish there were a third option that said "Same as source file."
    -Danny

    Hi Daniel,<br /><br />Yes, it is possible to do so.<br /><br />Here is the solution:<br /><br />1) Open the PDF.<br />2) File->Print<br />3) Click the Properties button available on Print Dialog Box.<br />4) Select the Adobe PDF Settings Tab and you will find static text "Adobe PDF Output Folder", Go for "Browse" button available against that and select your preferred location.<br />5) Now the drop down menu will display all the options i.e. "My Documents" , "Prompt for PDF File Name" and "<Your selected Option>".<br /><br />I hope this will help resolve your issue.<br /><br />Thanks,<br />Atul Agarwal<br />Adobe Systems

  • How to Set default Workbook as .XLS for Bex 7.0

    Dear Experts,
    I have a customised default workbook set for Bex 7.0. The Extention of this Workbook is .XLSM
    Currently it is not accessible using Excel 2003 due to format issue.
    1)Kindly let me know what should be done so that I can open this Workbook in Excel 2003.
    2) Suggest a way to set the default extension for Bex 7.0  "Custom" workbook (Not SAP standard, the option is available in Global settings-->Default workbook) to .XLS.
    Thank you,
    Nandita

    Dear Nandita,
    The only correction for this situation is documented on these two notes below:
    1339061 - BExAnalyzer: opening XL 2007 files in XL 2003 not possible
    1267924 - BExAnalyzer: Use XLS as File Format when using Excel 2007
       With Frontend Patch 800 a new property "Use XLS File Format" in "Global
       Settings" dialog is available when using BExAnalyzer with Excel 2007 and
       the SAP Default Workbook is being used.
    So, everytime when you created a new workbook, check the flag of "Use XLS File Format" checkbox and save the workbook.
    Then you will be able to open with Excel 2003.
    Best Regards,
    Edward John

  • How to upload a PDF file, zip it and download the zipped file?

    Hi Experts,
    I have a requirement to upload a PDF file, convert that to a ZIP file and download it. If anyone has worked on this requirement, can you please guide me on this? Thanks.
    Avi

    Here you go.  Hope it helps.
    REPORT  zrich_0004.
    DATA: lt_data TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_zip_content TYPE xstring.
    DATA: lv_size  TYPE i.
    DATA: lv_filename TYPE string.
    DATA: lv_path TYPE string.
    DATA: lv_fullpath TYPE string.
    DATA: lt_filetab TYPE TABLE OF file_table.
    DATA: ls_filetab LIKE LINE OF lt_filetab.
    DATA: lv_rc TYPE sy-subrc.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_up TYPE string DEFAULT 'C:\upload.pdf' .
    PARAMETERS: p_down TYPE string DEFAULT 'C:\download.zip' .
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_up.
      REFRESH lt_filetab. CLEAR ls_filetab.
      cl_gui_frontend_services=>file_open_dialog(
          CHANGING
            file_table              = lt_filetab
            rc                      = lv_rc
        EXCEPTIONS
          OTHERS                  = 5 ).
      READ TABLE lt_filetab INTO ls_filetab INDEX 1.
      IF sy-subrc = 0.
        p_up = ls_filetab-filename.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_down.
      CLEAR: lv_filename, lv_path, lv_fullpath.
      cl_gui_frontend_services=>file_save_dialog(
         CHANGING
           filename             = lv_filename
           path                 = lv_path
           fullpath             = lv_fullpath
         EXCEPTIONS
           OTHERS               = 4 ).
      p_down = lv_fullpath.
    START-OF-SELECTION.
      CREATE OBJECT lo_zip.
    * Read the data as a string
      cl_gui_frontend_services=>gui_upload(
        EXPORTING
          filename                = p_up
          filetype                = 'BIN'
        IMPORTING
          filelength = lv_size
        CHANGING
          data_tab                = lt_data
        EXCEPTIONS
          OTHERS                  = 19 ).
    * convert binary to xstring
      CLEAR lv_content .
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = lv_size
        IMPORTING
          buffer       = lv_content
        TABLES
          binary_tab   = lt_data
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
    * Get the file name of the uploaded file
      DATA: lv_upfilename TYPE string.
      DATA: lv_tmp TYPE char1024.
      DATA: lv_tmp_file TYPE char1024.
      lv_tmp = p_up.
      CALL FUNCTION 'STRING_REVERSE'
        EXPORTING
          string  = lv_tmp
          lang    = sy-langu
        IMPORTING
          rstring = lv_tmp.
      SPLIT lv_tmp AT '\' INTO lv_tmp_file lv_tmp.
      CALL FUNCTION 'STRING_REVERSE'
        EXPORTING
          string  = lv_tmp_file
          lang    = sy-langu
        IMPORTING
          rstring = lv_tmp_file.
      lv_upfilename = lv_tmp_file.
    * add to zip file.
      lo_zip->add( name = lv_upfilename content = lv_content ).
      lv_zip_content   = lo_zip->save( ).
    * Conver the xstring content to binary
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = lv_zip_content
        IMPORTING
          output_length = lv_size
        TABLES
          binary_tab    = lt_data.
    * download
      cl_gui_frontend_services=>gui_download(
          EXPORTING
            bin_filesize = lv_size
            filename     = p_down
            filetype     = 'BIN'
          CHANGING
            data_tab     = lt_data
          EXCEPTIONS
            OTHERS       = 24 ).
    Regards,
    Rich Heilman

  • How to Set Default Value into a Tabular Form Element

    Hi,
    Hoping someone can assist with my Tabular Form query.
    I am using Oracle ApEx v3.0.1
    I was wondering how one can set a default value to one of my tabular form columns within Oracle ApEx v3.0.1 as I cannot see how to do it?
    Thanks.

    Hi Tony
    can you pl. help me how you resolve this? I have one tabular form and I am trying to set default value as :APP_USER, I type this in default value but somehow it is not displaying this value.
    thanks
    Dax

  • How to set default object placement & wrap for drag-and-dropped files

    I am working on a document into which I need to drag-and-drop a number of files from the Finder: JPGs, PDFs, and so on. Each time I drag a file into Pages, by default its placement is set as "Floating (doesn't move with text)" and "Object causes wrap" is active.
    I would much prefer that the default settings be "inline" and "object does not cause wrap," so my drag-and-dropped images will appear within the text and move with it.
    Is there a way to change this default setting?

    Niel's suggestion is good. You might also try posting your question in the Tiger Server forums. I'm sure Tiger Server has several ways of dealing with this.

  • Setting file extension for flex download

    Hi, I have a flex/flash download app that I use on my website, but a lot of people have trouble with it because they rename the file and accidentally remove the .zip from the end of the file name.  Is there any way that i can prevent this?  I have noticed that when i click to download, the "Save as Type" drop down is blank.  It looks like this:
    File name: myFileName.zip
    Save as type:
    I'm hoping that im just missing a param that i can set to .zip so that it will look more like this:
    File name: myFileName
    Save as type: .zip
    Thanks!

    Hi,
    You can restrict them to save in any other format by making the check.
    Simply add listner for the Event.OPEN on the fileReference and inside this check for your allowed extension,if the extension is not what you want then
    simply right a line there like:-
    fileReference.cancel();
    And addtionally you can give any alert that your file should be of that particular extension.
    with Regards,
    Shardul

  • 10.9.5 mail how to set default ISP (have 4) for outgoing mail

    In mail, how can one of four outgoing ISP's be set as the default?  Thanks!!

    From the Mail menu bar, select
              Mail ▹ Preferences...
    The Mail preference dialog opens. Select the Composing tab from the row of icons at the top. From the menu labeled
              Send new messages from:
    choose the outgoing server you want to use.

  • How to combine two PDF files without consolidating form fields

    I have two PDF documents with form fields in each. Someone else created the documents. Certain fields were untitled and thus were given names as "undefined" in each document. However, some of those fields contain different information in each document. When i combine the document, these fields mix and incorrect information gets put into certain fields.
    For example, there is a blank field in doc A, titled "undefined." In doc B, there is a field with "johnson" titled "undefined." When I combine them, "johnson" appears in the blank field.
    Is there a way to combine the documents without combined fields?

    Is this the correct window I should see? I hit start and it said it was completed, but nothing seemed to happen.

  • Attach pdf files in oracle forms 11g

    Hello everyone, I would like to know if is possible and how to attach a pdf file in oracle forms, and how to open it to read it
    thanks

    hello ,
    u can also try out a HOST command in Oracle Forms.
    Give path of PDF file and it will open PDF directly.
    Thanks
    HARSH SHAH

  • Set default PDF extension for Downloaded Forms - Collaborator

    Is there a way of making .PDF the deafult file extension for downloaded forms?
    I'm trying to dteremine if this feature is controlled by the actual subscription type pr the access type.
    I have a Basic User Account setup as a Collaborator on a form which I author under a Plus subscription. I would like the default file type to be .PDF for any forms that are saved with their own unique name. However, unless I include the .PDF as part of the file name, the file saves without an extension.
    Is there a way that I can set this as a default for the Collaborator because having to remeber to add the file extension is a pain.

    Please see my response in your other post of the same question: http://forums.adobe.com/thread/1343769?tstart=0
    Thanks,
    Josh

Maybe you are looking for

  • Cancelation of service entry sheet created in Pervious Fiscal Year.

    Dear Experts, I want to revoke the service entry sheet created against the WBS Element. The Service Entry sheet is created and accepted in pervious fiscal year.When the Service entry sheet is revoke it is giving the error for Budget Exceeds. We are h

  • Inserting multiple records to table in web dynpro

    I am inserted single record in table created in web dynpro view. If i insert the second record then the first record has been overwritten. How to display all rows that i was inserted without overwritting.. Can any one send me the coding???

  • IDoc Acknowledgement from SAP PI to SAP R/3 Server

    Hi Experts,               I am sending an IDOC from sap r/3 to SAP PI. After receiving the IDoc I need to send back one acknowledgement to the sap r/3 server, without reaching the target side. Could you guys please help me? Thanks Dipankar

  • How can I have my 21.5-inch iMac replaced?

    In October last year, I decided to buy a 21.5-inch iMac, but I have had a few problems since receiving it in November last year. Firstly, about a month after receiving the iMac, my son noticed a grey "mist" forming underneath the glass display. Due t

  • Maps are not showing

    Hi, Maps in iPhoto are not displayed on my home wifi. It worked last week end on another wifi but not on mine. I reset my wifi router and it worked during 5 minutes, then iPhoto could not show me the full maps with all pictures neither the maps for t