If record is found every time when user navigate to Applet that record will be displayed. If record is not found Applet will be empty but user can use Query to found desired record.
function WebApplet_Load ()
{
var currBC = this.BusComp();
with (currBC)
{
SetViewMode(AllView);
ClearToQuery();
SetSearchSpec("SSN", "abc123xyz789");
ExecuteQuery(ForwardOnly);
}
}
function WebApplet_Load ()
{
var currBC = this.BusComp();
with (currBC)
{
SetViewMode(AllView);
ClearToQuery();
SetSearchSpec("SSN", "abc123xyz789");
ExecuteQuery(ForwardOnly);
}
}
Comments
Post a Comment