Detailed instructions for use are in the User's Guide.
[. . . ] DataRight IQ User's Guide
DataRight IQ 7. 90c November 2008
Copyright information
© 2008 Business Objects, an SAP company. Business Objects owns the following U. S. patents, which may cover products that are offered and licensed by Business Objects: 5, 295, 243; 5, 339, 390; 5, 555, 403; 5, 590, 250; 5, 619, 632; 5, 632, 009; 5, 857, 205; 5, 880, 742; 5, 883, 635; 6, 085, 202; 6, 108, 698; 6, 247, 008; 6, 289, 352; 6, 300, 957; 6, 377, 259; 6, 490, 593; 6, 578, 027; 6, 581, 068; 6, 628, 312; 6, 654, 761; 6, 768, 986; 6, 772, 409; 6, 831, 668; 6, 882, 998; 6, 892, 189; 6, 901, 555; 7, 089, 238; 7, 107, 266; 7, 139, 766; 7, 178, 099; 7, 181, 435; 7, 181, 440; 7, 194, 465; 7, 222, 130; 7, 299, 419; 7, 320, 122 and 7, 356, 779. Business Objects and its logos, BusinessObjects, Business Objects Crystal Vision, Business Process On Demand, BusinessQuery, Cartesis, Crystal Analysis, Crystal Applications, Crystal Decisions, Crystal Enterprise, Crystal Insider, Crystal Reports, Crystal Vision, Desktop Intelligence, Inxight and its logos , LinguistX, Star Tree, Table Lens, ThingFinder, Timewall, Let There Be Light, Metify, NSite, Rapid Marts, RapidMarts, the Spectrum Design, Web Intelligence, Workmail and Xcelsius are trademarks or registered trademarks in the United States and/or other countries of Business Objects and/or affiliated companies. [. . . ] = AP. Firm1, Company Copy (source, destination). . . . . . . . . . . . = AP. Address1, Address Copy (source, destination). . . . . . . . . . . . = AP. Last_Line, Lastline END
If AP. Name1 is populated (not empty). . .
. . . then create a record containing this data.
If AP. Name2 is populated. . .
. . . then create a record containing this data.
You can select specific records by including additional criteria in each output filter. For example, if you wanted to create an output file for female names only, your output filter for Name1 might look like this:
(. not. AP. Gender1 = "5"
Note: When posting to the same output file with multiple blocks, set the Existing File parameter in each block to the same values. For example, all Existing File parameters should either be set to Append or Replace
140
DataRight IQ User's Guide
Chapter 12: Reports and statistics
With DataRight IQ you can produce a variety of reports. Each report has its own block for you to set various reporting options. Also, DataRight IQ offers a Report Defaults block where you can set parameters that are the same for all of the reports that you generate. For complete descriptions of the report options for DataRight IQ Job, refer to "Report Defaults" on page 223.
Reports
DataRight IQ produces the following reports. Refer to the corresponding page number to obtain more information:
Report Description Page
Job Summary report Executive Summary report Input File Summary report Input List Summary report List Quality report Output File report
A concise statement of your job setup, input data, and results. A concise statement of the most crucial information about your DataRight IQ job. Shows a summary of the records input, records dropped, and records processed. Shows the number of records that DataRight IQ assigned to each input list that you defined in the job. Helps you assess the quality of the data in each input list. Shows statistics for each output file, including how many records were posted, how many records were dropped, and the output filter(s) used for each output file. Shows you exactly which records were assigned parsing-error codes during processing. A listing of all input records.
147 149 151 152
153 154
Parsing Error report All Records report Change report
155 157
A listing of records that were changed during pro- 159 cessing.
Chapter 12: Reports and statistics
141
Statistics files
In addition to reports, DataRight IQ creates statistics files that contain the information from several of the reports.
Report Description Page
Job summary statistics file Executive summary statistics file Output statistics file
Represents significant aspects of your DataRight IQ job.
161
Contains all information from the Executive Sum- 162 mary report. Contains information from the Output File report and lists one record per list per output file. 163
142
DataRight IQ User's Guide
Manage your reports and statistics files
DataRight IQ lets you produce reports two ways: Save the data in files on disk Print the report (send report data directly to a printer)
Save report data
DataRight IQ gives you the option to send reports directly to a printer. However, many users prefer to save reports in files on disk. This way, you get a chance to preview reports before committing them to paper. DataRight IQ can write each report to a separate file or send all the reports to one file. [. . . ] The item to retrieve the score for.
Output: Populated with the score for the item.
Before you call this function
drl_parse() has been called. drl_item_get_count() has been called.
drl_item_get_text and drl_item_get_text_u
Call this function to retrieve the text for a parsed item.
Synopses
For non-Unicode, use:
int drl_item_get_text(DRL_PARSE_ID, DRL_ITEM, int, unsigned long, char *, int);
For Unicode, use:
int drl_item_get_text_u(DRL_PARSE_ID, DRL_ITEM, int, unsigned long, FlUChar*, int);
Parameter Description
DRL_PARSE_ID DRL_ITEM int
Input: Input: Input:
The DRL_PARSE_ID handle. The item to retrieve.
328
DataRight IQ User's Guide
Parameter
Description
unsigned long
Input:
Options for formatting text. This parameter can be one combination of a CASE and a TEXT option (exclusively OR): DRL_CASE_UPPER DRL_CASE_LOWER DRL_CASE_MIXED DRL_TEXT_PRESERVE DRL_TEXT_ORIGINAL DRL_TEXT_STANDARD For example, if you want mixed casing and original text, pass (DRL_CASE_MIXED | DRL_TEXT_ORIGINAL) as this parameter.
char * FlUChar* int
Output: (Non-Unicode only) A buffer large enough to hold the parsed item (never larger than DRL_MAX_STRLEN). [. . . ]