mod 7_report_enhancement_part_1[1]

17
1 Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting Report Enhancement Part 1 Module 7

Upload: william-miller

Post on 30-Jun-2015

103 views

Category:

Technology


0 download

DESCRIPTION

report enhancement 1

TRANSCRIPT

Page 1: Mod  7_report_enhancement_part_1[1]

1Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Report Enhancement Part 1

Module 7

Page 2: Mod  7_report_enhancement_part_1[1]

2Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Variables• Are user defined.• Formula or calculation that

has a name. • Are usually displayed in

columns alongside corresponding data.

• May contain functions.

Page 3: Mod  7_report_enhancement_part_1[1]

3Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Variables help when:• A formula is used repeatedly

in different blocks and on different report tabs within a document.

• Creating an Object not found in the universe when its parts are.

Page 4: Mod  7_report_enhancement_part_1[1]

4Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

• Functions help you define formulas.

• Functions are tools used when defining formulas or variables.

Functions

Page 5: Mod  7_report_enhancement_part_1[1]

5Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

• Function examples:– SubStr(...)– ToNumber(...)– CurrentDate(...)– IsNull(...)– ToDate(...)

Functions (cont.)

Page 6: Mod  7_report_enhancement_part_1[1]

6Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Creating Variables

Right click the new column to display the speedmenu.

Page 7: Mod  7_report_enhancement_part_1[1]

7Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Type the name of your variable: PP-SRS-GRD

Creating Variables (cont)

PP-SRS-GRD

Page 8: Mod  7_report_enhancement_part_1[1]

8Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Type the formula

Creating Variables (cont)

Your new variable shows up like an object.

=<Pay Plan Perm>&“-”& <Ocuptnl Srs>& “-” & <Gr Civ Perm>

Page 9: Mod  7_report_enhancement_part_1[1]

9Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Creating Variables (cont)

Page 10: Mod  7_report_enhancement_part_1[1]

10Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Variable Examples= If IsNull(<Name Pers>) Then " (VACANT)" Else <Name Pers>

Page 11: Mod  7_report_enhancement_part_1[1]

11Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Variable Examples

Page 12: Mod  7_report_enhancement_part_1[1]

12Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Variable Examples

Page 13: Mod  7_report_enhancement_part_1[1]

13Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

•Masking Data

To Mask certain portions of data create a Variable and use a Sub-string Function

For example: Mask all but the last 4 digits of SSNs

Variable Examples

Page 14: Mod  7_report_enhancement_part_1[1]

14Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

To Mask DataNeed to create a Variable

Select a ColumnThen Insert a Column

Page 15: Mod  7_report_enhancement_part_1[1]

15Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

To Mask Data (cont.)

Right Click over new column to bring up speed menu.

Page 16: Mod  7_report_enhancement_part_1[1]

16Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

To Mask Data (cont.)

Page 17: Mod  7_report_enhancement_part_1[1]

17Modified, with permission, from Business Objects SA copyrighted materials - Introduction to Reporting

Insert=SubStr(<SSN> ,6,4)

To Mask Data (cont.)