I am quite new to Lotus Development. I have 2 forms one is filled by a requestor having various fields and an airwaybill number that I’m using it to search with. Then I has a second form that only one field where you can input the airway bill number and search on a view where the first form data was entered. The second form is loaded via web browser.
When the number is found in view I change the status and when It was not found I need to send a mail to certain users with the number entered in the field on the web.
I’m using this coding in a button on the web form:
@SetField(“awbnum”;awb_chk);
tmp_res:=@DbLookup(“”:“NoCache”;“”:“”;“airwaybill”;awb_chk;1;[FailSilent]);
@If (tmp_res = awb_chk;@SetField(“status_view”;“Parcel Found”);@SetField(“status_view”;“Parcel Not Found - Email Sent”):@PostedCommand([ToolsRunMacro]; “mail2”)
);
tmp_resa:=@DbLookup(“”:“NoCache”;“”:“”;“airwaybill”;awb_chk;5);
@SetField(“requestor_view”;@If (@IsError(tmp_resa);“…”;tmp_resa));
tmp_resb:=@DbLookup(“”:“NoCache”;“”:“”;“airwaybill”;awb_chk;6);
@SetField(“cmmts_view”;@If (@IsError(tmp_resb);“…”;tmp_resb));
tmp_res1:=@DbLookup(“”:“NoCache”;“”:“”;“airwaybill”;awb_chk;2);
@If(status_view = “Parcel Found”; @SetDocField( tmp_res1; “status” ; “Parcel Arrived” );
“”)
Then when it’s not found I have an agent that send mails. Can some one help please??
Thanks