How to set Page Setup default from letter (8.5 x 11) to legal (8.5 x 14)

Hi,
when I open a pdf document in Adobe Reader and go to print it defaults to 8.5 x 11 (Letter). Is there away to set the default to 8.5 x 14(Legal). I can change it manually by clicking page layout or printer properties but I have to do this everytime I print. Not sure if this has to be done on the creating of the document side.
Thank you,
Mike

mwsmith7295 wrote:
Not sure if this has to be done on the creating of the document side.
Yes, it's then when the page size is specified.

Similar Messages

  • How to set page setup in ssrs report level

    Hi All,
    Can any one suggest pls.
    I have a SSRS report which has 50 column data.
    When i am exporting it to PDF its giving me 20 pages.How can i make it in 2-3 page max.
    Please suggest and also when i am exporting to excel it looks fine but when printing it its giving me two page.How can it fit to 1 page in excel
    pls help.

    Hi i_pr,
    In SQL Server Reporting Services (SSRS), it is designed to use 2 different rules in pagination: Physical pagination and Logical pagination. Physical pagination is used to the print control and the TIFF and PDF rendering extensions. It is controlled by the
    PageSize properties.
    If we want to use 2-3 pages to display these data, we can modify the PageSize to work around the issue. However, if we print the report, it maybe truncated. Because the limit of print paper. Did you get the extra blank page when you export report to PDF?
    If so, please refer to the following thread to reduce the pages.
    http://blogs.msdn.com/b/chrisbal/archive/2006/08/10/694892.aspx
    In SSRS, if we have no page break in the report, we will get these data in one page when we export the report to Excel. The print layout is relate to paper size. Alternatively, we can adjust the report in Excel to work around the issue.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • How to change page setup in reader 10.0.1?

    Can anyone help me out with this one please, each time I print, I need to change the page setup from Landscape to Portrait, I would like to know how to set this as default but only for Adobe Reader.
    I know that if I change the setting on the Printer then this will set it permanently for all applications, but I only want to set it for PDFs.
    If it cannot be done, please let me know, or if this has been fixed in a later version of Reader please let me know so I can try this.
    Thanks    

    You cannot. Each time Acrobat or Reader starts it simply reads the attributes of the system default printer. It does not store any attributes.

  • How to set an Application Item from PL/SQL

    I am attempting to set an Application Item
    After login to my app, I want to retrieve a row from my SETTINGS table and populate some Application Items with the settings information so that I can
    display some of that settings information on every page.
    Just to start, I created one Application Item named F106_YEAR
    I then created a Shared Components Application Process which executes on New Session: After Authentication
    I created this process as an Anynomous PL/SQL block.
    declare
    aucyr varchar(4);
    begin
    select year into auctyr
    from settings;
    :F106_YEAR := aucyr;
    end;
    I've tried a couple of other Syntax tricks attempting to reference the Application Item F106_YEAR from within PL/SQL (like V('F106_YEAR') but nothing seems to be working.
    I'm sure that I am missing something simple. Can someone tell me how to set an Application Item from PL/SQL?
    Thanks in advance.

    I'm still doing something wrong because this is not working for me.
    I've tried both of the following versions as an Application Process set to run on New Session after Authentication:
    declare
    auction_year varchar(4);
    begin
    select year into auction_year
    from PBUUC.SETTINGS where rownum < 2;
    :F106_AUCTION_YEAR:=auction_year;
    end;
    and I also tried:
    declare
    auction_year varchar(4);
    begin
    select year into auction_year
    from PBUUC.SETTINGS where rownum < 2;
    APEX_UTIL.SET_SESSION_STATE (p_name, p_value);
    end;
    F106_YEAR is a global Item (shared components).
    The select statement works just fine in SQL*PLUS so I know that it is correct.
    If I run the debugger and log into the application, here is the output. Shouldn't I see my Application Process get called if it is set to run on New Session after Validation?
    My Application process is named RETRIEVE_AUCTION_SETTINGS
    0.01: A C C E P T: Request="P101_PASSWORD"
    0.01: Metadata: Fetch application definition and shortcuts
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -04:00
    0.01: NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en-us
    0.01: Fetch session state from database
    0.02: ...Check session 695371898690095 owner
    0.02: ...Check for session expiration:
    0.02: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.02: Session: Fetch session header information
    0.02: ...Metadata: Fetch page attributes for application 106, page 101
    0.03: ...Validate item page affinity.
    0.03: ...Validate hidden_protected items.
    0.03: ...Check authorization security schemes
    0.03: Session State: Save form items and p_arg_values
    0.03: ...Session State: Save "P101_USERNAME" - saving same value: "jps"
    0.03: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.03: Branch point: BEFORE_COMPUTATION
    0.03: Computation point: AFTER_SUBMIT
    0.03: Tabs: Perform Branching for Tab Requests
    0.03: Branch point: BEFORE_VALIDATION
    0.03: Perform validations:
    0.03: Branch point: BEFORE_PROCESSING
    0.03: Processing point: AFTER_SUBMIT
    0.03: ...Process "Set Username Cookie": PLSQL (AFTER_SUBMIT) begin owa_util.mime_header('text/html', FALSE); owa_cookie.send( name=>'LOGIN_USERNAME_COOKIE', value=>lower(:P101_USERNAME)); exception when others then null; end;
    0.04: ...Process "Login": PLSQL (AFTER_SUBMIT) wwv_flow_custom_auth_std.login( P_UNAME => :P101_USERNAME, P_PASSWORD => :P101_PASSWORD, P_SESSION_ID => v('APP_SESSION'), P_FLOW_PAGE => :APP_ID||':1' );
    0.06: ...Process "Clear Page(s) Cache": CLEAR_CACHE_FOR_PAGES (AFTER_SUBMIT) 101
    0.06: Nulling cache for application "106" page: 101
    0.00:
    0.00: S H O W: application="106" page="1" workspace="" request="" session="695371898690095"
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -04:00
    0.01: NLS: wwv_flow.g_flow_language_derived_from=0: wwv_flow.g_browser_language=en-us
    0.01: Application 106, Authentication: CUSTOM2, Page Template: 2904114531488186
    0.01: ...Session ID 695371898690095 can be used
    0.01: ...Application session: 695371898690095, user=JPS
    0.01: ...Determine if user "JPS" workspace "1040027630222986" can develop application "106" in workspace "1040027630222986"
    0.01: ...Check for session expiration:
    0.01: Session: Fetch session header information
    0.01: ...Metadata: Fetch page attributes for application 106, page 1
    0.01: Fetch session state from database
    0.02: Branch point: BEFORE_HEADER
    0.02: Fetch application meta data
    0.02: Computation point: BEFORE_HEADER
    0.02: Processing point: BEFORE_HEADER
    0.03: Show page template header
    0.03: Computation point: AFTER_HEADER
    0.03: Processing point: AFTER_HEADER     
    0.04: Computation point: BEFORE_BOX_BODY
    0.04: Processing point: BEFORE_BOX_BODY
    0.04: Region: Auction_Title F106_AUCTION_YEAR

  • How to set page number & current date in sqlplus result

    how to set page number & current date in sqlplus result

    Hi,
    Use the TTITLE command. For example:
    SET     PAGESIZE     15
    TTITLE     LEFT  &_date     RIGHT  "Page:" FORMAT 999 sql.pno     SKIP 2
    SELECT     ROWNUM
    ,     ename
    FROM     scott.emp
    ;Output:
    12-Jan-2011                    Page:   1
        ROWNUM ENAME
             1 SMITH
             2 ALLEN
             3 WARD
             4 JONES
             5 MARTIN
             6 BLAKE
             7 CLARK
             8 SCOTT
             9 KING
            10 TURNER
    12-Jan-2011                    Page:   2
        ROWNUM ENAME
            11 ADAMS
            12 JAMES
            13 FORD
            14 MILLER 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data. If your question is based on commonly available tables, like those in the scott schema, then you don't have to post any sample data: just post the output.
    Explain how you get those results from that data.
    Always say what version of Oracle (and other relevant softward, SQL*Plus in this case) you're using.

  • How to set page margins in Numbers 3

    I just migrated from MS Excel after decades of use. I can't find out how to set page margins using the new Numbers 3 version. I believe I've exhausted all reference materials and the most relevant was an method in Numbers 8 & 9... both of which have a different top menu selection.  The answer is probably right in front of me and simple as it sometimes happens when learning new software...

    Hi caforestfire,
    There is no direct equivalent to page margins in Numbers 3.0. It's more oriented toward sharing on the web and on iPad screens than toward traditional printing.
    However, there are ways to achieve the effect of margins.  The idea is to first position your content (tables, charts, etc) on the canvas of a sheet, using rulers and guides if you want (you can drag the rulers onto the canvas to help in placement):
    Then you File>Print and in Print Preview fiddle with the slider until you get the white space you want around your content:
    Then click Print.
    For many purposes it works quite well. It's just a different approach from what we're used to in Excel, and the old Numbers 2.3.
    SG

  • How to set page break for Narrative view???

    Hi All,
    I have created a report in Narrative view using HTML code. I am stuck how to set page break based on a column in Narrative view. If anybody is aware of the issue pls let me know how to overcome this situation. Or if this can be done using HTML code itself pls let me know how to do it.
    Thanks & Regards
    Thenmozhi

    Hi Honey,
    I am not sure on ur requirement but you can achieve page break with a column using pivot view by dragging that column into section area and editing section properties to Insert Page break option.

  • How to set page numbers in scripts

    Hi,
        i want page numbers at bottom of page,
      please tell me how to set page numbers in scripts?

    Hi,
    In footer
    use this
    &PAGE& / &SAPSCRIPT-FORMPAGES&
    &PAGE& of &SAPSCRIPT-FORMPAGES&
    reward if it helps..
    regards,
    Omkar.

  • How do I change the default from CS6 to Photoshop CC when I open a photo from Bridge CC?

    How do I change the default from CS6 to Photoshop CC when I open a photo from Bridge CC?

    Thank you. That works when I double click a RAW image, (opens in ACR then when I open from there it goes to CC)  but when I double click a jpg it goes straight to CS6. I'm hoping there is a way to change the default, but haven't found yet. I don't want to remove CS6.

  • How to Publish Pages to WebServer from DreamWeaver

    How to Publish Pages to Webserver from Dreamweaver.. Please
    Advice..
    Kinda forget :(
    Or shall i use FTP software, which one is good?

    Which part of the F1 Help files are you not following?
    Really. It's all
    right there under FTP.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "owaisrauf" <[email protected]> wrote in
    message
    news:ek1npn$pbc$[email protected]..
    > Can you explain me how to do it..
    > I have gone to SITE and then Manage Sites, and then
    clicked New.
    > And put FTP information of the Server.
    > But how shall i transfer files.
    > PLease explain in detail i will appreciate it
    >

  • HT201684 In Yosemite this no longer works, has anyone figured this out? How to set a custom default umask for all applications?

    In Yosemite this no longer works, has anyone figured this out? How to set a custom default umask for all applications?
    I've tried everything to get a custom umask set for all apps. It just seems impossible...
    Is there a replacement for launchd-user.conf?

    Please file a bug report: https://bugreport.apple.com
    I am sure this is something that got lost, like environment variables, in the Yosemite/iOS merger.

  • ERPI: how to set up drill through from Planning to EBS

    Hi,
    When you guys know how to set up drill through from Planning to EBS through ERPI ??
    I encountered the following message when I tried to drill :
    no drill through reports found at this location
    I think I didn't set up the drill through functionality properly.
    Regards,
    Eddy

    Can you check the log file for any errors? Also, check if the drill regions are created in the application. You can navigate to process details in ERPI and select the show log link for the corresponding process id. That should indicate if the drill regions were created on the target.
    Thanks,
    Bala

  • How to set the HOME link from two frame jsp page to no frame main page?

    Hi all,
    i have one main jsp page named as main.jsp.
    From the main.jsp, i can click the button and link to the twoFrame.jsp.
    This twoFrame.jsp have another two different jsp inside the frame called Aframe.jsp and Bframe.jsp.
    i try to put HOME in the Aframe.jsp(one of the page inside twoFrame.jsp) but only the Aframe.jsp manage to link to main.jsp but the Bframe still there.
    My question is: How to set the HOME link button from this twoFrame.jsp to the main.jsp? what i want is from twoFrame.jsp(two frame) to main.jsp(no frame).
    rgds,
    Bryan523

    No offense, but this is basic HTML. You shuold look into learning HTML before getting too deep into JSP. Try this: http://www.w3schools.com/html/default.asp
    But as a more specific answer, you have to set a target for the link to the _parent of your frame:
    <a href="main.jsp" target="_parent">Home</a>

  • How to set Pages and Numbers to become default applications for attachment?

    I installed Leopard and have just installed iWork.
    I started noticing that the applications of .doc and .xls that come in file attachments in my mail do not use Pages and Numbers as their default application.
    .doc uses TextEdit
    I copied the file to the desktop, changed the default app to Pages, but it still doesn't work. All new mails with .doc still uses TextEdit as default app.
    How to change this?

    parkview84capt wrote:
    With the Lion update, microsoft office 2004 is no longer available to open my word and excel documents. I can open them with pages and numbers when I click "open with" but how do I set pages and numbers to be my default to open these documents. Thanks
    Use the info pane. command-i
    always open with,  set default

  • How to set pages to export all doc's in PDF format as default

    Could anybody tell me how I can set pages to save/export all the documents produce in PDF format. I run a small plumbing company and like to send all my estimates in PDF.

    You can use Automator action –Launch AppleScript, insert following code into:
    set destF to (path to desktop folder)
    tell application id "com.apple.iWork.Pages"
      set fName to name of the front document as string
      set fName to text 1 thru -7 of fName
      set destLoc to ((destF as string) & fName & ".pdf")
      export front document to file destLoc as PDF
    end tell
    Select no input, you can limit this service for Pages only (not necessary), and save it as Service.
    In system Preferences you can now add shortcut for this action.
    Script always export front (active) document to PDF on your Desktop (overwrite existing!!).
    This could help: http://www.ostricher.com/2014/12/how-to-assign-keyboard-shortcuts-for-os-x-apps/

Maybe you are looking for

  • Itunes - Keep getting an error message after installation

    Hi there, I have Vista and have downloaded the latest itunes package and then installed it on my pc, everyting installs ok, but then when i click the icon to launch the program i get a message saying there should be a folder called itunes which is us

  • Queries related to iViews in EP.. :)

    Hello All, I have few queries related to iViews in EP: 1> How should I create an iView out of an EAR file thats deployed on server? 2> Do I always need a par file to create an iView? 3> Suppose I have a Web project (containing servlet). How will I cr

  • How to change text in banners

    How to change text in banners

  • Migrate existing data base to oracle 10g and cluster it

    hi we are currently using sql server 2000 and due to some servere dead locks in the application and due to some load issues we wanted to migrate it to oracle 10g. At the same time we wanted to have clustered environment in the same server That is win

  • I can't put the photo in my iPod

    I used the iTunes to sync the photos into my nano. But it showed "Updating iPod.Do not disconnect" for a long,long time. The photos did not sync to my iPod. How can I do?