While doing a trace I get an error 'New Table is a duplicate' at line 31  Ok
where is line 31.  If you look below I do have a project statement however
only 'On Before Design'.

 

This form is based off a temp table and is projected prior in code before
the ' edit using this form_name'  I placed the trace on a BitButton and it
starts another form to edit based off the same temp table. It is then I get
this error message.  Perhaps I am seeing too much and this is a regular
thing happening?  With Temp Tables.  It all seems to work fine but I also
try to watch network traffic and ...  well you know.

 

So do I need to find the answer or is this normal?

 

 

Sincerely,

Paul 

 

 

 

 

 

 

Information from Document Custom EEP's on two forms. "FYI" 

 

 

7/31/2009 14:56:54.54

Connected Database : nhi

Form Name : UpDateDOSt

==========================================================

 Form EEPs:

 On Before Design Action

 

  project temp tclients from clients using (blah blah)

  project temp tviolations from Violations using (blah blah)

  return

 

==========================================================

 Form Controls:

 =============================

 BitButton, Caption : Dates: 

=============================

  On Click Custom EEP: 

 

  set trace on

   

  EDIT using UpDateDOSt2 WHERE clientid = .cid

  clear var vtrackingdate,vlname,vfname,vdateplus7,vdateplus21,vcramname,cid

  set trace off

  RETURN

 

 

 

07/31/2009 15:13:44.44

Connected Database : nhi

Form Name : UpDateDOSt2

==========================================================

  

Form EEPs:

On Before Design Action

  project temp tclients from clients using *

  return

 

==========================================================

  

Form Controls:

  

===================================================================

 DB Edit, Table : tclients, Field : NxtDOS, Component ID: RDBEdit1 

===================================================================

 

 On Enter Custom EEP: 

 

  SET VAR v_old_nds DATE = RBTI_FORM_COLVALUE

  UPDATE tclients SET LastDOS = .v_old_nds where clientid = .cid

  PROPERTY table 'tclients' refresh

  

  CLEAR VAR v_old_nds

  RETURN

 

 

Reply via email to