Hello,
I have three forms (marked bold):
Customer
New task has a lookup field based on field from Customer. Then i have custom action which (among other things) creates record in
Report:
- void VytvoritProtokol(date Do, date Od, string Uloha, string Technik, string Z_kazn_k, int recid)
- {
- rec = New_task [ID == input.recid];
- rec.Protokol = true;
- insert into Report
- [
- Added_User = zoho.loginuser
- Koniec_z_sahu = input.Do
- Kr_tky_popis_probl_mu = input.Uloha
- Napl_novan_pr_chod = input.Od
- Stav_z_sahu = "Vyriešené"
- Technik = input.Technik
- Z_kazn_k = xxxx
- ]
- }
What should be instead of
xxxx if i want there
value chosen in lookup field (in
New_task based on
Customer)
Im finishing my simple application and im stuck at final step :(