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

Printing TX50 fields

Status
Not open for further replies.

JoaoPinto

Programmer
Feb 12, 2003
26
US
Does anyone know if there are any known issues when doing this in webfocus 5.2?

No matter what way I print, I only ever get the first instance of a TX50? All other instances are blank.

Here is the code

TABLE FILE ISSUINFO
HEADING CENTER
"PSDB Reporting"
PRINT
UPDATEDETAILS ** Text file one
BY ISSUENUMBER NOPRINT PAGE-BREAK
ON ISSUENUMBER SUBHEAD
"Issue Number: <ISSUENUMBER>"
"<EXPR2>" text file 2
ON ISSUENUMBER SUBFOOT
"Method of Implementation: <METHODOFIMPLEMENTATION>"
END


In the above code, EXPR2 display ok, but Update Details only gives me the first row

Also if I just try a normal print

TABLE FILE ISSUDETL
"<EXPR2>"
END

or

TABLE FILE ISSUINFO
"<UPDATEDTAILS>"
END

All I get the first instance in the database then a long list of blanks. Yet stranfely in my first example EXPR2 will print ok.

Does anyone know of any problems with TX50 printing? Or any techniques to print TXT50 fields?

Thanks!!
 
Can you post the master file (MAS) and sample output, so we can see what's happening?
 
The master file below

FILE=ISSUEUPDATES, SUFFIX=SQLMSS ,$
SEGNAME=ISSUEUPDATES,
SEGTYPE=S0 ,$
FIELD=UPDATENUMBER ,UpdateNumber,
I11 ,I4 ,MISSING=OFF,
FIELDTYPE=R,$
FIELD=ISSUENUMBER ,IssueNumber,
I11 ,I4 ,MISSING=ON ,$
FIELD=UPDATEDATE ,UpdateDate,
HYYMDI ,HYYMDI ,MISSING=ON ,$
FIELD=UPDATEDETAILS ,UpdateDetails,
TX50 ,TX ,MISSING=ON ,$
FIELD=FILEATTACHMENTS ,FileAttachments,
BLOB ,BLOB ,MISSING=ON ,$
FIELD=UPDATEBY ,UpdateBy,
A50 ,A50 ,MISSING=ON ,$

***********************************************************

Sample output is

PAGE 1

{Summary} {Details} {Implications} {Suggestions}
{StepsToResolution}updated


***********************************************************

What is outputted is the first value in the table, then nothing else.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top