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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to get DW retrieval arg values?

Status
Not open for further replies.

Statey603

Programmer
Nov 10, 2009
196
0
0
US
I have a screen that passess a datawindow to another screen.
The dw has 2 retrieval arguments (min and max).
On the 2nd screen I would like to reference the value of these retrieval arguments.
text_ctrl.text = 'All records with value between [arg_min] and [arg_max]'

Is there a way to get at the argument parameters of a DW to read their values?

I appreciate any suggestions, etc.

P.S. I apologize if this is a stupid question. It has been a while since I have worked with PB.
Thanks
 
There may be a simpler way, but I'm not coming up with it off the top of my head...

Can you add a computed field to the detail with the value of arg_min/arg_max and then GetItemNumber( ll_row, 'computed_field_name' ) them?
 
Yeah, that is what I ended up doing - including the args as computed values. Seems a bit redundant since the values are already in the DW but apparently not readily available.

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top