The j2eeLib.setRequestAttr() system function uses a specified key to place a specified value in request scope storage.
You can retrieve the value later by using the j2eeLib.getRequestAttr() system function. The value placed in the servlet's request scope storage is available as long as the servlet request is valid. Submitting a form from a page creates a new request.
j2eeLib.setRequestAttr( key STRING in, argument ANY in)
In the generated Java™ output, values are passed as primitive Java objects (String, Integer, Decimal, and so on). Record variables are passed as record beans. Arrays are passed as an array list of the associated type.