Changing the View Layer for Suppress Mode Visibility

This step is part of Process for Establishing Suppress Mode Visibility.

To change the View layer for Suppress mode visibility

  1. Add the field Product Group to MyApplet.

  2. Add the following user properties:

    Name: FINS PGV Suppress Flag, Value: Y
    Name: FINS PGV UseBaseTable, Value: Y / N
    Name: FINS PGV ShowMyPGRecordsOnly, Value: Y / N
    
  3. Add a PGV Frame class or a script to the applet. As explained in Changing the View Layer for Confidential Mode Visibility, you can use either the preconfigured frame classes or the applet script, but not both. If you choose a script, then make the indicated changes to the following script:

    Inputs.SetProperty("FINS PGV Confidential Flag", “Y");
     Inputs.SetProperty("FINS PGV Suppress Flag", “N");
     //In case of Suppress Mode, reverse the Y/N values in the previous two statements.
    
    
     Modify these lines by exchanging the Y/N values, as follows:
     Inputs.SetProperty("FINS PGV Confidential Flag", “N");
     Inputs.SetProperty("FINS PGV Suppress Flag", “Y");
     //In case of Suppress Mode, reverse the Y/N values in the previous two statements