FormFlow99 (Jet Forms)

Does anyone know how to send parameters to FormFlow99 forms (jetforms) from Forms 6.0?
Send the jetforms output to the directly to the report server/printer.
Thanks

Hi,
Jet forms are now called as Adobe forms since Adobe took over.
SAP and Adobe collectively developed Intreactive forms which are available in
ECC 6.0
So no more separate server for the Adobe forms (So called Jet forms).
We can easily develop and use Adobe forms in much more effectivey in ECC 6.0
Regards,
Nara

Similar Messages

  • Jet Forms Documents

    Hi, Do anyone of you have any documentation on Jetform designing and resolving issues related to jetforms.
    thanks & regards,
    Bala.

    Please have a look at this would like to start developement in Jet Form... i was in ABAP from 2 yrs
    Regards,
    Rich Heilman

  • Regarding ADOBE Forms[Jet Forms] in ABAP

    Hi,
    Does anybody know about <b>ADOBE Forms[JET Forms]</b> in <b>ABAP</b>.
    If anybody have good material with working examples can you send the material to my personel ID : <b>[email protected]</b>.
    Thanks in advance.
    Thanks & Regards,
    Prasad.

    Just refer these links........
    Dynamic Adobe form generation
    Adobe Form assignment
    and see the web log ...
    /people/achim.hauck/blog/2005/02/04/my-struggles-with-the-adobe-document-services-in-was640
    http://help.sap.com/saphelp_erp2004/helpdata/en/3c/a670692dbc494fb5416fdaa93ee1a9/frameset.htm

  • Smart form and Jet form

    Hi,
    Please let me know the difference betweeen Smart form and jet form and in which scenarios we use them.
    thanks

    HI,
    <b>
    Smart forms</b>
    <u>https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/formPrinting-SAPscript,Smartforms&</u>
    Smartforms: Frequently Asked Questions
    What are the differences between SAP Scripts and Smartforms?
    How can I insert symbols in Smartforms?
    I have a smartform which works fine in DEV. After trasnsporting it to PROD, there is no Function module generated for this smartform. As a result my program dumps in PROD?
    How can I make the Smartforms to choose a printer name by default?
    How can I make the Smartforms to display a print preview by default without displaying the popup for print parameters?
    How can I display the total number of pages in Smartforms?
    How can I display the total number of pages in Smartforms?
    I'm using the variable SFSY-FORMPAGES, I get a star "*" instead of the total number of pages.
    What are the various text formatting options in Smartforms?
    How can I provide a background shading to the table?
    Where can I provide the input parameters to the smartform?
    Where can I define my own global types for the smartform?
    I have defined my own Program Lines, where I have used a global variable G_TEXT. I get an error G_TEXT is not defined?
    I have created a table node for display. Where can I check the condition which must satisfy to display the table?
    How can I define Page Protect in Smartforms?
    What is the difference between Template and Table in Smartforms?
    Where can I define the paragraph and character format for the smartforms?
    What are the differences between SAP Scripts and Smartforms?
    SAP Scripts are client dependent whereas Smartforms are client independent.
    SAP Scripts require a driver program to display the output whereas in smartforms the form routines can be written so that it is standalone.
    An integrated Form Builder helps to design Smartforms more easily than SAP Scripts
    An Table Painter and Smartstyles to assist in building up the smartforms
    On activation a function module is generated for Smartforms
    It is possible to create a Smartform without a main window
    Smartforms generates XML output which can be viewed through the web
    Multiple page formats is possible in smartforms
    How can I insert symbols in Smartforms?
    Select the Text node.
    Change Editor (Click the button above Check near the Editor)
    Go to menu Include->Characters->SAP Symbols
    Choose the SAP symbol that you want to insert.
    I have a smartform which works fine in DEV. After trasnsporting it to PROD, there is no Function module generated for this smartform. As a result my program dumps in PROD?
    The Smartform that is created in the Development may not have the same name in the Production server. So it is always advised to use the Function Module SSF_FUNCTION_MODULE_NAME to get the Function Module name by passing the Smartform name.
    DATA: fm_name TYPE rs38l_fnam.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = 'ZSMARTFORM'
      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.
    CALL FUNCTION fm_name
    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.How can I make the Smartforms to choose a printer name by default?
    In the CALL FUNCTION of the Smartform Function Module, set the output options parameter to set the printer name.
    The output options is of the type SSFCOMPOP which contains the field TDDEST. Set the TDDEST field to your default printer name.
    How can I make the Smartforms to display a print preview by default without displaying the popup for print parameters?
    In the SSF_OPEN function module,
    Set the OUTPUT OPTIONS paramter TDDEST to your printer name.
    Set the CONTROL PARAMETERS and control parameters as shown below,
    control-preview = 'X'.
    control-no_open = 'X'.
    control-no_close = 'X'.
    control-no_dialog = 'X'.
    control-device = 'PRINTER'.
    control_parameters-no_dialog = 'X'.
    control_parameters-no_open = 'X'.
    control_parameters-no_close = 'X'.
    OUTPUT_OPTIONS-TDDEST = 'PRINTER NAME'.
    OUTPUT_OPTIONS-TDNOPRINT = 'X'.
    CALL FUNCTION 'SSF_OPEN'
      EXPORTING
        output_options     = output_options
        control_parameters = control
        user_settings      = ' '
      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.How can I display the total number of pages in Smartforms?
    Use SFSY-FORMPAGES to display the total number of pages in the Smartforms
    &SFSY-PAGE& Current page number
    &SFSY-FORMPAGE& Total number of pages in the currently formatted layout set
    &SFSY-JOBPAGE& Total number of pages in the currently formatted print request
    &SFSY-COPYCOUNT& Original-1,1st copy-2
    &SFSY-DATE& Date
    &SFSY-TIME& Time
    &SFSY-USERNAME& Username
    I'm using the variable SFSY-FORMPAGES, I get a star "*" instead of the total number of pages.
    There may not be enough space in the window to display the variable, either increase the window dimensions or condense the spaces using &SFSY-FORMPAGES(C)&
    What are the various text formatting options in Smartforms?
    &symbol(Z)& Omit Leading Zeros
    &symbol(S)& Omit Leading Sign
    &symbol(<)& Display Leading Sign to the Left
    &symbol(>)& Display Leading Sign to the Right
    &symbol(C)& Compress Spaces
    &symbol(.N)& Display upto N decimal places
    &symbol(T)& Omit thousands separator
    &symbol(R)& Right justified
    &symbol(I)& Suppress output of the initial value
    How can I provide a background shading to the table?
    In the Table Painter, you can specify the color and shading for the table lines.
    Where can I provide the input parameters to the smartform?
    The input parameters for the smartform can be defined in Global Settings->Form Interface.
    The Associated Type must be defined in the ABAP Dictionary.
    Where can I define my own global types for the smartform?
    The global types(within the smartform) can be defined in Global Settings->Global Definitions->Types
    The types defined here will be global through the entire smartform.
    Also the form routines can be defined Global Settings->Global Definitions->Form Routines
    I have defined my own Program Lines, where I have used a global variable G_TEXT. I get an error G_TEXT is not defined?
    Whenever using the global variables in the Program Lines, enter the variable name in Input Parameters if you are going to use(read) the variable. If you are going to both read/write the variable value enter the same in Output Parameters.
    I have created a table node for display. Where can I check the condition which must satisfy to display the table?
    The conditions can be defined in the Conditions tab. In smartforms all the nodes have a condition tab where you can specify the condition to be satisfied to access the node.
    How can I define Page Protect in Smartforms?
    To define Page Protect for a node go to the Output options and check the Page Protection checkbox.
    What is the difference between Template and Table in Smartforms?
    The Template contains a fixed number of rows and columns, where the output is fixed.
    The Table can have variable number of rows
    Where can I define the paragraph and character format for the smartforms?
    The paragraph and character format for the smartforms can be defined in the transaction SMARTSTYLES
    Mohan
    Award points if it adds information.

  • What is the Tcode for Jet form

    what is the Tcode for Jet form

    hi
    good
    go through this link
    http://www.stethos.com/e_sap_extern.htm
    reward point if hlepful.
    thanks
    mrutyun^

  • Migrating Jetform layout to Adobe form layout

    hi,
    Now am involved  sap 4.7 to ecc6 upgrading project.
    what are steps to migrate jet forms to adobe forms without affect layout?
    Thank you..
    Regards,
    B.C.Ganesh

    Hi there,
    Thanks for your reply.
    I want to convert the existing smart form to Adobe Interactive Form.
    Thanks,
    Praveen

  • Print planned delivery cost in PO

    Hello
    How can i print the planned delivery cost in purchase order standar?  because in partner funtion works well in MIRO and the account determination, but when i try to print this item in a purchase order it doesn`t apper only shows the purchase order and item of the main vendor.
    Thanks for your help

    Hi
    Planned delivery cost where you are adding in PO? In conditions tab right? In that case, Your Smart form/Jet form need to be modified to accomodate Planned delivery cost in PO print out.
    I can also suggest you that in some customer design the PO print form in a such a way that it will not be printed. In such cases they include the delivery cost along with material cost. So net price for a line item = Netprice + Delivery cost( While entering PO line item you have to calculate and add the costs.)
    In that case it will appear as a increased price for a line item in a PO print out.
    Hope this helps,

  • Converting .indd or pdf to ifd or mdf format.

    I have built some forms in indesign and save as .indd files.  I can certainly export to pdf.  How can I save these or export them (build them) in .ifd or .mdf files.  I have someone that needs my forms in an old jet form format.  They have requested the forms in .ifd or mdc format.  Is this possible.  If so how do I build them?

    I have never heard about these file types nor aubout Output Designer but I did a look here:
    http://www.adobe.com/products/server/outputdesigner/overview.html (the links away from this page are broken, it seems to be very old.)
    It seems that you can export in different filetypes that are supported from Output Designer like PostScript or JPG.

  • GR message with po number

    Hi,
    GR message is working, but the message has only text mail, but it doesnt have PO or GR number.
    Pls advice on how to configure the sys such that po # & GR# gets updated in the GR message.
    points will be awarded for useful answers.
    regds
    pavan.

    Plz try to Assign the jet form Printer ,U may be using the normal one,So it shows you only the text.
    u can use the same printer,But try to put _j  at the end of the printer.
    Edited by: govardhan reddy on Nov 13, 2008 11:01 AM

  • Question about JetForm Design - we are going to upgrade

    I would like to upgrade our software to Adobe but first I must get all the forms working. We have recently had a Hard Drive crash on a PC that was using Jet Form Design 4.22.206. I replaced the Hard Drive and the program while attempting to keep everything as authentic as the initial installation. I also took the fonts from a remaining Jet Form PC, and replaced the system folder Fonts on the new Hard Drive. Our problem involves compiling the form. When printed, an uncompiled form will print perfect. Though when compiled, and data laid over the image, the font of the data appears wider, although the height is not altered. Normally I would assume the issue had something to do with the process of laying the data over the image. But when the form is compiled on our other Jet Form PC, then laid over with the data on the new PC it seems to work fine. Thus I think it is an issue with Jet Form. Dose anyone remember this software? If so Please help. Anything will be appreciated.

    Though I use the software (version 5.5) all the time, I certainly don't consider myself to be an "expert" but I believe that the "config" folder (under where JetForm is installed) contains the definition information that JetForm uses for the fonts, printers, etc. You might check to see that the files in this folder are the same between the two PCs.
    Also, double check that the font used on the form is the same between the two PCs.

  • Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    I have the 6500A without plus and it is with a LAN cable connected with my Router.
    First make sure you have the latest printer firmware installed.
    Next restart the printer and the Router.
    I had the same. Problem but it went away after rebooting the Router.

  • Hp laset jet p1102w - wi fi print form iPad

    I'm trying to connect the iPad 2 with the printer but I do not have wifi at home. The iPad is online via its mobile key. Is it possible to print form there anyway? Or via bluetooth ? Thank you very much

    Hi @Davide75, 
    Thank you for responding and updating me.
    If the Wireless Direct is not turned on, is the wireless radio turned on?   To turn on the wireless, press the wireless button on the front panel. You will know that the wireless is on because the light will start to blink.   Once the wireless is turned on, please try Printing a Configuration Page.  The configuration page will let you know whether the Wireless Direct is turned on and what the name of the network the printer is broadcasting.
    If the above doesn’t help please include a screen shot of the configuration page. I’ve included the How to take a screenshot post which will walk you through the process.  In addition, do you have access to a computer as we may need it to get the printer set up?  If yes, what is the operating system of the computer?   
    Thank you.
    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

  • Later jet m1212 nf mfp need to move the font down a little to print on premium forms

    I am using pre printed forms and need to re-aling the print (font) down to match the form
    Thanks

    Then use the features within whatever application (e.g. Word) you are using to set a different top margin value for the document.

  • How to change the default JET (JumpStart) password

    I am using JET (Jumpstart Enterprise Toolkit) to jumpstart my servers. The default password, boajrOmU7GFmY, is saved in a encrypted form in jumpstart.conf. I want to change it, how do I know the encrypted form of my new password?
    Tom

    Usage: orapwd file=<fname> password=<password> entries=<users>
    where
    file - name of password file (mand),
    password - password for SYS and INTERNAL (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
    There are no spaces around the equal-to (=) character.

  • Simultaneously Connecting Multiple Tables of the same Database to Textboxes of the same Form using a single ADO Control Code using VB6 Enterprise Edition and MS Access 2007

    Iv 10 Tables consisting of atleast 10 fields each in a single Database. Bt, Im only able to connect 1 table at a time to a form using an ADO Control. Im able to add data from table 'student' to text-boxes in my form. Bt, hw can I add data from field(0) of
    Table 'Student' to Textbox1 and data from field(0) of Table 'Marks' to Textbox2 using VB6??
    This is the current sample coding iv got to connect a single table to a form:
    Global con As New ADODB.Connection
    Global rs As New ADODB.Recordset
    Public Function Connect()
    If con.State = 1 Then con.Close
    con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + App.Path + "\bca.mdb;Persist Security Info=False"
    End Function
    Private Sub Add_Click()
    If rs.State = 1 Then rs.Close
    rs.Open "select * from student", con, adOpenDynamic, adLockOptimistic
    rs.AddNew
    rs.Fields(0) = (Text1.Text)
    rs.Fields(1) = (Text2.Text)
    rs.Fields(2) = (Text13.Text)
    rs.Fields(3) = (Text4.Text)
    rs.Fields(4) = (Text5.Text)
    rs.Fields(5) = (Text6.Text)
    rs.Fields(6) = (Text7.Text)
    rs.Fields(7) = (Text8.Text)
    rs.Fields(8) = (Text9.Text)
    rs.Fields(9) = (Text10.Text)
    rs.Fields(10) = (Text11.Text)
    rs.Update
    MsgBox " Record Added"
    End Sub
    What can I do to add fields from 2 different tables to different text boxes within the same form using a single ado control using vb6 and MS Access 2007??

    Hi,
    Since VB6 product is not supported in this forum, you may go to these forums for support:
    #Where to post your VB 6 questions
    http://social.msdn.microsoft.com/Forums/en-US/6a0719fe-14af-47f7-9f51-a8ea2b9c8d6b/where-to-post-your-vb-6-questions
    Thank you for your understanding.
    Best regards,
    Franklin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Reg: Table name where logical system name will store in R/3 and CRM..

    Hi We are trying to replicate the sales order from CRM 5.0 to ECC 6.0. we mainatined publication, site, subscription and rfc connections. When the sales order is created in the CRM the BDOC is getting posted but it is picking up the wrong logical sys

  • My photostream photos have stopped uploading to my PC.

    My photostream used to work great and quickly sync to my pc.  In mid November it stopped working.  I did not change anything.  I've checked my settings on my phone and photostream is still on, on my icloud control panel photos is checked and in optio

  • WD 500GB firewire now dead. Anything I can do?

    Hi, so the drive that was dying the other day has now died. I'd hooked up an old Glyph 250GB firewire drive and was moving data off of the dying WD drive. My computer froze while the files were being copied and the WD drive disappeared from my deskto

  • Using Flex to develop ERP system

    I am trying to use Flex4 to develop a ERP system. Now i am using Module technology. it's seem some prolbem when dynamic loading module. Thought I have do a force reference in main application. it works. I dont know why and how it happens. our demo si

  • Error during J2EE installation on oracle and AIX 5.1

    I am getting the following error during "Load JAVA database Content" Phase. We are running on AIX 5.1 oracle 9.205 and JDK 1.4.2 :- Mar 10, 2005 1:16:26 PM com.sap.inst.jload.Jload main SEVERE: couldn't connect to DB java.sql.SQLException: Io excepti