I'm running Progress 91D on Linux dealing with MFG/PRO.
I want to modify a field (pt_fr_class) on all part numbers (pt_part) that begin with "MD". I want to put "37085" in the field (pt_fr_class) for all the parts that begin with "MD".
Here is the code I have that will display the information, but I don't know how to modify the data. Is it an update statement? Assign Statement? I've been through the Progress Programming Handbook and Language Reference books and am still stumped.
FOR EACH pt_mstr WHERE pt_part BEGINGS "MD":
DISPLAY pt_part pt_fr_class.
END.
Thanks in advance,
Jeffery
I want to modify a field (pt_fr_class) on all part numbers (pt_part) that begin with "MD". I want to put "37085" in the field (pt_fr_class) for all the parts that begin with "MD".
Here is the code I have that will display the information, but I don't know how to modify the data. Is it an update statement? Assign Statement? I've been through the Progress Programming Handbook and Language Reference books and am still stumped.
FOR EACH pt_mstr WHERE pt_part BEGINGS "MD":
DISPLAY pt_part pt_fr_class.
END.
Thanks in advance,
Jeffery