Hello Experts,
A small doubt. How to link an form with ASSIST EDIT BUTTON (like in purchase order if we click on assist button with 3 dots in field "NO." it opens the "NO. SERIES" form. I am familiar with LOOKUP button but never tried ASSIST BUTTON.
Plz help.
0
Comments
Check code under No.-Assistedit trigger..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
IF AssistEdit(xRec) THEN
CurrForm.UPDATE;
is this AssistEdit(xRec) function?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
Or am I looking at wrong place?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
FORM.RUN(my form number);
and this worked.
Is there any option that I can put a filter in this form?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
I was expecting this question ...
In "G/L Account" I want an "AssistEdit" button in "VAT Bus. Posting group" & "VAT Prod. Posting Group". If I click on the assist button it should open Form '50000' which is linked to Table '50000'
Now in Table "50000" I have a field named "FIELD NO." in which I have put "57" & "58" (which are actually the field No. of "VAT Bus. Posting group" & "VAT Prod. Posting Group" in G/L account Table). so When I click assist button on field "VAT Bus. Posting group" in G/L account it should open the form "50000" with a filter on "FIELD No. = 57" and when I click on Assist Button on field "VAT Prod. Posting Group" in G/L account it should open the form "50000" with a filter "FIELD No. = 58".
Hope I am able to explain properly..