Hello all, I think I am close on what to do here but can't seem to put my finger on it. Within an expense report in employee services. On the distributions page (where you can change financial dimensions or split by percantages) The web control is TrvExpTransDistributions. Our account structure requires cost center on all of our expense accounts. What we want to do is remove the ability to change the GL account on this page and leave the ability to change the cost center. I found myself on the LedgerDimensionEPController web control. I see commented code on making fields visible but have no idea where to go from here. Any insight? Below is the section of code i am looking at in Web -> Web Controls -> LedgerDimensionEPController -> LedgerDimensionEPController_ascx_cs
/// <summary>
/// Gets the list of dimension attribute id values that should be visible.
/// </summary>
/// <remarks>
/// If the list is empty, then it is assumed that all dimension attributes should be visible.
/// </remarks>
I think I need to provide a list in this code to select what I want to be visible, but I have no idea what to put in here.
public IList<long> VisibleDimensionAttributes
{
get
{
if (this.visibleDimensionAttributes == null)
{
this.visibleDimensionAttributes = new List<long>();
}
return this.visibleDimensionAttributes;
}
}
*This post is locked for comments
I have the same question (0)

Report
All responses (
Answers (