Dunning error (form does not exist)

Hi,
While performing the dunning after selection the Individual dunning notice for printout the system shwoing error that '''FORM F150_DUNN_01''' DOES NOT EXISTS.
When I tried several times to performance the dunning it showing the same error message as above said.
Can any one let me know why does this happening. please give your valuable solution regarging on the above said issue.
Thanks in Advance.
Regards,
Suresh

Hi
In Dunning Procedure --- FBMP
you will select new entries and give Dunning procedure , name , dunning intervals in days , No. of dunning levels , line item grace periods , interest indicator , select standard transaction dunning checkbox , reference dunning procedure for texts(dunning procedure) and save.
select Dunning texts button and give company code and select customer radio button and enter.
select new company code button and give company code and enter.
select seperate notice per dunning level checkbox
Deselect Dunning by Dunning Area checkbox and save.
select back arrow and select yes for the message to save the data.
select dunning texts button once again , give company code , select customer and enter.
Dunning level (1)  Form (F150_DUNN_01)
Dunning level (2)  Form (F150_DUNN_01)
Dunning level (3)  Form (F150_DUNN_02)
Dunning level (4)  Form (F150_DUNN_02)
select dunning levels button and under print parameters , select Always Dun CheckBox's.
select charges button , give currency and enter.
select back arrow and save
Assign the Dunning procedure in Customer Master.
Check with the Dunning Procedure you had created.
Regards
Venkat

Similar Messages

  • Smart forms Error - Form does not exist

    Hi,
    I have created a smart form and activated without any inconsistancies. SE38 code has been done properly and activated.
    While executing the forms an error has raised saying 'Form does not exist'.
    Could anyone suggest me what is the route cause for this error?
    Regards,
    Arundathi.

    Hi
    Have you designed the smartform in SMARTFORMS tcode?
    after writing the code
    see the steps and check once again
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Here is the procedure
    1. Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
    First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
    Here, you can specify your title and page numbering
    &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
    Main windows -> TABLE -> DATA
    In the Loop section, tick Internal table and fill in
    ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name Type assignment Reference type
    ITAB1 TYPE Table Structure
    Global definitions
    Variable name Type assignment Reference type
    ITAB2 TYPE Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g. HD_GEN for printing header details,
    IT_GEN for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
    http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    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.
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    <b>step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html</b>
    Subtotals - Check the link...
    Re: Subtotal with Table Node in smartforms
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Form does not exist or was deleted by administrator

    Hi everyone,
    There was an Error when i pressed the button Preview in "Form and Ad Hoc Grid Management"
    ERROR
    Messages for this page are listed below.
    Error    
    Form does not exist or was deleted by administrator.
    Error    
    The form 1.Cement is invalid. Check log for details.
    Did you see this message and how you solved it
    Please show me the way to fix ít
    Thank you so much!!

    I hope you are on 11.1.2.X and have admin rights on planning app.
    From Administation-> Manage->Form and adhoc grids
    Now search for 1.Cement form and try to edit and save again...
    Cheers!
    Sh!va

  • ESS Salary statemenr: Form Does not exist error

    Hi Experts,
    As mentioned in may threads, I have changed the form name for salary statement to the custom form name in SPRO- --> HRFOR
    But the portal displays "Form does not exist" error. Could not find a solution in any existing post on sdn.
    Urgent help needed.
    Thanks,
    Shobhit

    Hi,
    If your payslip form is desinged in PE51, then follow these steps.
    Employee Self-Service-> Service-Specific Settings-> Benefits and Payment-> Salary Statement-> Form Using HR Forms Editor (PE51)
    a. Edit Feature HRFOR: Maintain the constant $CEDT$ for MOLGA 40 RCLAS  +01(03).
    b. Enter Payslip variant in EDTIN feature
    c. Maintain smartform name in EDPDF
    If your payslip form is designed in HRFORMS, then enter the form name in HRFOR feature and enter the variant in EDTIN.
    Cheers!!
    Ashutosh

  • Form does not exist error

    I am getting an error from the online link for my form. It states 'An error has occurred, The form does not exist'. This happens even when I try to test the form.
    Link to the form https://adobeformscentral.com/?f=vMkDjyz3if1VfBg4boBy%2Aw
    Can anyone help?
    Thanks
    Nigel

    Hi Andrew,
    Have you tried testing the web link? It is not an ISP issue. The error I am getting is from Adobe, it says the form does not exist. Here is a link to the error.
    https://formscentral.acrobat.com/downloaderror.aspx?errorCode=AccessControlViolation&reque stedURL=/%3Ff%3DhPB8phF0F57hcn…
    The link to the form is below
    https://adobeformscentral.com/?f=hPB8phF0F57hcniw41k6CQ
    Maybe try it when not signed into your adobe account? not sure if that makes a difference.
    Nigel

  • Why is the link to my form getting this message?  I copied the link right from the page.  An error has occurred. The form does not exist. Please re-enter the web address as the link may be misspelled. [ref: cixTdh4JnkymYgz7awKoQ, BadRequest]

    Why is the link to my form getting this message?  I copied the link right from the page.  An error has occurred. The form does not exist. Please re-enter the web address as the link may be misspelled. [ref: cixTdh4JnkymYgz7awKoQ, BadRequest]

    My form - which was working great - disappeared when I did some editing; here is the message I get now.
    The form does not exist. Please re-enter the web address as the link may be misspelled.
    The link for the form is:
    https://adobeformscentral.com/?f=UqJr%2Aas2RJIHPVA4iGIQ6w
    Please look into the matter and resolve the issue at the earliest.
    Regards,
    Vaibhav Nigam

  • Here's the error message: An error has occurred.   The form does not exist. Please re-enter the web address as the link may be misspelled.  [ref: VFS3sNB28XnqlIfeTBcHKA, BadRequest]

    I've done this successfully in the past so why am I receiving an error report after placing a new link to a form into my website page and testing the link from my website?  Here's the error message: An error has occurred.   The form does not exist. Please re-enter the web address as the link may be misspelled.  [ref: VFS3sNB28XnqlIfeTBcHKA, BadRequest]

    My form - which was working great - disappeared when I did some editing; here is the message I get now.
    The form does not exist. Please re-enter the web address as the link may be misspelled.
    The link for the form is:
    https://adobeformscentral.com/?f=UqJr%2Aas2RJIHPVA4iGIQ6w
    Please look into the matter and resolve the issue at the earliest.
    Regards,
    Vaibhav Nigam

  • List View webpart from subsite to Top site shows random error "List Does not exist"

    Hi All,
    We have a list in subsite and we are creating a view for that list which we are showing in one of the top site home page. We have taken care of changing the web and list guid of list view webpart when we added on top site. Its working fine but some time
    shows error "list does not exist" but when we refresh the error goes. Is it known issue or if there is any workaround for this? because we cannot go live with this random error.
    Rohit Pasrija

    try these links:
    http://mroffice365.com/2012/01/sharepoint-display-a-list-or-library-from-subsite-to-the-top-level-site/
    http://sharepoint.stackexchange.com/questions/37140/display-list-or-library-on-another-site-as-webpart

  • Error: SNAP_ADT does not exist in the database - manual check required

    Hello Friends,
    We are  performing an upgrade+migration to HDB using the DMO option(Oracle to HANA).
    We are getting below error in the phase MAIN_SHDCRE/SUBMOD_SHDDBCLONE/DBCLONE!
    Also find the output of SE11 & SE14 attached.
    SE14->
    Please help us with the manual check.
    Regards
    Sury

    Hi Sury,
    In regards to the error below:
    1EETGCLN Error: SNAP_ADT does not exist in the database -> manual check
    required
    1EETGCLN SNAP_ADT
    1EETGCLN Table does not exist
    Could you please try to activate the following tables via SE11?
    -  SNAP_ADT
    Once they are activated, Could you please repeat the phase and update the result?
    Thanks and Regards,
    James Wong
    Follow us:
    SAP System Upgrade & Update Troubleshooting Wiki Space.
    SAP Product Support Twitter  ( Hashtag: #NWUPGRADE)

  • Error Infoobject does not exists in Infoprovider

    Hi Friends,
    I am getting "Error Infoobject does not exists in Infoprovider" in Quality. Actually Fiscal Period and Variant are not showing up in Query designer left panel (where we can see infoprovider structure). This problem is only in Quality, the query works fine in Development and training system.
    Any thoughts why am I getting this and way to rectify it? I tried transporting the query again by collecting query elements. Still it gives same error.
    Thanks and regards,
    Balaraj

    Probably your data provider has been changed and transported to quality and your query is still using those objects. Please check the info provider in both system if they are in sink or not.
    Regards,
    Kams

  • Full import error : "user does not exists"

    Hi all,
    I had 5 separated windows based servers (32bit) with oracle database 9i. I decided to centralize them into one server. So, I configured a new Linux (64bit) and install an Oracle 10gR2. Then I configured a starter database with dbca. I prepared a full dump file from one of old servers and successfully full imported it into starter database on new Linux (10g) server. After that I configured another database using dbca. But when I wanted to full import the previous dump file into new database I have got the error "user does not exists" regarding some demo schema and import terminated unsuccessfully.
    I decided to create users regarding the errors and restart the import. After each user creation I was getting a new error for a new user account.
    My main question is why first time import terminated successfully without any error but second one in new database raised error?
    Thank
    Iman
    Edited by: Iman.Jam on Aug 25, 2009 9:38 AM

    Hi yingkuan,
    imp full=y file=.... log=..... userid=system/manager@orcl
    ALTER SESSION SET CURRENT_USER = "HR"
    ORA-.... : user does not exists
    And I know that import will create users that are not exists. Actually, all my specified schema are created but not some of accounts
    Regards,
    Iman
    Edited by: Iman.Jam on Aug 25, 2009 9:59 AM

  • Form does not exist

    HI
    am new to smartforms. plz tell how to create the table and template in smartforms clearly.
    when am preview the form it could print the field name instead of values. and
    when am executing the form with the print program . it depicts the form does not exist.
    pls rectify this.
    regards
    surender

    Hi,
    see the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm
    for tables
    http://help.sap.com/saphelp_nw04/helpdata/en/a9/de6838abce021ae10000009b38f842/frameset.htm
    for templates
    here is some piece of code to  call the Smartform from report.
    REPORT ZSALES_PRINT NO STANDARD PAGE HEADING.
    DATA FLAG(1).
    DATA: FORM_NAME(30) VALUE 'ZSALES_PRINT'.
    DATA: FM_NAME TYPE  RS38L_FNAM.
    PARAMETERS: VBELN LIKE VBAK-VBELN OBLIGATORY,
                KUNNR LIKE VBAK-KUNNR OBLIGATORY.
    DATA: BEGIN OF ZITAB OCCURS 0.
            INCLUDE STRUCTURE VBAP.
    DATA: END OF ZITAB.
    DATA ZITAB1 LIKE ZITAB OCCURS 0 WITH HEADER LINE.
    DATA: SVBELN TYPE DDSHRETVAL.
    TABLES: VBAK, VBAP.
    START-OF-SELECTION.
      SELECT SINGLE * FROM VBAK WHERE VBELN = VBELN
                                  AND KUNNR = KUNNR.
      SELECT * FROM VBAP INTO CORRESPONDING FIELDS OF TABLE ZITAB
      WHERE VBELN = VBAK-VBELN .
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          FORMNAME                 =  FORM_NAME
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
       IMPORTING
         FM_NAME                  =   FM_NAME
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
    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
           EXPORTING
                VBELN  = VBELN
                KUNNR  = KUNNR
                FLAG   = FLAG
           TABLES
                ZITAB  = ZITAB
                ZITAB1 = ZITAB1.
    Regards,
    Jagadeesh

  • Dunning Print Error: F150_DUNN_01 does not exist

    Hi,
    I have assigned F150_DUNN_01 via FBMP T-code for Dunning texts. While performing the Dunning print I am getting an error "Text object does not exist" or F150_DUNN_01" does not exist.
    The Event settings via T-code BF31 for event 1720 is "FI_PRINT_DUNNING_NOTICE_PDF"
    Any suggestion will be highly appreciated
    Thank you
    Vignesh

    Hi Eli,
    Form F150_DUNN_01 is a SAP script form and not Smartform.
    I am able to print preview the form text via se71 by print testing. So I do not think we need to reimport it. Can you identify any other reason for the error
    Thanks
    Vignesh

  • What is supposed to happen if the font for a control on the startup form does not exist on the system?

    Say you put a button on a form and dont change the font ie ms san serif, then the app is installed on a system that does not have the font ms san serif installed. Is it supposed to throw an error when the form initializes? Since this happens before any user
    code the error can go untrapped in the start up form and crashes to the system.
    I discovered it does this if you specify the font in the designer to be "Arial Narrow" and it is not installed. But whats funny is the error is not font does not exist, it is "Arial Narrow" does not support style Regular. Even though
    I set the font in the IDE for the control. How can I be setting it with the IDE to something that does not exist for the font I set (Arial Narrow is on the IDE system)?
    I have always thought that vb would just use a different font if the control font did not exist without an error. In my case it was a secondary form so the error was trapped. But, I don't see how to trap the error if it is the startup form.

    PS
    "I meant that you should set the buttons font to something like
    MS Sans Serif "
    What if ms sans is not on the system? Then you cant do anything.
    Maybe I am being picky but just sayin...
    I don't suppose you're being picky specifically although I think I got a headache attempting to do the below.
    I do think this is a bug though which you should probably report.
    However I tried this and it worked fine. Except I had to alter the Form1.Designer.vb file to do this. I tested this. I didn't test without this to see if I would get the exception you received.
    I downloaded a Font called Kingsthings Christmas from the second link in my post for links to download fonts. Added that to my systems Fonts and tested the code. Removed that from my systems fonts and tested the code. It worked in both instances.
    I suspect that the Font in the Form1.Designer.VB file for the New Font for the TabControl and TreeView would work with the default system font set to use 21.75! and font style regular but if the default system font didn't support both of those then an issue
    could occur obviously. So if somebody used Control Panel to set the default system font to something that doesn't support those two things then you will need to alter the code to detect what the default system font can use for those two settings
    possibly.
    Form1's code
    Option Strict On
    Imports System.Drawing.Text
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    TreeView1.BeginUpdate()
    TreeView1.Nodes.Add("Parent")
    TreeView1.Nodes(0).Nodes.Add("Child 1")
    TreeView1.Nodes(0).Nodes.Add("Child 2")
    TreeView1.Nodes(0).Nodes(1).Nodes.Add("Grandchild")
    TreeView1.Nodes(0).Nodes(1).Nodes(0).Nodes.Add("Great Grandchild")
    TreeView1.EndUpdate()
    For Each f As FontFamily In New InstalledFontCollection().Families
    RichTextBox1.AppendText(f.Name.ToString & vbCrLf)
    Next
    End Sub
    End Class
    Form1.Designer.VB files code which you're not supposed to alter of course.
    Option Strict On
    Imports System.Drawing.Text
    <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
    Partial Class Form1
    Inherits System.Windows.Forms.Form
    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
    Try
    If disposing AndAlso components IsNot Nothing Then
    components.Dispose()
    End If
    Finally
    MyBase.Dispose(disposing)
    End Try
    End Sub
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.
    'Do not modify it using the code editor.
    Dim FontToUse As Font
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
    For Each f As FontFamily In New InstalledFontCollection().Families
    If f.Name.ToString = "Kingthings Christmas 2" Then
    FontToUse = New Font(f.Name.ToString, 24)
    Exit For
    Else
    FontToUse = New Font(SystemFonts.DefaultFont.FontFamily.Name.ToString, 24)
    End If
    Next
    Me.TabControl1 = New System.Windows.Forms.TabControl()
    Me.TabPage1 = New System.Windows.Forms.TabPage()
    Me.TabPage2 = New System.Windows.Forms.TabPage()
    Me.TabPage3 = New System.Windows.Forms.TabPage()
    Me.TabPage4 = New System.Windows.Forms.TabPage()
    Me.TabPage5 = New System.Windows.Forms.TabPage()
    Me.TreeView1 = New System.Windows.Forms.TreeView()
    Me.RichTextBox1 = New System.Windows.Forms.RichTextBox()
    Me.TabControl1.SuspendLayout()
    Me.SuspendLayout()
    'TabControl1
    Me.TabControl1.Controls.Add(Me.TabPage1)
    Me.TabControl1.Controls.Add(Me.TabPage2)
    Me.TabControl1.Controls.Add(Me.TabPage3)
    Me.TabControl1.Controls.Add(Me.TabPage4)
    Me.TabControl1.Controls.Add(Me.TabPage5)
    Me.TabControl1.Font = New System.Drawing.Font(FontToUse.FontFamily.Name.ToString, 21.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
    Me.TabControl1.Location = New System.Drawing.Point(6, 32)
    Me.TabControl1.Name = "TabControl1"
    Me.TabControl1.SelectedIndex = 0
    Me.TabControl1.Size = New System.Drawing.Size(600, 183)
    Me.TabControl1.TabIndex = 0
    'TabPage1
    Me.TabPage1.Location = New System.Drawing.Point(4, 43)
    Me.TabPage1.Name = "TabPage1"
    Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage1.Size = New System.Drawing.Size(592, 136)
    Me.TabPage1.TabIndex = 0
    Me.TabPage1.Text = "TabPage1"
    Me.TabPage1.UseVisualStyleBackColor = True
    'TabPage2
    Me.TabPage2.Location = New System.Drawing.Point(4, 43)
    Me.TabPage2.Name = "TabPage2"
    Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage2.Size = New System.Drawing.Size(592, 136)
    Me.TabPage2.TabIndex = 1
    Me.TabPage2.Text = "TabPage2"
    Me.TabPage2.UseVisualStyleBackColor = True
    'TabPage3
    Me.TabPage3.Location = New System.Drawing.Point(4, 43)
    Me.TabPage3.Name = "TabPage3"
    Me.TabPage3.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage3.Size = New System.Drawing.Size(592, 136)
    Me.TabPage3.TabIndex = 2
    Me.TabPage3.Text = "TabPage3"
    Me.TabPage3.UseVisualStyleBackColor = True
    'TabPage4
    Me.TabPage4.Location = New System.Drawing.Point(4, 43)
    Me.TabPage4.Name = "TabPage4"
    Me.TabPage4.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage4.Size = New System.Drawing.Size(592, 136)
    Me.TabPage4.TabIndex = 3
    Me.TabPage4.Text = "TabPage4"
    Me.TabPage4.UseVisualStyleBackColor = True
    'TabPage5
    Me.TabPage5.Location = New System.Drawing.Point(4, 43)
    Me.TabPage5.Name = "TabPage5"
    Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage5.Size = New System.Drawing.Size(592, 136)
    Me.TabPage5.TabIndex = 4
    Me.TabPage5.Text = "TabPage5"
    Me.TabPage5.UseVisualStyleBackColor = True
    'TreeView1
    Me.TreeView1.Font = New System.Drawing.Font(FontToUse.FontFamily.Name.ToString, 21.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
    Me.TreeView1.Location = New System.Drawing.Point(9, 229)
    Me.TreeView1.Name = "TreeView1"
    Me.TreeView1.Size = New System.Drawing.Size(704, 235)
    Me.TreeView1.TabIndex = 1
    'RichTextBox1
    Me.RichTextBox1.Location = New System.Drawing.Point(9, 475)
    Me.RichTextBox1.Name = "RichTextBox1"
    Me.RichTextBox1.Size = New System.Drawing.Size(702, 124)
    Me.RichTextBox1.TabIndex = 2
    Me.RichTextBox1.Text = ""
    'Form1
    Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
    Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
    Me.ClientSize = New System.Drawing.Size(720, 606)
    Me.Controls.Add(Me.RichTextBox1)
    Me.Controls.Add(Me.TreeView1)
    Me.Controls.Add(Me.TabControl1)
    Me.Name = "Form1"
    Me.Text = "Form1"
    Me.TabControl1.ResumeLayout(False)
    Me.ResumeLayout(False)
    End Sub
    Friend WithEvents TabControl1 As System.Windows.Forms.TabControl
    Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage3 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage4 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage5 As System.Windows.Forms.TabPage
    Friend WithEvents TreeView1 As System.Windows.Forms.TreeView
    Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox
    End Class
    La vida loca

  • Encountering error: "field does not exist, please re-enter" when setting up basic calculation

    I created a form in InDesign with many form fields. I would like to be able to have specific form fields generate a sum total in another form field. In acrobat, when I select the form field I wish to have the calcualtion appear in, I select the fields I want to calculate and when I click OK, I am greeted with a pop-up error that the "... field does not exist, please re-enter". I can see that there is a field present when I select "Highlight Existing Fields", I can select it and even fill it in manually. What am I doing wrong?
    I attempted to contact Adobe Help chat and they threw up their hands and directed me here. Does it have something to do with the naming convention? I am stumped but I really need to figure this out. Do I need specific script to drop into the field notation box?
    Thanks,
    In Over My Head

    Thank you George.
    Keeping the file names simple seems to be helping.
    I am now encountering an issue where some field calculations (rouhgly 20 out of 58 different basic calculations) do not compute.They create no sum and remain "zero" despite being created the exact same way as all the other calculations that appear to be working flawlwessly.
    I don't understand and it is giving me kittens.

Maybe you are looking for