Focal Point
Dialogue Manager -read

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2481077331

April 26, 2004, 10:50 PM
<a0167913>
Dialogue Manager -read
I need help with a -read from dialogue manager. I want to read in a value from a hold file from a previous request.

Is there any documenation on IBI describing how to set this up? All I find is a paragraph or two stating it can be done, but no firm examples.
April 26, 2004, 11:03 PM
<Vipul>
Try this

TABLE FILE CAR
PRINT CAR
BY COUNTRY
IF RECORDLIMIT EQ 1
ON TABLE SAVE
END

-READ SAVE &CARONHOLD.A16. &COUNTRYCAR.A10. ;
-TYPE &CARONHOLD


where .A16. etc is the length of the fields in car.mas file

Vipul
April 26, 2004, 11:06 PM
<Vipul>
You can also say
ON TABLE SAVE AS XYZ

-READ XYZ &CARONHOLD.A16.

Instead of CAR file you can use your hold file for table request.

Vipul
April 27, 2004, 04:08 PM
<a0167913>
Thank you - this worked. I previously had
'on table hold as maxppm'. I changed this to
'on table save'.