Kristi Carter Posted December 29, 2021 Posted December 29, 2021 Trying to figure out a way in WebFOCUS on the Synonym or on the report itself for an HTML or AHTML format, how to force a new character line when the values of sun., org. or java. show. TIBCO_ForceWrap_Sample.xlsx (179.5 KB)
David Beagan Posted December 29, 2021 Posted December 29, 2021 You could use the REPLACE function to put in <br> tags. For example, to add line breaks after 'ADM' and 'MGR' in the SKILL_DESC field of ibisamp/jobfile. TABLE FILE ibisamp/jobfile PRINT SKILL_DESC COMPUTE SKILL_DESC2/A35 = REPLACE(SKILL_DESC, 'ADM', 'ADM'|'<br>'); COMPUTE SKILL_DESC3/A40 = REPLACE(SKILL_DESC2, 'MGR', 'MGR'|'<br>'); ON TABLE PCHOLD FORMAT AHTML END
Kristi Carter Posted December 29, 2021 Author Posted December 29, 2021 That is exactly what I was looking for. I just couldnt figure out the right syntax on the portion. This seems to be doing what I needed. Thanks so much for the help. Kristi
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now