by-pass pr13.3 from HR11

Sort:
You are not authorized to post a reply.
Author
Messages
Teresa
Basic Member
Posts: 9
Basic Member

    I have a Design Studio HR11 form. I would like to by-pass the PR13.3 screen I get when I select add. How do I do this?

    KK - Infor
    Veteran Member
    Posts: 61
    Veteran Member
      Hi Teresa,
      I am not sure if you have found a solution about this yet. Here is something that might help you.

      The sample code below is taken from a form that is trying to transfer to EE20.3. To find out if a form has an auto transfer, look to see if the <Request> tag exists and the value is MANUALCFKEY.
      function FORM_OnBeforeDataExchange(oCRTIO)
      {
      return (oCRTIO.Request == "MANUALCFKEY" && oCRTIO.Screen == "EE20.3"
      ? null : oCRTIO);
      }
      The individual members can be manipulated (updated) as well. For example, one could change the Screen value to redirect to another screen. It's important that if the OnBeforeDataExchange function is implemented it
      must always return a oCRTIO object for CRTIO processing to continue.

      Hope this helps.
      KK
      You are not authorized to post a reply.