Multiple page format's

Hi ,
Multiple page formats is possible in script's
Regards
Suresh.D

Hi,
Yes..It is possible to display multiple page format..
Create a new form which has a different format...
Then in the print program..follow the steps
OPEN_FORM.
START_FORM with the FIRST PAGE FORMat form
end_form.
START_FORM with the SECOND PAGE FORMat form
end_form.
CLOSE_FORM
Thanks
Naren

Similar Messages

  • Footer should be print on last page in multiple page format

    Hi expert,
    I designed form for invoice print ,in that for multiple pages footer should be print on last page only and hight of the main window should be increase (means if footer will display on last page then space of footer should be used for main window in multiple
    page format) 
    for eg .if i have 12 item so 5 items displyed on each page but i want to print 10 item on first page and remaing on second and after that i want to print footer.
    Regards,
    Jyotsna

    Hi,
    Has you tried to create a "new page" copy of FIRST, and make it the LAST_PAGE... On it you are going to create the desired footer.
    The Page Secuence will be something like this:
    If you are trying to print 12 items, then PAGE 1 (10 items) -> LAST_PAGE (2 remaining items).
    Hope it helps you...
    Alexis Sanchez N.
    SAP ABAP Development Consultant
    Molen Services and Consulting, C.A.

  • Multiple page formats in smartforms

    we say that multiple page format is possible in smartforms but not in SAP Script. What does this multiple page format exactly means and whar does label means exactly in smartforms.
    Please help.

    multiple page formats in smart forms means...
    the first can be landscape, and the second one portrait...viveversa is also possible
    label means... for example u want to print addresses of employees in an organisation... then through scripts ypu can print the labels...

  • What is multiple page format?

    hI
    can anybbody tell me what does actually means of script doesn't support multiple page foramt & smart form will  support Multiple page formats.
    Plz tell me in details.
    thanks.

    Hi,
    Scripts also supports multiple page format. You can go to edit and create new page and in layout there is a button for page properties(other attributes). Click it and give next page = page2.
    So this led you to have multi page format script.
    Example: For 1st page you require 6 variable window and 1 main window. From 2nd page onwards you require only 2 variable windows and bigger main window. So for page 2 select only two variable windows and increase the size of main window. And in command line give command
    /: position window.
    Hope this will help you.

  • Whats mean by multiple page formats in smartform?

    Hi! 
      Can u pls tell me whats mean by multiple page formats in smartform?
       Thanks
        Imran.

    Hi Imran,
    multiple page formats in smart forms means...
    the first can be landscape, and the second one portrait...viveversa is also possible
    go with tcode:smartforms,specify some name and go with create.place the cursor on 'Pages and windows' folder.on right side we will have option page format:go with f4 .u will find many page formats.
    Reward points if helpful.
    Regards,
    Omkar.

  • Whats mass printing ?multiple page formating?

    whats mass printing ?multiple page formating?

    hi..
    plz follow the mentioned web link for mass printing ..
    and multiple page formatting is ...
    sapscript does not support multiple page formatting where as smartform does.
    Multiple page formating is nothing havinfg different page formats in  a form.
    eg..
    sapscript zform has 3 pages..
    1 page has portrait
    2 page has landscape format and 3rd page has landascape.
    this is not possible with sapscript..it tends to error. however, you can do so in smartform. Also this is sometime possible in sapscript by creating different form for each page and using the same print program.
    regrds,
    shamim.

  • In smartfrom create multiple page format

    Hi expart..
            In selection screen using select-options . i m puting the debit no 1100019222 to 1100019224 . the output shows only 1 page . n't showing 3 page .in smartform .Pls tell me how to print multiple page . i m using
    data :   l_sform type tdsfname,
             l_fm_name type rs38l_fnam.
    data : control_param like ssfctrlop.
    clear control_param-no_dialog .
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE TEXT-001.
      SELECT-OPTIONS :      s_budat for bsid-budat ,
                                         s_belnr for bsid-belnr .
      SELECTION-SCREEN : END OF block b1 .
         move 'ZS_FI_CREDITNOTE' to l_sform.
      call function 'SSF_FUNCTION_MODULE_NAME'
        exporting
          formname                 = l_sform
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      importing
         fm_name                  = l_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.
      loop at itab_debit.
        if sy-tabix = 1.
          clear control_param-no_dialog .
        else.
          control_param-no_dialog = 'X'.
        endif.
      read table itab_basic with key belnr = itab_debit-belnr .
      CALL FUNCTION l_fm_name
        EXPORTING
        ARCHIVE_INDEX              =
        ARCHIVE_INDEX_TAB          =
        ARCHIVE_PARAMETERS         =
          CONTROL_PARAMETERS         = control_param
        MAIL_APPL_OBJ              =
        MAIL_RECIPIENT             =
        MAIL_SENDER                =
        OUTPUT_OPTIONS             =
        USER_SETTINGS              = 'X'
      IMPORTING
        DOCUMENT_OUTPUT_INFO       =
        JOB_OUTPUT_INFO            =
        JOB_OUTPUT_OPTIONS         =
        TABLES
          itab_debit                 = itab_debit
          itab_basic_value           = itab_basic
          itab_t030k                 = itab_t030k
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5
       new-page.
       endloop.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    but n't working...
    i ll give points...
    regards
    bhabani

    Hi,
    I have Corrected the code.Check and reply.
    data : l_sform type tdsfname,
    l_fm_name type rs38l_fnam.
    data : control_param like ssfctrlop.
    clear control_param-no_dialog .
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : s_budat for bsid-budat ,
    s_belnr for bsid-belnr .
    SELECTION-SCREEN : END OF block b1 .
    move 'ZS_FI_CREDITNOTE' to l_sform.
      control_param-no_open   = 'X'.
      control_param-no_close  = 'X'.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = l_sform
    VARIANT = ' '
    DIRECT_CALL = ' '
    importing
    fm_name = l_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.
    CALL FUNCTION 'SSF_OPEN'
       EXPORTING
      ARCHIVE_PARAMETERS       =
       user_settings            = ' '
      MAIL_SENDER              =
      MAIL_RECIPIENT           =
      MAIL_APPL_OBJ            =
      output_options           =
       control_parameters       = control_param
    IMPORTING
      JOB_OUTPUT_OPTIONS       =
       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.
    loop at itab_debit.
    if sy-tabix = 1.
    clear control_param-no_dialog .
    else.
    control_param-no_dialog = 'X'.
    endif.
    read table itab_basic with key belnr = itab_debit-belnr .
    CALL FUNCTION l_fm_name
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS = control_param
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    itab_debit = itab_debit
    itab_basic_value = itab_basic
    itab_t030k = itab_t030k
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    new-page.
    endloop.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'SSF_CLOSE'
      IMPORTING
        JOB_OUTPUT_INFO        =
          EXCEPTIONS
            formatting_error       = 1
            internal_error         = 2
            send_error             = 3
            OTHERS                 = 4.
      IF sy-subrc <> 0.
      error handling
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    analyse internal error table of Smart Forms
      CALL FUNCTION 'SSF_READ_ERRORS'
        IMPORTING
          errortab = errtab.
      IF NOT errtab IS INITIAL.
      add your handling
      ENDIF.
    Regards,
    Morris Bond.
    Reward Points if helpful.

  • 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.

  • Re : page formats in scripts

    Hi gurus,
        In scripts multiple page formats are not avilable. what exactly it means. can any one pls give the explanation.
    with regards
    aru.

    Hi!
    Multiple page format means landscape and portrait page in one form. This is not possible in SAPscripts.
    Coming to SMARTFORMS this is possible, i.e first page output in portrait and second page output in landscape.
    Regards
    Tamá

  • Is there a way to sort a PDF file with multiple pages by a specific field within the PDF? All pages have the same invoice format and i would like to sort by a field within and then print the documents. (Vendor, PO

    Is there a way to sort a PDF file with multiple pages by a specific field within the PDF? All pages have the same invoice format and i would like to sort by a field within and then print the documents. (Vendor, PO#, Date, ect.)

    When you say field, do you mean specifically a form field, such as a text field? Or is the information regular text on the page?

  • The page contains multiple canonical formats.

    hi i am using WebMatrix seo to check my site, it has giving me 2 errors,
    The page contains multiple canonical formats.
    The page with URL "http://www.petland.ie/" can also be accessed by using URL "http://www.petland.ie/index.html".
    Search engines identify unique pages by using URLs.  When a single page can be accessed by using any one of multiple URLs, a search engine assumes that there are multiple unique pages. Use a single URL to reference a page to prevent dilution of page relevance. You can prevent dilution by following a standard URL format.
    need some help with this, can some explain to me.
    Gman

    Hi Murray,
    do you mean like this for example?
    <a href="index.html" title="petland">PETLAND</a> Pet Superstore, Forte Shopping Centre, Letterkenny, Co.Donegal and check out our <a href="petdeals.html" title="petlands special offers">Special offers</a>. <br />
    <a href="/" title="petland">PETLAND</a> Pet Superstore, Forte Shopping Centre, Letterkenny, Co.Donegal and check out our <a href="petdeals.html" title="petlands special offers">Special offers</a>. <br />
    Hans-G.
    P.S.
    I'm interested too, you know.

  • Scanning Multiple Pages using HP ENVY 4500

    Hi, I have a macbook pro running OSX 10.9.4, and cannot see how I can scan multiple pages.  I have tried using Image Capture and the Scan function under system preferences.  I place the first page on the glass and change format to pdf and check the box that says 'combine into single document'. It usually 'automatically' scans the page at this point, and if I click Overview Scan, it scans again.  If I try to click on "Scan' it says it is done scanning the selected area.  I have no idea what to do after this, or where to find the document (its not showing up in the selected 'Scan To' location.
    Many thanks.

    Hi therelkd123, welcome to the forums
    I understand you are looking to scan a multiple page document with your HP Envy 4500. See the link below for the instructions! Click the link, select "Scan with HP Software" and "How to scan a multi-page original into a single file".
    How to Scan: OS X v10.9
    Have a great weekend
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Scanning multiple pages into one file using MAC

    How do I scan multiple pages and save them into one file or document using a MacBook Pro laptop?  My printer is an HP Photosmart 7520.  When I use this printer and scan from my PC, it does allow me to scan multiple copies and save as one document by just adding pages as I scan.  When I scan with my MacBook Pro, it scans each page, however, I don't get any option or choice to save as one document.  It automatically saves each page as a separate document.

    Try scanning from your Mac. Use Image Capture app in your Applications folder.
    Click once on the scanner on the left side, then click on Show Details along the bottom. Along the right side you will see LOTS of options for scanning and saving.
    One of those is Format, make the Format PDF.  Just below that will be a check box allowing you to scan multiple pages to one file.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Scanning multiple pages into one document

    I have an HP8600 running off a MacBook Pro  - I used to be able to scan multiple pages (both from the auto feed and manually) save them as one document.  Lately though it is saving them each as its own document.  This is happening with both MacBooks connected to my printer.  Thanks

    Hi DCompass,
    Thanks again for trying that for me. Definitely odd that you are not seeing the drop-down. If you don't see Contents, do you see .PDF? Once it is in a .PDF format you should be able to combine into a single-file. From what I have tried.
    If not, then I would recommend to do the following one more time:
    Uninstall the software. Uninstalling the Printer Software.
    Re-install the software using the download from this website. HP Officejet Pro 8600 series Full Feature Software and Drivers.
    Make sure your Mac is up-to-date. About the OS X Mavericks v10.9.5 Update.
    Hope this clears things up for you, please let me know if you have any further issues!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Scanning multiple pages in to a single continuous PDF

    I have recently purchased an HP ENVY 5530 wireless printer for use with my iPad using the HP AIO ('All In One') software app from the i-Store.
    I have a number of paper documents that I wish to scan in to electronic (PDF) format, most of which run in to multiple pages. However, each time I scan a page, the software creates a new PDF file, rather than one continuous electronic copy. I am finding this very frustrating as all I want is one single PDF file containing multiple pages.
    Have read various message boards, forums, FAQs, but can't find any answers so would really appreciate any help anyone can give.
    Thanks!

    Hi Manxie,
    Thank you for the update.
    I wonder if you are choosing to save after each page is scanned? If yes, that would be why each page is being created as a separate file. When you choose the add page icon and then confirm that you want to add a page (see screen shot below) it will return you to the preview/scan screen. I was able to scan 5 pages into one document this morning.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for