...

  1. In Report Parameters tab, select Yes from the Is Password Protected? drop-down.

Image RemovedImage Added

A Password Pattern field appears.
Image RemovedImage Added2. Now, enter the function and attributes patterns in the Password Pattern field.

...

  • s:getFirst can be used to read the starting characters from the selected attribute.
  • s:getLast can be used to read the end characters from the selected attribute.
  • d:day can be used to read days.
  • d:month can be used to read the months in numbers. For example, 11 for the month November.
  • d:monthabbr can be used to read the months in abbreviations. For example, Nov for the month November.
  • d:monthfull can be used to read the months in words. For example, November for the month November.
  • d:year can be used to read years.
  • d:year2 can be used to read the first last two digits of the year. For example, 20 21 for the year 2021.

Image RemovedImage Added

4. Enter '@' to view the list of password attributes available for the functions. Select any one from the attribute list.

...

  • FIRST_NAME 
  • MIDDLE_NAME
  • LAST_NAME
  • DATE_OF_BIRTH
  • LOGIN_ID
    Image RemovedImage Added


Here, s:getFirst(LOGIN_ID, 4) +getLast(MIDDLE_NAME, 3) is provided as the password pattern. The expression informs the system to read the first four characters from the Login ID (s:getFirst(LOGIN_ID, 4)), last three characters from the middle name (getLast(MIDDLE_NAME, 3)) and concatenate them to form a password.
Image RemovedImage Added5. Perform the other configurations and save the report.

...