New tab in General Ledger Categories
Hi,
I'm using the nice functionality in Form Custom Tabs to write my own grid so the user can edit the data in a table GL_Segments.
I have my own stored proc which returns the schema and grid - it displays as expected in SQL query window.
When I add it to the General Ledger Categories, nothing appears, yet when I add it to Inventory Maintenance (just as a test) the new tab appears. Is there something special about the tab control in GL Categories which prevents a new tab from getting added?
Also if I am able to get the grid to display, is it read only or editable?
Version 7.0.157 for now, but client is soon to upgrade to 7.0.175.
EDIT: If the above isnt possible, I've been able to create a new plugin which creates a new form. Unfortunately it is read only. Is there a way to make it editable?
I'm using the nice functionality in Form Custom Tabs to write my own grid so the user can edit the data in a table GL_Segments.
I have my own stored proc which returns the schema and grid - it displays as expected in SQL query window.
When I add it to the General Ledger Categories, nothing appears, yet when I add it to Inventory Maintenance (just as a test) the new tab appears. Is there something special about the tab control in GL Categories which prevents a new tab from getting added?
Also if I am able to get the grid to display, is it read only or editable?
Version 7.0.157 for now, but client is soon to upgrade to 7.0.175.
EDIT: If the above isnt possible, I've been able to create a new plugin which creates a new form. Unfortunately it is read only. Is there a way to make it editable?
- Code: Select all
public class GLSegmentsForm : JiwaFinancials.Jiwa.JiwaApplication.NavigationListUI.NavigationList
{
public GLSegmentsForm()
{
base.StoredProcName = "Attkey_usp_GLSegments";
base.Text = "GL Segments";
}
public override void Start()
{
base.Start();
}
}