Call Function with input para of a form from FORM.RUNMODAL

arindam
arindam Member Posts: 176
Hi All,

I have a query. The senario is :

I created a Fom which has a function called 'fnTakeValue'. It takes 2 input parameter and performs some stuffs.

Now, I need to call it from a core navision window. I want to use FORM.RUNMODAL.
With that I am able to open the form. I want to know is there any way that I can call that function of the form and can pass those 2 inout parameter by using FORM.RUNMODAL function of Navision ?

Thanks in advance.

Arindam

Comments

  • Ravi_Prakash_Goyal
    Ravi_Prakash_Goyal Member Posts: 72
    You cannot pass input parameter thru Form.Runmodal.

    But you can call your function in the form before Form.Runmodal. In thios way you can set certain values in the form before actually calling the form.

    regards,
    Ravi
  • arindam
    arindam Member Posts: 176
    Thank you Ravi.