NAV 2009 classic: Sales Order form

Hi Experts,

I should create a form which is related to sales order sub form with fields like type, no, quantity, qty to ship. This form should attach to the menu items in the sales order. My condition is that when I press the menu item in sales order I should see the form and when I enter values in that form it should automatically update in sales order sub form…please explain the process how to write code and where to write…? I am using 2009 r2 classic client

Please help me to achieve this.

You should search the forum for how to update a parent form from a sub form or vice versa. There have been many posts on this topic.

Do you mean to say based on the value entered on customized form sales order will be created ?
If yes then you need to customize the screen and write a program to create the sales order.

I think you want a pop up window when selecting Type= item

if that is the case then in subform onvalidate of type you have to write code related to open Window to take value then update in subform

Window.Open(‘Input Item No. : #######’);

Window.Input(1,Globalvar);

Window.Close;

So value is stored in globalvar. So you can update the subform using value you required…

If this is not the case you need let us know…