Add form to FTR_EDIT

Hello,
I want to add a Smartform to transaction FTR_EDIT  (Edit financial transaction) so that when the user selects Settle a form will be printed. I checked the forum and found BADI named FTR_PARTNER_ASSIGN. Should I use this BADI and how or is it done through customizing?
Thx in advance,
Ali

Hi Ali Abbasgil,
I'm looking for the same smartform. What solution did you find?
Thanks in advance.
Best regards,
João Silva

Similar Messages

  • Cannot add form fields in document

    Acrobat Pro version 9.1.2
    Windows XP SP 3
    I have a document that I cannot add form fields to. When I try I get a message that says "You cannot edit the file as a form due to its security settings.
    When I go to Advanced->Security->Show Security Properties. The security method is set to No Security and everything is "Allow" under the Document Restrictions Summary.
    Where is there a security issue?

    Lori,
    How did you identify the PDF/A option? I am just curious for my future reference. I could not find it.
    ==================
    Rupey,
    The fonts are not embedded and that may also be something to address. A lot of these issues may be related to the 3rd party product used to create the PDF.

  • Can I add forms or text boxes to a pdf in Acrobat that can then be edited in Reader?

    Hi,
    I'm trying to add forms to a pre-existing pdf in Acrobat which can be saved then filled with text in Adobe Reader.
    So far, I've managed to add two forms to my document in Acrobat, but when I enter text into one, it automatically copies into the other.
    Can anyone tell me if i'm going about this the right way or where i'm going wrong?
    Thanks in advance!

    To prevent the automatic copying of the field values, just rename the fields so they are not the same. Any fields with the same name will have the same value.
    Note that if the form needs to be saved by Reader users after they fill it in, you will have to Reader-enable the document, unless all of your users will have Reader 11. Do this in Acrobat 11 by selecting (while not in Form editing mode): File > Save as Other > Reader Extended PDF > Enable More Tools

  • Not a dashboard to add forms in manager business catalyst

    i don't understand:  Icreated a muse site and send it on adobe business catalyst to test. When i go on my dashboard on creative.adobe I can see  my site but whenI open the admin of this site  i can't  add form of apps or widgets . I can do that with site created directly with adobe catalyst. What  can i do to change that?  I watch tuto, i add a template page with a tag_pagecontent, and publish from muse ...but it's always the same ,i am on a test period... i try a lot ... thanks for help !!!

    Hi
    The features you are looking are in the Site Manager menu. In order to enable site management for your user, please log into your site, and click on "My Details" .In the My details page, please check the option "Enable online content editing (incompatible with Muse) , and enter the password to confirm.
    Go back to your Dashboard, and you'll be able to Access the Site Manager.
    Best regards,
    Aniela

  • Add form to wordpress

    I am trying to add form from Forms Central to a Wordpress not just as a link but embed it, how would i go about doing this? Copy and paste does not work with WordPress
    Thank you

    I am having the same issue. I am researching java plugins for WP but haven't found one yet that suits my purposes. I believe script coding has to be manual entered into the header or footer to allow the form to work properly. Have you discovered a solution yet?

  • Add form fields to tags - not working

    I have a fillable form with one simple text form field. I run the "Advanced > Accessibility > Add form fields to tags" but the tags do not change. After I run the command it is grayed out so it looks like it's done. I can save, close and reopen to make that command available again, but it never affects the tags and the accessibility check continues to give the error.
    Anyone have that problem or know how to fix it? I'm using Acrobat Pro 9.3.3
    Thanks!

    Rather than use TORU for form fields why not use the "Find" feature on the Options menu from the Tags panel?
    Find "Unmarked Annotations" then use the Tag Element button on the Find Element dialog.
    Select "Form" for the element ("tag").
    Add something useful to the "Title" field.
    [edit: n.b., this method lets you avoid putting a marquee down that inadvertently encompasses undesired text]
    This won't affect use of AT but gives you something to locate as you look over the structure tree.
    This method puts the <Form> element at the bottom of the structure tree; so, the elements would have to be manually moved to the proper location in the structure.
    Alternatively, place focus on the appropriate parent element for the PDF page content.
    The new <Form> element will be placed there - still may have to adjust it location in the structure tree - just closer to that location.
    As to working within the structure tree when adding elements.
    Yes, best practice that.
    TORU - Read Order provides a gross/macro view via the highlight(s) and element desination.
    Read Order should, in almost all cases, be harmonized to the structure tree's logical hierarchy.
    You may find use of the in-line grouping element <Span> useful.
    Be well...
    Message was edited by: CtDave

  • How can i add form of my own to "SAPM07DR"

    i been asked to add form develop by me to the standart program "SAPM07DR" .
    this task came from the need of the implementation
    of the "material management" , assign forms and program.
    now i get the output "ZWE4"  ,
    and i want to assign form of my own  ,
    i tried to add smart form but i get message
    "Errors occurred while processing output"
    so I want to try layout  with  standard program "SAPM07DR" .
    how can i add form of my own to this program

    First, you must copy this program to your own program with "ZSAPM07DR" then copy the include program where the routine pass through the program
    example: entry_we03 -> from include M07DRENT and M07DRAUS
             change this include to ZM07DRENT and ZM07DRAUS
    The next step is binding your form in the program.
    what forms do you use ? Sapscript or Smartforms ?
    in this Program already used Sapscript. You can See there is Open_Form Function in that Program.
    I suggest you to Bind Smartforms.
    IF you use smartforms, Remark All Statement from
    "PERFORM open_form_sammel." to "PERFORM close_form." before endform
    that perform including in M07DRAUS -> FORM lesen_wes USING objky lgortsplit.
    after that put this program to replace the remark :
    data : FMNAME type RS38L_FNAM.
    DATA: ls_control_param      TYPE ssfctrlop.
    set preview parameters
          MOVE 'X' TO ls_control_param-no_dialog.
          MOVE 'X' TO ls_control_param-preview.
          MOVE 'PRINTER'  TO ls_control_param-device.
    *break-point.
    *****Print SmartForms
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
            EXPORTING
              FORMNAME           = TNAPR-SFORM
            IMPORTING
              FM_NAME            = FMNAME
            EXCEPTIONS
              NO_FORM            = 1
              NO_FUNCTION_MODULE = 2
              OTHERS             = 3.
         CALL FUNCTION FMNAME
         EXPORTING
             control_parameters   = ls_control_param
         TABLES
             traptab           = traptab
         EXCEPTIONS
             formatting_error = 1
             internal_error   = 2
             send_error       = 3.
         if sy-subrc NE 0.
    *******message 'Error' type 'S'.
         endif.
    *******End Smartforms
    Hope This Help...

  • How we create dynamic add form field in web form

    How we create dynamic add form field in web form?

    Hi,
    Thanks for reply.
    I need to create a form in which "add more" input field dynamically. For
    example sometime we need field on or more. Please look at the demo, I need
    to create form as per demo in business catalyst:
    http://www.openjs.com/scripts/examples/addfield.php

  • How can I add form field value to the file name in save as dialog box

    I do not want the form to be saved automatically, just want the form to auto populate the "file name" only.
    A little background on the forms I want to use:  My company has 70 retail outlets, I'll use one of our pdf forms called an "Incident Report" as an example.  I would like for a store manager to be able to complete the form, then email the form to the main office (I already have javascript to add field values and form name to the email subject line), once the main office receives it, I want for them to be able to file the pdf electronically on our server.  We have mutliple forms that we use so I do not want any of the forms to automatically save anywhere, (at this time anyway) I just want the office personnel to be able to click "save as" (or whatever they will need to click) and the form automatically add certain field values from the pdf they have received, of which will be different each time the form is sent to the office (Date, store #, employee name etc.) in addition to the name of the form in the "File name" of the "Save As" dialog box.  The main office employees will decide into which server file the pdf should be saved.
    I'm using Acrobat 8 professional, the stores and office personnel use Adobe reader.
    One little note:  We currently print and file a lot of paper on a daily bases, as soon as I can get this to work, we are going green.
    Me and a lot of trees in this will really apprecitate any help you can give with this!  :-)

    You might want to take a look at the document "Developing Acrobat Applications Using JavaScript" (js_developer_guide.pdf) which is part of the Adobe Acrobat SDK, which can be downloaded here. Read the "Privileged versus non-privileged context" (p. 45ff.). You will find an example for "Executing privileged methods in a non-privileged context". Should be almost exactly what you are looking for.
    Small Outline: For security reasons ("the user always has to know what's going on") you are not allowed to use the "Doc.saveAs"-method without the user permission (--> in a non-privileged context). In order to reach the goal of a privileged context you can use a trusted function. You do this by creating a JavaScript file (*.js) in either the Application-JavaScript-Folder (default location on Windows systems: "%ProgramFiles%\Adobe\Acrobat 10.0\Acrobat\Javascripts") or the User-JavaScript-Folder (default location on Windows systems: "%AppData%\Adobe\Acrobat\10.0\JavaScripts"). Add the following content to the new file:
    myTrustedBrowseForDoc = app.trustedFunction( function ( oArgs ) {
         app.beginPriv();
              var myTrustedRetn = app.browseForDoc( oArgs );
         app.endPriv();
         return myTrustedRetn;
    myTrustedSaveAs = app.trustedFunction( function ( doc, oArgs ) {
         app.beginPriv();
              var myTrustedRetn = doc.saveAs( oArgs );
         app.endPriv();
         return myTrustedRetn;
    The developer guide actually wants you to add this content to the existing "config.js" file. I recommend creating a new file, since its easier to deploy in a network. Either way, every client/user who needs to be able to save documents this way, needs this JavaScript Code in his Application/User-JavaScript-Folder.
    Within the Acrobat Document, which you want to obtain a certain file name, you can now use the trusted functions "myTrustedBrowseForDoc" and "myTrustedSaveAs" to store the file. To call the trusted functions and deliver the file name you can either you use a form field (button) or you add a new menu item. Add the following JavaScript Action to the button/menu item and change "Roller Coaster" to the name of the field which contains the value which you want to become the new file name:
    var fileName = this.getField("Roller Coaster").valueAsString;
    try {
         var oRetn = myTrustedBrowseForDoc({bSave: true, cFilenameInit: fileName + ".pdf"});
         try {
              myTrustedSaveAs(this, { cPath: oRetn.cPath, cFS:oRetn.cFS });
         catch(e) {
              console.println("Save not allowed, perhaps readonly.");
    catch(e) {
    console.println("User cancelled Save As dialog box");
    Good Luck!

  • How to add form fields dynamically

    Hi
    I have a form with several fields, and in one section I have one check box and two text fields in a row and also have one button "Add more"
    when I click on the Add more button I need to create one more row with the above fields dynamically.
    how can I do it? Could some one suggest me with any code snippet?
    thanks,
    Suman K

    Use custom tags.
    Create all the new fields on the JSP page using custom tags ... i,e through Java code.

  • I cannot add form to table in Numbers

    I have a table in Numbers (iOS 8.1.2, iPhone 6 Plus) that I'm unable to add a form for. It has a header row designated (one header row). What would cause something like this?

    Yes thanks. I had all of those requirements. I ended up deleting the table and re-adding. I think the issue was I was pasting in values from Excel (on OS X Yosemite) into the Numbers app on Yosemite, then accessing on my iPhone. Basically I think I just really confused Numbers on iOS. It's working fine now.

  • Add Form Fields using IAC

    Hello,
    I like to know if anyone lately has successfully added
    Form Fields (AFORMAUTLib.Fields) to a PDF document using IAC
    in Visual Studio 2008 and Acrobat 9.3.4 Prof.
    In this forum it was stated that bug in
    "AcroForm.api/AFormAUT 1.0 Type Library/Interop.AFORMAUTLib.dll"
    has been fixed in release 9.3.2
    I applied updated Acrobat to 9.3.4 and it still blows with error message
    "No document is currently open in the Acrobat Viewer"
    Any help, explanation is sincerely appreciated.
    Thanks.

    Rather than use TORU for form fields why not use the "Find" feature on the Options menu from the Tags panel?
    Find "Unmarked Annotations" then use the Tag Element button on the Find Element dialog.
    Select "Form" for the element ("tag").
    Add something useful to the "Title" field.
    [edit: n.b., this method lets you avoid putting a marquee down that inadvertently encompasses undesired text]
    This won't affect use of AT but gives you something to locate as you look over the structure tree.
    This method puts the <Form> element at the bottom of the structure tree; so, the elements would have to be manually moved to the proper location in the structure.
    Alternatively, place focus on the appropriate parent element for the PDF page content.
    The new <Form> element will be placed there - still may have to adjust it location in the structure tree - just closer to that location.
    As to working within the structure tree when adding elements.
    Yes, best practice that.
    TORU - Read Order provides a gross/macro view via the highlight(s) and element desination.
    Read Order should, in almost all cases, be harmonized to the structure tree's logical hierarchy.
    You may find use of the in-line grouping element <Span> useful.
    Be well...
    Message was edited by: CtDave

  • Basic walkthrough to add form with buttons to B1

    Hi All,
    I am newbie to B1 dev. It would be great if anyone can offer me a very basic bullet point intro to a simple B1 customisation.
    Could someone please outline the most basic steps to achieve a form in B1 (available from the main menu) that includes a button that triggers a user query.
    for example.
    1/ Build form in Visual studio
    2/ compile
    3/ add to B1? how?
    4/ ..
    etc.
    Even better, if anyone has a very basic intro/guide in a video it would be perfect.
    It's sometimes the most basic steps/outline that people like me need to see... then we can go ahead and complete with success.
    I understand the SDK info in regard to building a form, but I am then at a loss what to do once I save my project in Visual studio (for example).
    Best regards,
    John

    Hello
    If you installed sap b1 sdk (can be installed from any patch) you can find a samples.
    Building forms example:
    C:Program FilesSAPSAP Business One SDKSamplesCOM UIVB.NET 3.SimpleForm
    this is in VS 2003, so if you open it in VS 2005 it will be automatically converted.
    You can also find usefull informations from GSC blog:
    /people/lisa.mulchinock/blog
    You can find some blogs about UI API.
    Regards
    János

  • Can I add forms I've created to the Templates tab?

    I currently have 44 'base forms' that I then duplicate to create the forms for each event, however because there is no filing structure in My Forms, I now have well over 100 forms in there!
    We'll soon be using FormsCentral Team and those forms will multiply dramatically.
    It would be great if either:
    a) There was a folder/filing structure in My Forms
    b) I could save and organise the base forms to Templates and remove the Adobe designed ones
    I love Adobe Forms - it's changed the way we do things so much, but this is a real concern as it will soon be utterly overwhelming to manage the forms I have.
    Hope you can help!
    Thanks

    Hi,
    Thank you for using FormsCentral.  You have two good ideas.  Idea a is already in, you could vote on it here, http://forums.adobe.com/ideas/1587.  You could add your idea b as well, http://forums.adobe.com/community/formscentral?view=idea.  To add a new idea click "Create an idea" under "Actions" in the top right.
    Thank you for your good ideas,
    Perry

  • ADD form.php to my site with iWeb, possible?

    Hi, is it possible to add a form.php to muy site done with iWeb? thank you.

    thank you for your kind reply, the thing is i ignore how to do this by programming php, i use Rapidweaver for the forms and i have them done, getting stuck with adding the forms to my mainsite, done with iWeb, because RapWeav also makes a complete site out of it and i only have one domain with a host that supports php, where the mainsite is located. so what i need is some how achieve to split the php form and upload them, but does'nt this create a duplication of sites on the host?, while i have two index.html, one for the main site i want to link to the forms and one for the RW made site with the forms? wow! thank you for your help, maybe there is no solution if i don't manage with programming php and so.

Maybe you are looking for