Greetings All,
CR9, Informix procedure, Unix database.
I have a formula that is getting damaged quantities from the same procedure expression as the undamaged quantities This formula is finding the records created in the db that have the hold code of DAMG and selecting the quantity. I am having a problem with the grouping on this field. The only place it will display a footer, however the objects that I need it to line up with for the report are in various headers. Is there anyway to write a formula that will just show the results of the 1st formula so I can leave it in the footer?
This is the formula:
whileprintingrecords;
shared numbervar dmgQty :=
If ({sp_osd.(expression):9}="DAMG") then
(dmgQty + {sp_osd.(expression):7})
else
dmgQty;
Thanks!!
CR9, Informix procedure, Unix database.
I have a formula that is getting damaged quantities from the same procedure expression as the undamaged quantities This formula is finding the records created in the db that have the hold code of DAMG and selecting the quantity. I am having a problem with the grouping on this field. The only place it will display a footer, however the objects that I need it to line up with for the report are in various headers. Is there anyway to write a formula that will just show the results of the 1st formula so I can leave it in the footer?
This is the formula:
whileprintingrecords;
shared numbervar dmgQty :=
If ({sp_osd.(expression):9}="DAMG") then
(dmgQty + {sp_osd.(expression):7})
else
dmgQty;
Thanks!!