73
More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Embed Size (px)

Citation preview

Page 1: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

More Things You Can Use on Monday

Walter F. BloodTechnical Director

Copyright 2010, Information Builders. Slide 1

Page 2: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

More Things You Can Use on Monday

AgendaSET ParametersReportingDialogue ManagerFunctionsTroubleshootingMy Top 5 from Last Year

Copyright 2010, Information Builders. Slide 2

Page 3: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters

Copyright 2010, Information Builders. Slide 3

Page 4: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters

A few more of my favourite SET parameters ACROSSLINE EMPTYCELLS EMPTYREPORT FILECOMPRESS FOCFIRSTPAGE CNOTATION OVERFLOWCHAR HIDENULLACRS

Working with SET Parameters

Copyright 2010, Information Builders. Slide 4

Page 5: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – ACROSSLINE

Controls the display the default line across the reportOptions: ON, OFF, SKIPDefault: ON

Copyright 2010, Information Builders. Slide 5

SET ACROSSLINE = ON SET ACROSSLINE = OFF

Page 6: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – ACROSSLINE

Controls the display the default line across the reportOptions: ON, OFF, SKIPDefault: ON

Copyright 2010, Information Builders. Slide 6

SET ACROSSLINE = SKIP

TITLELINEis a synonym forACROSSLINE

Page 7: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – EMPTYCELLS

Controls the content of null cells in Excel outputOptions: ON, OFFDefault: ON

SET EMPTYCELLS = ON SET EMPTYCELLS = OFF

Page 8: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – EMPTYCELLS

Works in conjunction with NODATA

SET EMPTYCELLS = OFFSET NODATA = 'No Data'

Page 9: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – EMPTYREPORT

Controls what is displayed if no data returnedOptions: ON, OFF, ANSIDefault: OFF

SET EMPTYREPORT = OFF

SET EMPTYREPORT = ANSI

SET EMPTYREPORT = ON

Page 10: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – FILECOMPRESS

Enables the compression of PDF report outputOptions: ON, OFFDefault: OFF

SET FILECOMPRESS = OFF

1.1 MB

SET FILECOMPRESS = ON

244 KB

Page 11: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – FOCFIRSTPAGE

Controls the first page number of a reportOptions: nDefault: 1

SET FOCFIRSTPAGE = 1 SET FOCFIRSTPAGE = 5

Page 12: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – FOCFIRSTPAGE

&FOCNEXTPAGE will tell you what the next page number will be after a report runs

Use with FOCFIRSTPAGE

SET FOCFIRSTPAGE = &FOCNEXTPAGE

&FOCNEXTPAGE = 5

Page 13: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – CNOTATION

Controls how columns are numbered for internal referencing during report processing

Options: ALL, PRINTONLY, EXPLICITDefault: ALL

TABLE FILE GGSALES SUM DOLLARS NOPRINT COMPUTE VARIANCE/D12M = DOLLARS - BUDDOLLARS; BY REGIONEND

Page 14: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – CNOTATION

TABLE FILE GGSALES SUM DOLLARS NOPRINT COMPUTE VARIANCE/D12M = DOLLARS - BUDDOLLARS; BY REGIONEND

REGION DOLLARS BUDDOLLARS VARIANCE

C1 C2 C3

SET CNOTATION = ALL

SET CNOTATION = PRINTONLYREGION DOLLARS BUDDOLLARS VARIANCE

C1

SET CNOTATION = EXPLICITREGION DOLLARS BUDDOLLARS VARIANCE

C1 C2

Page 15: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – OVERFLOWCHAR

Controls the character displayed on an overflowOptions: *, any characterDefault: *

OVERFLOWCHAR = * OVERFLOWCHAR = !

Page 16: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – HIDENULLACRS

Suppresses printing of null across columns on a pageOptions: ON, OFFDefault: OFF

SET HIDENULLACRS = OFF

SET HIDENULLACRS = ON

Page 17: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – Working with parameters

SET parameter values can be displayed

? SET ACROSSLINE

? SET ? SET ALL

Page 18: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – Working with parameters

SET parameter categories can be displayed

? SET CATEGORY REPORT

? SET CATEGORY DATES

Page 19: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – Working with parameters

SET parameters can be displayed by category CategoriesMEMORYDATESSECURITYSINKSENDCOMPUTATIONMDIEXTERNALSORTFOCCALCENVIRONMENTWEBFOCUSREPORTGRAPHSTYLESHEETRETRIEVALHOLDPLATFORMMAINFRAME

? SET BY CATEGORY

Page 20: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – Working with parameters

SET parameter values can be explained

? SET FOR ACROSSLINE

Page 21: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – Working with parameters

SET parameter values can be captured

SET parameter values can be used

-? SET ACROSSLINE &SETTING

&SETTING = ON

-? SET ACROSSLINE &SETTING

-IF &SETTING EQ 'ON' THEN GOTO …

Page 22: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting

Copyright 2010, Information Builders. Slide 22

Page 23: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – DEFINE Functions

Subroutines based on WebFOCUS DEFINEsTake arguments and return resultsCan be used with any data file

As a compute, serves a very specific purposeHow do we make it more useable?

COMPUTE DOLPERUNIT/D12.2 = DOLLARS / UNITS;

Page 24: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – DEFINE Functions

Create a DEFINE function

Use the function in the COMPUTE

DEFINE FUNCTION PERUNIT (VALUE/D12, QTY/I9) PERUNIT/D12.2 = VALUE / QTY ;END

COMPUTE DOLPERUNIT/D12.2=PERUNIT(DOLLARS,UNITS);

Page 25: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – DEFINE Functions

Creates a reusable and consistent function

COMPUTE DOLPERUNIT/D12.2 = PERUNIT(DOLLARS,UNITS);

COMPUTE BUDPERUNIT/D12.2 = PERUNIT(BUDDOLLARS,BUDUNITS);

Page 26: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – DEFINE Functions

DEFINE FUNCTION name (arg1/fmt1,..., argn/fmtn)

[tempvariablea/formata = expressiona;]...[tempvariablex/formatx = expressionx;]

name/format = [result_expression];

END

Syntax

Page 27: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – DEFINE Functions

Usage Notes

The number of functions you can define and use in a session is virtually unlimited

Only cleared by DEFINE FUNCTION CLEAR command

Function names can be up to 64 characters.

Argument names are limited to 12 characters

No limit to the number of arguments

Can call other DEFINE functions, but cannot call themselves

If a DEFINE function isn’t available

(FOC03665) Error loading external function '%1'

Page 28: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – FILTER FILE

Automatic filtering in reports and graphsCan be activated and deactivated as required

FILTER FILE GGSALES NAME = MIDWEST WHERE REGION EQ 'Midwest';END

Define the Filter

SET FILTER = MIDWEST IN GGSALES ON

Activate the Filter

Page 29: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – FILTER FILE

FILTER FILE GGSALES NAME = MIDWEST WHERE REGION EQ 'Midwest';END

TABLE FILE GGSALES SUM DOLLARS UNITS BY REGIONEND

SET FILTER = MIDWEST IN GGSALES OFF

SET FILTER = MIDWEST IN GGSALES ON

Page 30: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – FILTER FILE

FILTER FILE GGSALES

NAME = MIDWEST WHERE REGION EQ 'Midwest';

NAME = NTHEAST WHERE REGION EQ 'Northeast';

NAME = STHEAST WHERE REGION EQ 'Southeast';

NAME = WEST WHERE REGION EQ 'West';

END

SET FILTER =

STHEAST IN GGSALES ON

WEST IN GGSALES ON

MIDWEST IN GGSALES ON

NTHEAST IN GGSALES ON

Page 31: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – FILTER FILE

FILTER FILE GGSALES

NAME = MIDWEST WHERE REGION EQ 'Midwest';

NAME = COFFEE WHERE PRODUCT CONTAINS 'Coffee';

END

SET FILTER = MIDWEST COFFEE IN GGSALES ON

Page 32: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – FILTER FILE

Once activated, will apply to all subsequent reportsApply variable selections passed in from formsEnforce row level securityAvoid Dialogue Manager code inside a TABLE FILE

-DEFAULT &SETFILTER=OFFSET FILTER = MIDWEST IN GGSALES &SETFILTERTABLE FILE GGSALES SUM DOLLARS UNITS BY REGION BY PRODUCTEND

TABLE FILE GGSALES SUM DOLLARS UNITS BY REGION BY PRODUCT

-IF &SETFILTER EQ 'OFF' THEN - GOTO NO_FILTER; WHERE REGION EQ 'Midwest';-NO_FILTER

END

VS

Page 33: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – Hold Files

ON TABLE HOLD directly to an app folderHOLD AS app/filename

Puts summit.ftm into the baseapp app folderTo capture summit.mas still needs APP HOLDMETA

TABLE FILE GGSALES SUM DOLLARS BY REGION ON TABLE HOLD AS baseapp/summit.ftmEND

Page 34: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Reporting – Hold File Delimiter

Select any character as your column delimiter

ON TABLE HOLD AS HDATA FORMAT DFIX DELIMITER '~'

Midwest~11400665Northeast~11392300Southeast~11710379West~11652946

SEGNAME=HDATA, DELIMITER=~, HEADER=YES, $

Region~Dollar Sales Midwest~11400665Northeast~11392300Southeast~11710379West~11652946

ON TABLE HOLD AS HDATA FORMAT DFIX DELIMITER '~' HEADER YES

SEGNAME=HDATA, DELIMITER=~, HEADER=NO, $

Page 35: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager

Copyright 2010, Information Builders. Slide 35

Page 36: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – Testing for Operating System

&FOCMODE Returns the operating system you are running in Enables you to take action based on where you are Values: WINNT, UNIX, etc.

-IF &FOCMODE EQ 'UNIX' THEN GOTO UNIX_STUFF - ELSE GOTO WIN_STUFF;

Page 37: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – .EXISTS

Indicates if an & variable exists (has value)Can be used to control navigation

0 = variable does not exist 1 = variable exists

-IF &REGION.EXIST EQ 0 THEN GOTO GET_REGION - ELSE GOTO RUN_REPORT;

Page 38: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – .EVAL

Resolves & variables in a pre-parse of Dialogue ManagerEnables resolved variables to be used in DM code

-SET &REGION = 'West';-SET &TITLE = 'Report for &REGION';

-SET &REGION = 'West';-SET &TITLE = 'Report for &REGION.EVAL';

Page 39: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – .QUOTEDSTRING

Automatically and intelligently puts quotes around & variables

TABLE FILE EMPDATE PRINT NAME IF NAME EQ &NAME.QUOTEDSTRINGEND

&NAME = John Smith

TABLE FILE EMPDATE PRINT NAME IF NAME EQ &NAMEEND

&NAME = John O’Brian

Page 40: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – .LENGTH

Returns the length of an & variable valueCan be used for edit checking and to control navigation

-IF &REGION.LENGTH LT 10 THEN GOTO SHORT_REGION - ELSE GOTO LONG_REGION;

-SET &REGION = 'West';

&REGION.LENGTH = 4

-SET &REGION = 'West ';

&REGION.LENGTH = 10

-SET &REGION = 'West ';-SET &REGION = TRUNCATE(&REGION);

&REGION.LENGTH = 4

Page 41: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – .TYPE

Returns the type of an & variable valueCan be used for edit checking and to control navigation

A = alphanumeric N = numeric

-SET &REGION = 'West';

&REGION.TYPE = A

-SET &REGION = '12345';

&REGION.TYPE = N

-IF &REGION.TYPE EQ A THEN GOTO ALPHA_REGION - ELSE GOTO NUM_REGION;

Page 42: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – DEFAULTH

Sets a default value for hidden & variablesHidden & variables are not prompted for

Autoprompt, MR Publish Utility, HTML Composer, ReportCaster Scheduling

-DEFAULT &ORDERDATE=19970101

-DEFAULTH &ORDERDATE=19970101

Page 43: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Functions

Copyright 2010, Information Builders. Slide 43

Page 44: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Functions

A few more of my favourite functions UPCASE LOCASE LCWORD FPRINT

Page 45: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Functions – UPCASE

Convert a string to upper caseUPCASE(length, input, outfield)

UP_REGION/A11=UPCASE(11,REGION,UP_REGION);

Page 46: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Functions – LOCASE

Convert a string to lower case LOCASE(length, input, outfield)

LO_REGION/A11=LOCASE(11,REGION,UP_REGION);

Page 47: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Functions – LCWORD

Convert a string to lower case LCWORD(length, string, outfield)

MX_COUNTRY/A10=LCWORD(10, COUNTRY, MX_COUNTRY);

Page 48: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Functions – FPRINT

Convert any numeric data to the alpha display you wantFPRINT(infield, format, outfield)

ADOLLARS/A20= FPRINT(DOLLARS,'D12M',ADOLLARS);SALES/A30= 'Sales = ' | ADOLLARS;

Page 49: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Troubleshooting

Copyright 2010, Information Builders. Slide 49

Page 50: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SQL Tracing - TRACESTAMP

Controls the display of the time stamp on SQL traceOptions: ON, OFFDefault: ON

Copyright 2010, Information Builders. Slide 50

SET TRACESTAMP = ON SET TRACESTAMP = OFF

SET TRACESTAMP=OFFSET TRACEOFF=ALLSET TRACEON=SQLAGGR//CLIENTSET TRACEON=STMTRACE//CLIENTSET TRACEUSER=CLIENT

Page 51: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Developer Studio – Comments

Copyright 2010, Information Builders. Slide 51

CTRL-M

CTRL-R

Page 52: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Developer Studio – I forgot to press Caps Lock

Copyright 2007, Information Builders. Slide 52

Have you ever typed this …

And wanted to type this …

Page 53: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Developer Studio – I forgot to press Caps Lock

Copyright 2007, Information Builders. Slide 53

+

=

Page 54: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Who, What, Where am I

Copyright 2007, Information Builders. Slide 54

What’s my site code?

? SITECODE

What release am I running?

? RELEASE

Page 55: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

My Top 5 from Last Year

Copyright 2010, Information Builders. Slide 55

Page 56: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

SET Parameters – DMPRECISION

Controls decimal precision of & variablesOptions: OFF, nDefault: OFF If OFF, everything is an integerOtherwise, you decide

-SET &TEST = 123.45 + 5.43;-TYPE TEST = &TEST

SET DMPRECISION = OFFTEST = 128.88&TEST = 128

SET DMPRECISION = 1&TEST = 128.9

SET DMPRECISION = 2&TEST = 128.88

Page 57: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Dialogue Manager – ASIS

In a Dialogue Manager variable blank = 0 = ' 0' = ' 0000'Dialogue Manager variables have no formatASIS allows us to test the true value of the variable

-SET &VAR1 = ' ';-SET &VAR2 = 0;

&VAR1 EQ &VAR 2 = TRUE

but

ASIS(&VAR1) EQ ASIS(&VAR 2) = FALSE

ASIS(&VAR1) EQ 0 = FALSE

ASIS(&VAR2) EQ ‘ ’ = FALSE

Page 58: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Lookup a value in one data source while reading anotherNo JOIN requiredNot a replacement for JOIN – use when appropriateDB_LOOKUP(look_mf, srcfld1, lookfld1, srcfld2, lookfld2, ...,

returnfld)

Functions – DB_LOOKUP

MANAGER/A10 = DB_LOOKUP (FINANCE, REGION, REGION, SALES_MANAGER);

Page 59: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Currency conversionConsistent conversion based on standard ratesNo JOIN to an exchange rate table required

DEFINE Functions and DB_LOOKUP

Month Country Sales Currency

2011/05 Germany $85,657.14 EUR

2011/04 Germany $30,286.37 EUR

2011/03 Germany $25,578.56 EUR

Month Currency Rate

2011/05 EUR 1.45359

2011/04 EUR 1.44484

2011/03 EUR 1.39992

Sales Data

Exchange Rates

Page 60: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Create a DEFINE Function to convert any value

DEFINE FUNCTION CONVERT (MONTH/A6, CURRENCY/A3, VALUE/D15.2)

RATE/D15.6 = DB_LOOKUP (XCHG_RATE, MONTH, RATE_MONTH, CURRENCY, CURRENCY, RATE);

CONVERT/D12.2 = VALUE * RATE;

END

DEFINE Functions and DB_LOOKUP

Page 61: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Use the function in a report

TABLE FILE SALESSUM SALESCOMPUTE USD_SALES/D12.2= CONVERT(SALES_MONTH, CURRENCY, SALES);BY COUNTRYBY SALES_MONTHIF COUNTRY EQ 'GERMANY'END

DEFINE Functions and DB_LOOKUP

Page 62: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Missing Data – In calculations

Example:

Sales in HR is missing but treated like 0 in the calculation Is this right?Results of calculations can be made “missing” based on

availability of components

PROFIT/D12 = SALES – COSTS;

Department Sales Costs Profit

East 100 90 10

HR . 90 -90

West 0 90 -90

Page 63: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Missing Data – In calculations (cont)

Calculation: Supports a result of MISSING (MISSING ON) Demands that all components be present (NEEDS ALL)

Now HR has profit of MISSING because SALES is MISSINGNEEDS ALL could also be NEEDS SOMESupported in Dev Studio

PROFIT/D12 MISSING ON NEEDS ALL = SALES – COSTS;

Department Sales Costs Profit

East 100 90 10

HR . 90 .

West 0 90 -90

Page 64: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Troubleshooting – WHENCE

Shows where a selected module is being pulled fromCan search for Focexecs, Master Files and Access Files

WHENCE focexec FOCEXEC WHENCE masterfile MASTER WHENCE accessfile ACCESS

Returns physical location of the moduleVerify you are accessing and using the one you think you are

WHENCE car MASTER

WHENCE portfolio ACCESS

WHENCE controlchart FOCEXEC

Page 65: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

IB Tech Support as a Search Engine

Copyright 2010, Information Builders. Slide 65

Page 66: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

IB Tech Support as a Search Engine

Go to:http://www.microsoft.com/windows/ie/searchguide/en-en/default.mspx

Page 67: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Complete the form on the right to

IB Tech Support as a Search Engine

URL for search provider

Descriptive Name

Page 68: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

To find the required URL:Open a new browser window or tabAccess the IB Enterprise Content Library

http://ecl.informationbuilders.com/ecl/searchSearch for TEST (upper case)Copy the URL in the address barPaste the URL into the form

IB Tech Support as a Search Engine

Page 69: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

After filling out the form, press Install

IB Tech Support as a Search Engine

Press Add on the confirmation panel

Page 70: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Your all setClick on the Search Providers drop

down IB Tech Support is now listed

Select it and enter search criteria

IB Tech Support as a Search Engine

Page 71: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

IB Tech Support as a Search Engine

Your search results are presented using MagnifyCategory tree on the left enable further filteringSelect Tabular View to see results as an Active Report

Page 72: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

IB Tech Support as a Search Engine

Select Tabular View to see results as an Active Report

Page 73: More Things You Can Use on Monday Walter F. Blood Technical Director Copyright 2010, Information Builders. Slide 1

Thank You!

Questions?