Jump to content

Recommended Posts

Posted

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)

Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...