on 2008 Apr 18 7:12 AM
if i delete the row in matrix using Menu,row is deleted in matrix but Datasource Dont delete the data.please send the code
advance thanks
Renga,
Are you using the FlushToDataSource method? Please see the SAP Business One SDK Help Center Documentation for more information on using this method.
Eddy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
oForm = SBO_Application.Forms.ActiveForm;
if (oForm.UniqueID == "CCSH")
{
oForm = Clsmain.SBO_Application.Forms.Item("CCSH");
oMatrix = (SAPbouiCOM.Matrix)oForm.Items.Item("Item_4").Specific;
oForm.Freeze(true);
oMatrix.FlushToDataSource();
oMatrix.LoadFromDataSourceEx();
ReloadNumbering(oMatrix);
oForm.Freeze(false);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
104 | |
10 | |
8 | |
7 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.