Assuming you want to open the clients category:
1 - Create a "Categories" module where you will declare all the constants related to your categories. In this case it will be
Public Const CAT_Clientes = "Clientes"
2 - Create another module that will be your file (which will be your audit module) with the name "Audit" where you will declare all the constants related to the "tabs"
categories. In this case it will be:
Public Const MNU_TAB_CLIENTES As String = "mnuTabClientes"
3 - Next in your form
associate the code following an action
PSO.AbreLista 1, CAT_Clientes, "Cliente", Me, <TextBox>, MNU_TAB_CLIENTES, blnModal:=True