Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

calculated field using progress dynamics 1

Status
Not open for further replies.

annettesue

Technical User
Feb 10, 2003
29
MY
hi,
does anyone know how to add a CALCULATED FIELD into browser using progress dynamics?Plz help...

another problem is..there are errors when i run my container/window...&quot;WARNING: -nb exceeded. Automatically increasing from <number> to <number>(5407)&quot; and &quot;DITEM is not large enough to hold string(4043)&quot;.

thanx in advance.

regards;
annette.
 
Annette,

Bring your browser into the AppBuilder and define a variable in the Definitions section to hold your calculated field. Make sure you include a FORMAT attribute. Select the browser's property sheet and click the Fields button. In the Fields dialog-box click the Calculated Field button. In the editor put something like ...
Code:
    myTotal - mySales @ myCalcField
where myCalcField is the variable you've just defined. Save, compile'n'go.

Message 5407 is only a problem if you have a runaway recursive procedure.

Message 4043 is telling you that you're trying to pass an enormous string through a routine somewhere.

Mike.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top