Which event will trigger?

Sort:
You are not authorized to post a reply.
Author
Messages
Terry P
Veteran Member
Posts: 234
Veteran Member
    I'm doing a DME call to retrieve the default location for a buyer. I want to then default that in PO20.

    I've got the DME working correctly, but am have problem figuring out which form event to use that will allow me to "display" the value using lawForm.setValue.

    I want to display this as the default value prior to them entering any data on the form. One thought was to use the "on blur" for the first field on the form they are required to enter? Any other suggestions to try?
    John Henley
    Senior Member
    Posts: 3348
    Senior Member
      I would do it in FORM_OnAfterTransaction:

      // was the transaction successful?
      if (formState.agsError) return;

      // following an inquire transaction, set the field
      var fc=data.getElementsByTagName("_f1");
      if (fc && fc.length > 0)
      fc=fc[0];
      if (fc == "I")
      lawForm.setFormValue("xxxx","yyy");
      }
      Thanks for using the LawsonGuru.com forums!
      John
      Terry P
      Veteran Member
      Posts: 234
      Veteran Member
        But I need it before a transaction. Somewhere after the form is displayed, but before data entry starts.

        It needs to be displayed prior to them entering data. Basically to work the same as if you had "defaulted" the value in Design Studio for the field. They are not doing an inquire prior to entering data.

        Our reason is we have site-based purchasing (every user is a Buyer). The location is their site, so we want to display that has the default, but still allow some users to change if needed. I do have it working with the on blur, but I'm not sure thats the best way. Seems there should be SOME event that would allow you to perform action prior to a user doing anything. I though the onInit would at first, but it just gets cleared out.
        John Henley
        Senior Member
        Posts: 3348
        Senior Member
          Try FORM_OnAfterDataInit...there's an example in the DOM viewer much like what you want to do:

          function FORM_OnAfterDataInit()
          {
          lawForm.setFormValue("text1", portalObj.getUserVariable("VENDOR_GROUP"));
          var venGrp = lawForm.getFormElement("text1");
          if (venGrp)
          vengrp.disabled = true;
          }
          Thanks for using the LawsonGuru.com forums!
          John
          You are not authorized to post a reply.