1 / 13

RTF Tips and Tricks

RTF Tips and Tricks. Trns•port Users Group Presentation October 15, 2004. Why We’re Here. C/S Release 5 added a lot to RTF RTF was added to SiteManager fairly recently Many people haven’t worked with it, or aren’t aware of all its capabilities This is not an RTF class.

inigo
Download Presentation

RTF Tips and Tricks

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. RTF Tips and Tricks Trns•port Users GroupPresentation October 15, 2004

  2. Why We’re Here • C/S Release 5 added a lot to RTF • RTF was added to SiteManager fairly recently • Many people haven’t worked with it, or aren’t aware of all its capabilities • This is not an RTF class

  3. Zen and the Art of RTF • Read the manual, significant updates in December 04 release • Study existing templates • Adapt, instead of re-invent, if possible • Develop reports incrementally • Logic before formatting • Outline • Work from the outside in • Develop as plain text report first

  4. Save Someone’s Sanity(possibly even your own) • Develop with sharing in mind • e.g., multiple-project proposals/contracts • Comment, comment, comment • Then comment some more • RTFLOG.TXT is your friend • Indent code blocks • Comment ENDIFs, ENDREPEATs, etc.

  5. Enhance Your Performance • SELECT * usually isn’t the best query • Do you really need all the columns? • Avoid WHERE_OR_AFTER • Retrieves ALL rows matching the condition • Keep database keys in mind • Keep unnecessary statements out of loops

  6. Good Stuff™ • NUM_ROWS special variable • Gives the number of rows that the latest GET or REPEAT command found • FOUND special variable • Returns true if the latest GET or REPEAT command found a record that matches the condition in the command • “&!” can be used as a pointer of sorts (code_ex.) (output_ex.)

  7. More Good Stuff • Exporting data using RTF • CSV, COLUMNAR built in • Can also export any text-based format, e.g., XML, HTML • Running external programs and DLL functions within an RTF template (code_ex.)(rawout_ex.)(finout_ex.)

  8. Exporting Data • From CAS ArchiveContracts.rtf: %LET table_name = "CONTMOD" %REPEAT OVER CONTMOD WHERE CONTID IS SUBSET.CONTID %EXPORT CSV table_name, SUBSET.CONTID,, CONTMOD.CMODTYPE,, ...

  9. Calling an External Program – Example 1 • From SiteManager SMVend2ebs.rtf: %load SystemCall ... %let OutputFile = t_cd_tbl_dtl.cd_desc ... %call plug in SystemCall( "if exist " || OutputFile || " del " || OutputFile ) ...

  10. Calling an External Program – Example 2 • From CAS casecnt.rtf: %load SystemCall ... %call plug in SystemCall( "del " || CFBEXPTDIR || "\d" || subset.cnfacs || ".dat" ) ...

  11. What on Earth is CFBEXPTDIR? • Environment variable • Defined in ITIDPSSV.CFG • Other job-specific variables are defined in the job parameter file • Other examples: OutFiles, SysFiles • For a list, look at a JOBPARM.TXT file • JOBEXEC.TXT also handy

  12. RTF Tips and Tricks Mark Douglas mark.douglas@infotechfl.com

  13. Questions??

More Related