Adding Column to existing GridView Data

Hello

I have DropShipment GridView in AR Invoice Entry → Shipment → Drop Shipment button. In this I added Price column which is taken from DropShipDtlADapter and its showing properly and in working condition.

Issue here is loading time. As this current functionality is once we select checkbox, selected row will come down in another gridview. Since I added Price column, its loading all gridview value on every select row.
If i click Clear button, again it will load and then it will show with Price column.

Is there any way where in System Grid only ARInvUninvoicedDropShip we can add Price column.

Thanks.

You can create a new dashboard with all the info you want and embed it in your form as a new grid/tab. As for the loading time, try getting the price from a BAQ instead of calling the BO. Also, when you get the values, try getting them all at once as opposed to one for each row in the grid. But it will always be significantly slower if you add columns to the grid. Haven’t found a way to speed that up.