969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
|
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
|
-
+
-
|
/*
** WEBPAGE: rptview
**
** Generate a report. The "rn" query parameter is the report number
** corresponding to REPORTFMT.RN. If the "tablist" query parameter exists,
** then the output consists of lines of tab-separated fields instead of
** an HTML table. If the "rvsmpl" query parameter is set to an ordinary
** an HTML table. If the "rvsmpl" query parameter is set then report's
** unfuncy ASCII string (alphanumerics, '_' and '-') then report's
** submenu will contain an extra hyperlink that have a value-driven
** label and target.
**
** "rvsmpl" stands for Report View SubMenu's Parametric Link.
*/
void rptview_page(void){
int count = 0;
|