How can i copy standard forms? et.al.

good day experts.
i would like to ask the following:
A. About FORMS...
1. How can I copy the whole standard program of a form written/designed in SapScript to make a "z_xxxxxxxxx program"?
2. How can i check the print program of a certain form?
3. How can I convert sapscripts form into smartforms?
B.About REPORTS...
4. How can i set the page length and width of a report?
5. How can i set the margins(left, right, top, bottom) of a report?
Please give me details/steps to do on each questions.
Thanks a lot. Rewards will be given.

A. About FORMS...
1. How can I copy the whole standard program of a form written/designed in SapScript to make a "z_xxxxxxxxx program"?
use tcode SE37 to create a NEW form with the name z_xxxxxxx, and in any of edit screen, you can follow the menu path "Form -> Copy From ...", choose the standard form.
2. How can i check the print program of a certain form?
There are some database table for store the information, such as, TNAPR ... and so on.
3. How can I convert sapscripts form into smartforms?
It's something difficult to covert sapscripts into smartforms, for more details, you can read the SAP COURSE BC470.
B.About REPORTS...
4. How can i set the page length and width of a report?
In the ABAP editor, put the cursor on the keyword REPORT, and press F1, you will get what you want.
5. How can i set the margins(left, right, top, bottom) of a report?
Use WRITE and SKIP.

Similar Messages

  • How ca we copy standard print program of SMARTFORM?

    guyz...
    how can we copy standard print program of RLB_INVOICE of invoice SMARTFORM to a Z program in ECC 6.0???
    regards
    Zid.

    Hi,
    enter the program name in the SE38 editor
    click on copy button
    then it will ask you for the new name
    when ever you click on the copy transfer buton
    then it will raise a pop and saying that what ever you want from the program like
    1) INCLUDES
    2)SCREENS
    3)USER INTERFACES
    4)VARIANTS
    5) DOCUMANTATION
    ETC..
    hat ever you clcik on that check box
    Thanks.

  • How can I copy a number of like fields and paste to reduce form creation time?

    How can I copy a number of like fields and paste to reduce form creation time?

    Creating Form Fields by Ted Padova

  • How can i copy a blank form and add it to the original?

    How can I copy a blank page of a form and add it to the original?

    So, if I want to fill in blanks on a form where I need to add more pages to fill history, what program do I need? In Adobe Reader, I can edit and fill in blanks, but I cannot duplicate more blank pages.

  • How can I copy and paste a pdf form onto my Mavericks Clipboard. I only see word-wrapped text.

    How can I copy and paste a pdf onto my Mavericks Clipboard. I only see word-wrapped text.

    Yes, Thank you for using the term Place. You moved my focus off the clipboard, and Place set me back on course. Somewhere, the terms Copy and Paste need to be tagged to Place and Export. I'm a database designer who only uses Illustrator for forms the database fills. My need isn't yet met, but the rest should come with reading the right references. Thanks Larry!

  • How can you copy form data from an online PDF, in your browser?

    Just a quick query, I've recently filled out an online application and I filled this out on an online PDF form. This is the form link:
    http://3fivetwo.com/dloads/application_pack_-_admin_long10.pdf
    How can I copy the data I typed into this form, to a word document for example? Or is there any way I can save this as a PDF with all the data in the form, to send it as an email?
    I've downloaded the form, but it just shows blank pages with no fields filled.
    Thanks very much!

    download the form to your local disk
    open it with Adobe Reader and fill in all the details
    save it
    send the completed form by email

  • How can we copy a Bean Form to an other Bean Form?

    How can I copy an entire Bean Form to an other new Bean Form ?
    I found it tricky because I cannot paste in the Generated Code of the new Bean Form, and I haven't found a way to copy the Components of the Form.

    Hi RON,
    Sorry. I make a mistake. I have a flash application with many forms. When a user filled his information in a form, I want to save the form as an image file on the local file system. 
    Thanks,
    han

  • How to add new fields in sap copied standard form using itcsy structure

    hi guys,
      i want add some fields in sap script copied standard form using itcsy structure.
    let me know the procedure with any example.
    thanks,
    anitha.

    Hii anitha
    plz c code below
    Syntax goes like this
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    Example:
    In script form
    /: PERFORM READ_TEXTS IN PROGRAM 'Z08M1_FORM_EKFORM1'
    /: USING &EKKO-EKORG&
    /: USING &EKPO-WERKS&
    /: USING &EKKO-EKGRP&
    /: USING &EKKO-BSTYP&
    /: CHANGING &COMPNAME&
    /: CHANGING &SENDADR&
    /: CHANGING &INVCADR&
    /: CHANGING &COMPADR&
    /: CHANGING &COVERLTR&
    /: CHANGING &SHIPADR&
    /: CHANGING &REMINDER&
    /: CHANGING &REJECTION&
    /: CHANGING &POSTADR&
    /: CHANGING &LOGO&
    /: ENDPERFORM
    In program
    FORM Read_texts - To extract the standard texts from the table *
    FORM READ_TEXTS TABLES IN_PAR STRUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA : L_EKORG TYPE EKORG,
    L_WERKS TYPE WERKS_D,
    L_BSTYP TYPE BSTYP,
    L_EKGRP TYPE BKGRP.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKORG' .
    CHECK SY-SUBRC = 0.
    L_EKORG = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKPO-WERKS' .
    CHECK SY-SUBRC = 0.
    L_WERKS = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKGRP' .
    CHECK SY-SUBRC = 0.
    L_EKGRP = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-BSTYP' .
    CHECK SY-SUBRC = 0.
    L_BSTYP = IN_PAR-VALUE.
    CLEAR Z08M1_ORG_TEXTS.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = L_BSTYP.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = SPACE.
    ENDIF.
    READ TABLE OUT_PAR WITH KEY 'COMPNAME'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COMP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SENDADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_ADRS.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'INVCADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_INVC.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COMPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_CPAD.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COVERLTR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COVR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SHIPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_SHIP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REMINDER'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RMDR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REJECTION'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RJCT.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'POSTADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_POST.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'LOGO'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_LOGO.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    reward points if useful
    regards
    Jaipal

  • How can I get a form back that I just messed up?

    How can I get a form back that I just messed up on forms central.  It was perfect and I just ruined it!!!

    Hi;
    If you still have the form open, on the Design tab you can use the "Ctrl+Z" to undo changes multiple times (CMD+Z on Mac). 
    One thing to note for future, if you have a form that is in a good state and you are going to experiment with more changes you can (assuming a paid account that allows more than 1 form) Duplicate the form so you can work in the duplicate and then copy those changes back once you are satisfied with them.
    Thanks,
    Josh

  • How can I unactivate a form in a pdf so I can share an uncustomizable document after filling it?

    How can I unactivate a form in a pdf so I can share an uncustomizable document after filling it?

    Thanks George, this seem to be what I was looking for!
    But when I try to flatten the pdf I get the following message : "security settings for digital signatures in this file prevent flattening"
    I try to save a copy and change the security settings and it still doesnt work... what I'm missing here?
    Thanks

  • How can I open a Form located in UNIX

    Hi all,
    I have a problem!
    The system in my company is a 3-tier architecture:
    Database-tier: SUN SOLARIS
    Middle-tier (Oracle Application 11i): SUN SOLOARIS
    Clien-tier: Windows 2000/98
    I want to customize the Oracle application's forms. How
    can I open the forms source located in the UNIX (middle tier)
    with forms 6i in Windows 2000?
    If I FTP the source forms from UNIX to my working environment
    (windows 2000), the attached library will be lost. How can
    I easily do the development in such situation?
    Thank you very much!!!!!!

    Just remember,
    the binaries will not be compatible. You can open an .fmb file and modify it on windows machine (assuming you are going to use the same version of developer), after the modifications are don on the windows end, you need to move (copy, ftp, your choice) back to Solaris, and recompile the same form on Solaris to generate a binary (.fmx) for that particular platform. If you made modifications on libraries and/or menus of the same application on windows end, you need to do the same thing - recompile it on the unix end to have the related plx and mmx files.

  • How can I copy one customised layout in SE71 ?

    Can you please tell me how can I copy one customized layout(e.g.  starts with Z or Y) in SE71 into another?
    Regards,
    Subhasish

    Hi Subhasish......
    in se71 screen u will find:
    <b>UTILITIES--> COPY FROM CLIENT</b>
    using this u can copy a form....
    Reward points if useful.
    Suresh......

  • How can i save my form design as a pdf?

    how can i save my form design as a pdf?

    You will need to have a paid FormsCentral account (Basic or Plus) or a copy of Acrobat Pro XI. 
    If using a paid FormsCentral account with the form open for editing you select file menu File-> Save As PDF Form...
    If using Acrobat Pro XI you will create the form using FormsCentral for Acrobat and select menu File-> Save As PDF Form...

  • How can i run my form application on the other site?

    how can i run my form application(already compiled) on the other computer without developer/2000 environment?
    What should i do ?
    Thanks in advance!

    Well you have to install ORACLE developer runtime on your client side. then just copy your complied forms (fmx) files to your client machine and set it up to run.
    Hope this helps
    Faisal

  • How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?

    How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?  I can physically copy the tunes as mp3's but the phone does not seem to be able to play all of them.   Do I need to copy an entire album or can I just pick & choose individual songs?   The phone is question is an LG running who knows what for an operating system.

    AAC is Advanced Audio Coding.  Basically it's a format that sounds better than MP3 but doesn't take up as much space as a lossless format (like you'd have on a CD).  More than likely you've had that encoding turned on when you ripped your music into itunes (it's the default encoder).  Therefore your LG phone won't play them.
    You need to turn off the AAC format by going to the iTunes menu, Preferences, General (at the top), then clicking the "Import Preferences" button.  Change the AAC Encoder to MP3 Encoder.  After that you'll have to make MP3 copies of your songs by right clicking them and selecting "Create MP3 Version."  You'll get a copy of the song that should transfer to your SD card and have MP3 encoding.  Hopefully your phone will play that.

Maybe you are looking for

  • Global Variable in Single View

    Hello All, Can anyone help me out . How to decalre a variable which can be available in all methods in a same view,without using context attribute .As I have a view and I have to pass value between methods of a single view. Thanks in Advance Regards,

  • HOW TO INSTALL OLDER DRIVE for EPSON r1800

    Hello SInce I upgraded to Lion, my Pictures are no longer printing as WYSIWYG on my Epson R1800. It seems from forums, that the newer driver isn't working corectly. I was able to find the installation DMG of an older Driver - but it is not found by t

  • After upgrade to Snow Leopard, comprehensive view of notes not visible

    Last night I upgraded from Leopard to Snow Leopard. Overall, the upgrade went smoothly and quickly. However, now when I look at my Notes in Apple Mail, I cannot see them all in a single list, as I could in Leopard. The notes all appear to be there. I

  • XML as the dbase back end.

    Does anybody knows how to use the XML as a holder for the values that will be given by the user for example.Parent's name: ________. then whatever the user's input i should move that and hold that by the xml. i just dont how. i read lot of books but

  • Arch keeps freezing

    I'm on a fresh arch install and for some reason X keeps freezing. At first I thought it was a firefox problem until arch froze without firefox running. Then I thought it was a fluxbox problem so I switched to openbox and it still froze. So I ran an x