PeopleCode Request: Can someone post the most recent version if this code: FSPC_LINK_PGLT.GBL.FSPC_L
We are working with PUM 11 PeopleSoft 9.2/PeopleTools 8.55. We are experiencing some strange behavior with collapsing and expanding the GL WorkCenter Links section. I wanted to check out the most recent version of this PeopleCode because it seems as though changing this code could fix the issue. I have included what we have in PUM 11 below.
Local string &CollapseAll;
&CollapseAll = GetRow().FSPC_LINK_WRK.COLLAPSE_ALL_FLAG.Value;
If None(&CollapseAll) Then
&CollapseAll = GetRow().FSPC_ADM_LNKGRP.COLLAPSE_PB.Value;
End-If;
If &CollapseAll = "Y" Then
GetRow().FSPC_LINK_WRK.COLLAPSE_ALL_FLAG.Value = "N";
GetRow().GetRowset(Scroll.FSPC_ADM_LNKLST).ShowAllRows();