FW: Crystal Question

You could just put this code under the button.
SET CHAR-FIELD_2.ScrValue = {disp_ProdCode.ScrValue}

Ron Newell
IT/MIS
Neon Products
1695 Sargent Ave.
Winnipeg, MB R3H 0C4
http://www.neon-products.com/
mailto:rnewell@...



Create a button on the VBForm that copies the product group from
the detail line into a field in the VBForm.

Could you explain how to do this please?
Thanks
Sophie
>Does anybody know if its possible to print the Product Group on the
>Crystal Sales Order Acknowledgement?

Not directly, but if it is really important, a good workaround is to use the
VBForm. Create a button on the VBForm that copies the product group from
the detail line into a field in the VBForm. Then the VBForm field can be
printed on the Order Acknowledgement.

Rick Lane
Intelligent Systems Integration, Inc.
661B Weber Drive
Wadsworth, OH 44281
330-335-5291
Fax: 330-335-7275

"Helping business make intelligent use of technology"
Create a button on the VBForm that copies the product group from
the detail line into a field in the VBForm.

Could you explain how to do this please?
Thanks
Sophie

> -----Original Message-----
> From: Rick Lane [SMTP:rickl@...]
> Sent: Friday, September 01, 2000 5:22 PM
> To: 'vantage@egroups.com'
> Subject: RE: [Vantage] FW: Crystal Question
>
>
> <http://click.egroups.com/1/8958/13/_/411782/_/967825544/>
>
> <http://adimg.egroups.com/img/8958/13/_/411782/_/967825544/TargetHealt
> h468x602F.gif>
> eGroups <http://www.egroups.com/> My Groups
> <http://www.egroups.com/mygroups> | vantage Main Page
> <http://www.egroups.com/group/vantage> | Start a new group!
> <http://click.egroups.com/1/8150/13/_/411782/_/967825544/>
>
>
> >Does anybody know if its possible to print the Product Group on the
> >Crystal Sales Order Acknowledgement?
>
> Not directly, but if it is really important, a good workaround is to
> use the
> VBForm. Create a button on the VBForm that copies the product group
> from
> the detail line into a field in the VBForm. Then the VBForm field can
> be
> printed on the Order Acknowledgement.
>
> Rick Lane
> Intelligent Systems Integration, Inc.
> 661B Weber Drive
> Wadsworth, OHÂ 44281
> 330-335-5291
> Fax: 330-335-7275
>
> "Helping business make intelligent use of technology"
>
>
> We no longer allow attachments to files. To access/share Report
> Files, please go to the following link:Â
> <http://www.egroups.com/files/vantage/>
> (Note:Â If this link does not work for you the first time you try it,
> go to www.egroups.com, login and be sure to save your password, choose
> My Groups, choose Vantage, then choose Files. If you save the
> password, the link above will work the next time you try it.)
>
1) Create a small Progress program that is something like the below. This
will not work for you as it is exactly below, but only a few things would
need changed (i.e. drive letter, etc.). The prod is the control name for
the character field added to the VBForm.

/* include vbp/vb.i so VantageBasic functions are accessible. */
{c:\epicor\vantage\vbp\vb.i}

/* Define variables */
DEFINE VARIABLE prodgrp AS CHAR NO-UNDO.

/* Get the Product Group*/
prodgrp = getStringValue("disp_ProdCode.SCRVALUE").

/* Set the screen value. */
setStringValue("prod.SCRVALUE":U,prodgrp).

2) Save the program into the Vantage\Vbp directory

3) Use the VBForm button to call the Progress program saved in #2

That's about it.

Rick Lane
Intelligent Systems Integration, Inc.
661B Weber Drive
Wadsworth, OH 44281
330-335-5291
Fax: 330-335-7275

"Helping business make intelligent use of technology"


-----Original Message-----
From: Karen Taylor [mailto:KarenTaylor@...]
Sent: Friday, September 01, 2000 1:34 PM
To: 'vantage@egroups.com'
Subject: RE: [Vantage] FW: Crystal Question

Create a button on the VBForm that copies the product group from
the detail line into a field in the VBForm.

Could you explain how to do this please?
Thanks
Sophie