Page format for landscape page layout in smart forms

Hi Guys,
Please give the solution for which page format used for landscape layout used for creating smartforms.

Hi Vinayak,
Even though there are no specific page formats available for landscape layout, you can use a standard DINA4 page format and put the page as land scape layout. 
This can be done in the Page's Out put Tab, there is an option Print Attributes in which you can select either Portrait format or Landscape format.
Hope this will help you.
Regards,
Ajith V

Similar Messages

  • Page Format for landscape/legal paper for ALV Grid report

    Hi!
    I have a request to set up a particular ALV Grid report as a background job with the report output printing on legal-size paper with landscape orientation.  We currently don't have any reports set up to print on legal size paper.  What do I need to do to set this up?  We currently use X_58_170 or X_65_255 which print on letter-size paper.  I cannot seem to find a page format for landscape legal other than LEGAL which seems to be available only for SAPscript or Smart Forms.  Any help will be greatly appreciated.
    Best Regards,
    Nik von Ruden
    Edited by: Nik Von Ruden on Oct 8, 2010 1:11 AM

    Hi,
    Thanks for you reply.
    I cannot control left and right margin in PDF. Also, it is a PDF file so eventhough somehow you are able to change left and right margin, the content does not adjust itself to fit the legal page (as it does in word or excel).
    Let me know if there is any other option.
    Thanks,
    RS

  • How can we change page format from A6 to A4 in smart forms

    Hi,
    Currently smart form is printing output in A6 page.Now my customer wants in A4 page.How can we change the page format from A6 to A4.Now the output should print in A4 page instead of A6 page.
    I checked the page format in form attribtes it is DINA4.Do in need to change the page format here.
    Is there any settings for this.Plase advice.I appriciate your guidence in this regard.Thanks in advance

    Hi Vijay,
       As the form is formated to A4, now the one A4 sheet and take a print out as well take a print with A6 sheet check the difference.  If the data is not printed in right way then u need to do alignment.
    If it's printing in the same as it used to be, then check the settings in SPAD. 
    Br,
    Laxmi.Suryadevara

  • Copying page format for other pages

    Hi,
    I would like to keep the same format (font, background color, header color) for every page of my website. I am using a Welcome, About Me, Movie, and Blank template but would like to keep the same style. Is there a way to easily do this? Because I am finding it tedious to find the exact color over and over again.
    Thank you!
    Tara

    I don't know if this will suit your purposes, but you can always right-click or Control-click on a page in the Site Organizer (left-hand side of the iWeb window) and then select "Duplicate" from the contextual menu that pops up. This will make an exact copy of everything and then you can change the specifics on the page from there. This is the easiest way to do what you are asking, I believe.

  • My browser displays text only with very little page formating for all pages. How do I enable page formating with images etc.?

    I have a multi-user windows based machine where both users have the same browser, search engine, plugins, applications, etc. I use this machine primarily as an entertainment system (ie. TV client/server using a TV Tuner card, Music & Video Player, etc.). Most of my time on this machine is maintaining security and drivers. However, my wife uses it primarily as a social media communication device. My user account on this machine displays all content correctly. Where as she has crashed both Facebook games while playing as well as her mail (GMail). After one of these crashes it "appears" she is displaying HTML text with formatting but without images. I've tried to fix this without success. We have another machine that seems fine so it's not her login on our network, just the one machine. Please help!!!

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Multiple page format for single smartforms

    We have a requirement to get the output in different page formates for a smartform.
    How to achieve this???

    suppose you r using a program to print the smartform.
    Just check this program.
    REPORT z_sf_demo1 .
    PARAMETERS p_bukrs LIKE ekko-bukrs.
    DATA: fm_name TYPE tdsfname.
    DATA: ssfctrlop LIKE ssfctrlop.
    Function to get the function name to run SMART FORM.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = 'ZJAYRA_DETAIL'
    VARIANT = ' '
    DIRECT_CALL = ' '
    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.
    To pass parameters for CONTROL_PARAMETERS
    ssfctrlop-no_open = ' '.
    ssfctrlop-no_close = 'X'.
    CALL FUNCTION fm_name
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = ssfctrlop
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    bukrs = p_bukrs
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    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.
    ENDIF.
    To pass parameters for CONTROL_PARAMETERS
    ssfctrlop-no_open = 'X'.
    ssfctrlop-no_close = ''.
    ssfctrlop-startpage = 'PAGE2'.
    Function to run SMART FORM from third page to last page.
    CALL FUNCTION fm_name
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = ssfctrlop
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    bukrs = p_bukrs
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    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.
    ENDIF.
    ssfctrlop-no_open = 'X'.
    ssfctrlop-no_close = ''.
    ssfctrlop-startpage = 'PAGE3'.
    Function to run SMART FORM from third page to last page.
    CALL FUNCTION fm_name
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = ssfctrlop
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    bukrs = p_bukrs
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    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.
    ENDIF.
    I have also sent a mail to your gmail id regarding the details of my program.
    Hope your query will be solved.
    <b>Rewards pioint for helpful answers.</b>
    Regards,
    Abhay.

  • Set page title for all pages

    Hi
    Can I set page title for all pages in project, by using filter or something else? Or the only way is to specify the name in each page?
    Michal

    Might be possible with filters, but that would be a rather expensive task. Just create an include file which you include in all pages. This way you also have a single point of maintenance.

  • What happened to the add to home page option for web pages. Can't find it.

    What happened to the add to home page option for web pages. Can't find it.

    Try stopping Safari followed by resetting your phone: double-tap the home button, locate Safari at the bottom (swiping if necessary), tap and hold until it wiggles, tap the minus sign.  Now reset: hold the on/off and home buttons until you see the Apple logo (ignore the off slider that appers first), then release.  If it still is missing you may need to restore your phone, which will put a fresh copy of the iOS on your phone (see http://support.apple.com/kb/HT1414).

  • Page format for SAP-Script not working in 4.6C

    Hi all,
    I have a problem regarding check printing.
    I am using SAP version 4.6C
    The size of paper for check printing is
              width  = 231 mm
              Height = 304 mm
    So for this I have created a new page format with these details in SPAD.
    Then I assigned this Page format to spool format and assigned that spool format to SAPWIN driver. I have assigned this page format to the SCRIPT that is used for check printing .
    But when I am taking the print out for the check with new page format, the printer don’t print till the end of page, it prints till the total amount on check and then stops there. So this creates an alignment problem when taking printout for multiple checks.
    Please give some solution for this.
    Regards,
    Bharat.

    I guess you are printing on dot matrix printer. If yes, try to do some physical printer settings for the dot matrix printer by following the printer manual. I guess you have to change the page size.. or set default printer settings... it may help you to solve your problem...
    if not goto your device types tab in SPAD and select device types.. select your device from the list (for ex, SAPWIN) click format and goto the format that you have inserted for this device types.. double click on your format, you will see printer Indialization.. try to write code like this
    set page length to 8.5 inch (=52 lines at 6 LPI)
    \e\0x43\0x44
    Note the above hexa decimal value can be obtained by going through the printer manual.
    Close the thread once your question is answered.
    Regards,
    SaiRam

  • Page format for 132 column dimension in smartforms

    hi guys
    *In smartforms what is the pageformat for 132 column paper i.e 360 * 310 mm is there any  standard pageformat provided by sap or have to create a new one ,,,how to create a new pageformat.*
    Edited by: ahamed13 on Jun 6, 2010 8:44 PM

    Ahmed,
    create the new page format in SPAD tcode. Go to the device where u want to create the page format as per the requriement.
    Regards..

  • Error in setting up page format for Script.

    Hi,
        I have set up a customized page format.
    I set up Page format, Format types and Device types.
    I have throughly checked wit the other working formats, everthing seems right..
    Page format : zmed_po - Portait
    Format type : zmed_po
    Error - No Printer font maintained for ZMED_PO.
    Please help me out.
    Cheers,
    Sam

    HI Sam,
    For this u need to setup the printer at OS level. There u need to setup the fonts and etc.. related to the printer. I hope this is eror from OS level...
    regards
    reghu

  • Page Formatting for downloaded pdf version

    the document is not formatting the pages correctly - any suggestions how to control the page formatting?

    Its been almost 3 years, has there been any update on this issue? We are experiencing the same issue. Our numerous customers are thinking about just using a different pdf reader that supports this standard. All workarounds we have encountered are hacks around the URL and are unacceptable for our customers.
    Please respond, we would hate for Adobe to lose all of the users that our customers have.

  • New Discussion pages formatted for iPhone - pls!!

    Anyone else agree that Apple need to get an iPhone verion of these discussion pages? Typing is horrible. Too much lag when typing. Come on Apple! Even your own website is not formatted for an iPhone.

    Well the script here constantly saves what you type so the "lag" is when it is saving while typing. Happens in BeeJive or Meebo as well because processing is gonig on while typing.
    Apple isn't going to make an iPhone only version because that would go against the fact they released a phone with a real browser to hit real sites instead of mobile ones. Now yes it spawned many sites to make mobile sites (and even geared to the iPhone) but if Apple were to do it, it will say to the world, look we made a real webbrowser on a phone, but we had to change our site to let it work better. Not good PR.

  • Pages format booklet style page

    How do I format a page to print as a booklet? I do not see how I can do this with pages...

    Welcome to Apple Discussions
    There are a few ways to do this. The first two involve setting your Pages document in File > Page Setup… to landscape orientation. I originally wrote this for Pages 2. In Pages 3 or 4, use the page layout mode for #s 1a & 1b.
    1a - Use linked text boxes. This is easier done with the layout showing. First you need to add a page break to have two pages. Click in the body area & then Insert > Page Break. Now click outside the layout area to enter object mode & click the "T" in the tool bar or Insert > Text to create a text box & type something in it. This is to keep the box from disappearing if you click elsewhere & the text can be replaced later. If you already have some text to paste in you can just paste while in object mode & a text box containing your text will be created. You will now need to click outside the layout again & drag the cursor toward the text box to select it. You can now position the first text box in the lower right of your 2-page document. It is easier to see where it goes if you have the document set up with 2 columns. Click on the blue-outlined tab at the lower right of the text box to create a new of the same size & move the box to the upper left. Repeat for a box for the upper right & again for the lower right. You will now have 4 linked text boxes.
    1b - Start as in 1a creating a 2-page document with 2 columns in landscape orientation. For this one you will use the body text area. Just type or paste your text in as normal, starting in the upper left. When you have your text done, cut all of the text in the first column (upper left), insert a column break after the last character on the now lower left column & paste the cut text after it in the now lower right column.
    Neither one of these will let you automatically use page numbers because Pages "sees" each page & you actually have 2 pages per page.
    2 - Use Create Booklet Service to create a booklet with any number of pages (best in a multiple of 4).
    For users of Leopard or earlier, use Cocoa Booklet. For a folded letter-size booklet start with your Pages document in Legal size & larger than normal font size. Export the Pages document to a PDF & then drag the PDF to the icon of Cocoa Booklet. It will create a new PDF in booklet form.
    I like the results better with CocoaBooklet, so I save my Pages document as a PDF on my iMac running Snow Leopard & then transfer the file to my Mac mini running Leopard to make the booklet with CocoaBooklet & then copy it back to my iMac.

  • How to crate a page template for multiple page instances?

    Hello,
    When I use the Administration Portal to create a page with portlets in the Portal Resource Library, I can choose to use that page it in my portal. The problem is that I can use it only once. How can I crate a page template with portlets so I can use use it as a template for many page instances in one portal?
    I'm using Portal 8.1.6.
    Regards,
    Eirik

    Hey Dave, See the image below:

Maybe you are looking for

  • ADF 11.1.1.5 - Oracle Dynamic UI Template

    Hi All, I am using Oracle Dynamic UI Template to leverge it's features. Under the navigation facet i have used tree componet, but i am getting the following error when i tried to debug my VO at the Bolded Point. private transient TreeModel homemodel

  • How come I took a video and there's no sound when I play it back?

    I went to the drake concert last night and took a lot of videos, but when I go to watch them on my phone no sound sound comes out!

  • Skype cant connect on Mac

    Hi, I am currently using the newest version of skype on my mac book air and after the update I could log in just fine, although just today I tried uninstalling and even changing my password on my phone to login to my skype but the message "skype cant

  • File generation from Report 3.0

    Hi, I have Developer 2.1 and I tried to run a report from a Form (RunProduct). It works, but when (from the prewiewer) I generate a file (for example a HTML file) this file has no data in. That is it has all the headings (constant data)but no data ba

  • Microsoft Exchange Server/Exchange 2010/Mailbox/Database Copy Mounted

    Good Morning everyone!!! I Have SCOM 2007 R2 CU5 Envoirnment and i am monitoring Microsoft Exchange 2010 SP1 Messaging infrastracture, I have Microsoft Exchange  2010 SP1 Monitoring MP, MP version is 14.2.71.0. Case:- When exchange is having issue wi